1 00:00:00,300 --> 00:00:01,260 ‫Welcome back. 2 00:00:01,290 --> 00:00:08,210 ‫In this video, you will learn about daytime, which allows us to use time and to get the time to get 3 00:00:08,220 --> 00:00:13,080 ‫a difference between a specific date and another date and so forth. 4 00:00:13,080 --> 00:00:18,900 ‫And therefore, we just need to use the daytime class and the daytime class is automatically available 5 00:00:18,900 --> 00:00:25,320 ‫if you have the system namespace included, which is the case pretty much in any program that we're 6 00:00:25,320 --> 00:00:25,620 ‫using. 7 00:00:25,620 --> 00:00:26,160 ‫Right? 8 00:00:26,160 --> 00:00:31,770 ‫So let's go ahead and use date time and create a date time object. 9 00:00:31,770 --> 00:00:39,030 ‫So I'm going to call that object date time and it's called date time because it not only gives us the 10 00:00:39,030 --> 00:00:41,100 ‫date, but it also gives us the time. 11 00:00:41,100 --> 00:00:47,730 ‫So it gives us all the information about a date and time up to the milliseconds. 12 00:00:47,730 --> 00:00:54,910 ‫So let's go ahead and create a date time object, which we did here. 13 00:00:54,910 --> 00:00:56,640 ‫And now we initialize it. 14 00:00:56,640 --> 00:01:03,990 ‫And let's say I want to only have the year, month and day, then I can just enter something like 22, 15 00:01:03,990 --> 00:01:10,800 ‫18, five and 31, which is my birthday or was my birthday this year. 16 00:01:10,800 --> 00:01:15,660 ‫So I'm using that in order to find out how many days I've lived. 17 00:01:15,660 --> 00:01:20,610 ‫For example, we will write a little program later on which will tell us how many days we've been on 18 00:01:20,610 --> 00:01:21,240 ‫this earth. 19 00:01:21,240 --> 00:01:27,240 ‫Which is pretty interesting because I looked into how many days I've lived, and I figured out that 20 00:01:27,240 --> 00:01:31,830 ‫very soon I'm going to be 11,111 days old. 21 00:01:31,980 --> 00:01:40,530 ‫And finally, a friend of mine, a very good friend from childhood, he will be 11,111 days old on the 22 00:01:40,530 --> 00:01:42,780 ‫11th of November. 23 00:01:43,170 --> 00:01:52,650 ‫And in Cologne, where I come from, Carnival is pretty big and it starts on 11th at 11:00 and 11 minutes. 24 00:01:52,650 --> 00:01:54,960 ‫So that's on in November. 25 00:01:54,960 --> 00:02:02,670 ‫So it's pretty funny that he has this very crazy date pretty much for his 11,111th day. 26 00:02:02,670 --> 00:02:06,750 ‫So maybe you figured out what the interesting date for you is. 27 00:02:06,750 --> 00:02:12,120 ‫A very cool day for you is to celebrate so you won't only celebrate your birthday, but maybe also your 28 00:02:12,120 --> 00:02:17,880 ‫10,000 stay or your 15,000 day on earth or however old you are. 29 00:02:17,880 --> 00:02:20,220 ‫So maybe you figured something out. 30 00:02:20,580 --> 00:02:21,930 ‫All right, enough side talk. 31 00:02:21,930 --> 00:02:23,520 ‫Let's get back to date time. 32 00:02:23,520 --> 00:02:29,520 ‫So I have created this little data time object, and now I can write something onto the console and 33 00:02:29,520 --> 00:02:40,410 ‫I'm going to say something like my birthday is and I enter the birthday here and what do I give over 34 00:02:40,410 --> 00:02:41,280 ‫or hand over? 35 00:02:41,280 --> 00:02:45,150 ‫I give over my date time object. 36 00:02:45,150 --> 00:02:50,010 ‫Now, my birthday this year was in 2018, but I was born in 1988. 37 00:02:50,010 --> 00:02:53,190 ‫So if I want to be more precise, of course I have to enter that. 38 00:02:53,730 --> 00:03:01,800 ‫All right, so let's run it control f five in order to run this application and keep it open that we 39 00:03:01,800 --> 00:03:10,080 ‫are my birthday is and that you see that the structure is 531, 2001 1988. 40 00:03:10,080 --> 00:03:17,040 ‫And then it even gives us the hour, minute and second and am here. 41 00:03:17,040 --> 00:03:22,830 ‫So we didn't specify that, but it gives all this information because we asked for the date time and 42 00:03:22,830 --> 00:03:26,760 ‫it contains this information even though we didn't specify it ourselves. 43 00:03:28,380 --> 00:03:35,820 ‫And if we create a date time object, let me go back here, then we can go ahead and have multiple different 44 00:03:36,480 --> 00:03:37,350 ‫overloads. 45 00:03:37,350 --> 00:03:38,790 ‫So let me create one. 46 00:03:38,790 --> 00:03:43,230 ‫As you can see, there are eight overloads, so one which is just an empty date time. 47 00:03:43,230 --> 00:03:48,600 ‫Then we have one with long ticks and ticks, a date and date and time expressed. 48 00:03:48,600 --> 00:03:52,320 ‫And the number of 100 nanosecond intervals. 49 00:03:53,640 --> 00:03:56,310 ‫Then we have to date time kind. 50 00:03:56,310 --> 00:04:03,030 ‫So you can also define the kind of data time that you have in year and month and then date. 51 00:04:03,030 --> 00:04:04,560 ‫That's the one that we used. 52 00:04:04,980 --> 00:04:11,040 ‫Then you can also specify the hour, minute and second and also the date time kind. 53 00:04:11,820 --> 00:04:14,430 ‫Here as well and the different overload. 54 00:04:14,430 --> 00:04:22,290 ‫And here you can even go as far as specifying the millisecond and finally, also with the date time 55 00:04:22,290 --> 00:04:22,980 ‫kind. 56 00:04:26,170 --> 00:04:30,000 ‫Now you might wonder what this daytime kind is. 57 00:04:30,010 --> 00:04:37,900 ‫And it's a property which gets a value that indicates whether the time represented by the instance is 58 00:04:37,900 --> 00:04:44,980 ‫based on local time, coordinated, universal time UTC or which is called UTC or neither. 59 00:04:46,450 --> 00:04:47,170 ‫All right. 60 00:04:47,170 --> 00:04:55,990 ‫So let's get back to our example and I'm going to enter or I'm going to go back to my values that I 61 00:04:55,990 --> 00:04:56,710 ‫had here. 62 00:04:58,300 --> 00:05:02,690 ‫And now I'm going to show you how you can display the current date. 63 00:05:02,710 --> 00:05:06,550 ‫So right today on screen. 64 00:05:06,550 --> 00:05:15,280 ‫So if you want to have the date of today, you can simply use date time dot today. 65 00:05:16,530 --> 00:05:19,980 ‫But that will do is it will give you the current date. 66 00:05:19,990 --> 00:05:21,910 ‫So let's run that again. 67 00:05:22,280 --> 00:05:25,090 ‫Controller five There we are. 68 00:05:26,410 --> 00:05:34,420 ‫Today is the 12th of June and well, the time is not correct here, but well it still has the current 69 00:05:34,420 --> 00:05:40,570 ‫time or it still has the time in here if you want to have the specific time. 70 00:05:40,570 --> 00:05:50,950 ‫So right current time on screen then you use date time dot now so there's this property gets daytime 71 00:05:50,950 --> 00:05:56,290 ‫object that is set to the current date and time on this computer expressed as local time. 72 00:05:56,620 --> 00:05:58,600 ‫And let me run it again. 73 00:06:00,040 --> 00:06:01,440 ‫And there you are. 74 00:06:01,450 --> 00:06:04,750 ‫It's one 5030 5 p.m.. 75 00:06:06,430 --> 00:06:06,820 ‫All right. 76 00:06:06,820 --> 00:06:13,390 ‫So if you want to display the current time or the time that is specified on the computer in your application 77 00:06:13,390 --> 00:06:16,050 ‫or in your program, you can simply use date time. 78 00:06:16,080 --> 00:06:17,020 ‫Dot Now. 79 00:06:18,610 --> 00:06:24,820 ‫Now, you also can get the day of tomorrow, so you can get the following day, but therefore you need 80 00:06:24,820 --> 00:06:26,500 ‫to create a little workaround. 81 00:06:26,500 --> 00:06:30,040 ‫So there is no property which says tomorrow, let's check it out. 82 00:06:30,040 --> 00:06:32,910 ‫Date time dot tomorrow. 83 00:06:32,920 --> 00:06:37,780 ‫As you can see, it doesn't have that it has to date and you can generally check out which properties 84 00:06:37,780 --> 00:06:44,800 ‫there are now, today and UTC now, which is this kind that I've just show you. 85 00:06:44,950 --> 00:06:51,130 ‫And then there are also methods so you can find out whether it's a leap year. 86 00:06:51,160 --> 00:06:55,960 ‫Then you can specify the kind days in month. 87 00:06:55,960 --> 00:07:00,060 ‫So how many days are in a specific month and year? 88 00:07:00,070 --> 00:07:09,400 ‫Because as you know, February can have either 28 or 29 days, then March has 31 days, April has 30 89 00:07:09,400 --> 00:07:10,270 ‫days and so forth. 90 00:07:10,270 --> 00:07:13,840 ‫So this can be very useful and there is a method for that. 91 00:07:15,040 --> 00:07:19,540 ‫Now let's assume we want to have the day which is or the date of tomorrow. 92 00:07:19,540 --> 00:07:24,790 ‫And, and in order to get that, we will need to write a little method here. 93 00:07:25,750 --> 00:07:33,670 ‫It's going to be static and it's going to return date time and I'm going to call it get tomorrow. 94 00:07:35,380 --> 00:07:40,420 ‫And what it will do is it will simply return date time to day. 95 00:07:40,450 --> 00:07:44,290 ‫And now today we can add a day. 96 00:07:44,290 --> 00:07:50,110 ‫So you can see we can add seconds, takes years, we can compare it and so forth. 97 00:07:50,110 --> 00:07:53,560 ‫And the one that I want is I want to add days. 98 00:07:53,560 --> 00:07:58,720 ‫As you can see under AD there are multiple different solutions here or options and I'm going to use 99 00:07:58,720 --> 00:08:01,510 ‫add days and say one. 100 00:08:01,510 --> 00:08:05,830 ‫So I'm just going to add one day to tomorrow and I'm going to return that. 101 00:08:05,830 --> 00:08:14,100 ‫So now we can go ahead and use that method in order to apply the day of tomorrow or the date of tomorrow. 102 00:08:14,110 --> 00:08:24,790 ‫So I'm going to create a new date time object and I'm going to call it tomorrow, and that will be my 103 00:08:24,820 --> 00:08:28,480 ‫tomorrow, which I get by using the get tomorrow method. 104 00:08:28,960 --> 00:08:29,800 ‫So there we are. 105 00:08:29,800 --> 00:08:34,150 ‫Now our date time tomorrow can be used in order to be displayed. 106 00:08:34,150 --> 00:08:35,920 ‫So let's just display tomorrow. 107 00:08:35,920 --> 00:08:44,440 ‫Tomorrow will be the and then the tomorrow object. 108 00:08:46,690 --> 00:08:48,160 ‫Now let's display that again. 109 00:08:50,650 --> 00:08:55,390 ‫And we are tomorrow will be the 13th of June 2018. 110 00:08:57,630 --> 00:09:03,790 ‫Now for you is a little challenge right onto the screen, which day of the week we have. 111 00:09:03,810 --> 00:09:05,640 ‫So it should be pretty simple. 112 00:09:05,790 --> 00:09:11,730 ‫I haven't used it yet, but you can simply go ahead and check out the methods and properties of time 113 00:09:11,730 --> 00:09:12,480 ‫to get that. 114 00:09:12,780 --> 00:09:14,400 ‫So please go ahead and try that. 115 00:09:16,840 --> 00:09:17,260 ‫All right. 116 00:09:17,260 --> 00:09:18,280 ‫I hope you tried it. 117 00:09:18,280 --> 00:09:19,840 ‫So let's go ahead. 118 00:09:19,840 --> 00:09:21,400 ‫Write it onto console. 119 00:09:21,430 --> 00:09:40,210 ‫Today is and then we use today so date time dot today dot day of week get the day of the week represented 120 00:09:40,210 --> 00:09:41,590 ‫by this instance. 121 00:09:42,100 --> 00:09:42,670 ‫All right. 122 00:09:42,670 --> 00:09:45,250 ‫So let's print that on to the screen. 123 00:09:47,710 --> 00:09:49,780 ‫And we are today is Tuesday. 124 00:09:50,110 --> 00:09:50,890 ‫Perfect. 125 00:09:51,460 --> 00:09:53,650 ‫I hope you could manage to do that. 126 00:09:55,420 --> 00:10:03,370 ‫Now, let's assume we want to get the first day of a specific year so we can go ahead and use static 127 00:10:03,370 --> 00:10:03,880 ‫again. 128 00:10:03,880 --> 00:10:04,570 ‫Date time. 129 00:10:04,570 --> 00:10:10,060 ‫So I'm creating a method here and it's going to be get first day of year. 130 00:10:10,480 --> 00:10:17,950 ‫And in here we could either use a date time and just show the date for the first day of that year or 131 00:10:17,950 --> 00:10:21,000 ‫we can make it very easy and use an integer. 132 00:10:21,010 --> 00:10:26,830 ‫So in here I'm just going to enter a year and it will return a date time. 133 00:10:26,830 --> 00:10:37,090 ‫So it will return date time with year one and one because the 1st of January is the first day of the 134 00:10:37,090 --> 00:10:37,510 ‫year. 135 00:10:37,510 --> 00:10:42,760 ‫So with this one, I'm going to get the first day of a year and I can simply say of which year I want 136 00:10:42,760 --> 00:10:43,900 ‫to have the first day. 137 00:10:44,110 --> 00:10:50,770 ‫And that's pretty neat because now we can go ahead and display the first day of a specific year. 138 00:10:51,100 --> 00:11:01,330 ‫So I'm just going to say first day of year, and that will be, let's say, 1999. 139 00:11:05,700 --> 00:11:09,150 ‫And we are 1st of January, 1999. 140 00:11:12,090 --> 00:11:18,690 ‫You have seen that you can find out day of the week, but you can also find out the days of the the 141 00:11:18,690 --> 00:11:20,460 ‫month has, as I also stated. 142 00:11:20,490 --> 00:11:21,480 ‫Let's check it out. 143 00:11:21,960 --> 00:11:32,040 ‫Let's create a variable called days and we'll be date time dot days in month and let's say February 144 00:11:32,040 --> 00:11:33,210 ‫in 2000. 145 00:11:33,240 --> 00:11:35,760 ‫How many days did that day have? 146 00:11:35,850 --> 00:11:38,670 ‫And now I'm going to write that onto the console. 147 00:11:38,910 --> 00:11:45,390 ‫And days in 2000 were so and so. 148 00:11:46,830 --> 00:11:51,400 ‫Now I want to go ahead and check it out for other years as well. 149 00:11:51,420 --> 00:11:54,330 ‫So now let's check out 2001. 150 00:11:56,100 --> 00:12:05,550 ‫So I'm just going to say days, days and month 2001 and it's going to be February 2001 and now 2004. 151 00:12:07,020 --> 00:12:08,730 ‫So let's check that out again. 152 00:12:08,730 --> 00:12:10,830 ‫And it will be 2004. 153 00:12:11,610 --> 00:12:14,670 ‫So let me print it onto the screen. 154 00:12:14,670 --> 00:12:20,760 ‫And we are as you can see, 2000 is a leap year. 155 00:12:21,180 --> 00:12:22,910 ‫And 2004 as well. 156 00:12:22,920 --> 00:12:25,770 ‫So in 2001, 2002 and so forth. 157 00:12:25,830 --> 00:12:32,850 ‫February only has 28 days and each time that it's divisible by four, it has 29 days, even though that's 158 00:12:32,850 --> 00:12:34,440 ‫not exactly precise. 159 00:12:34,440 --> 00:12:37,140 ‫So there are years where it's skipped. 160 00:12:37,140 --> 00:12:43,680 ‫So every I think 100 years is skipped and then once every 400 years is skipped and so forth, because 161 00:12:43,680 --> 00:12:53,040 ‫the well, the Earth doesn't actually need 365 days in order to fly around or to make a whole circle 162 00:12:53,040 --> 00:12:54,630 ‫around the sun. 163 00:12:54,660 --> 00:12:56,580 ‫It needs a little more. 164 00:12:56,580 --> 00:13:01,320 ‫So it needs roughly a quarter day more, but it's not exactly a quarter day more. 165 00:13:01,320 --> 00:13:05,130 ‫It's something like point two, four days on top. 166 00:13:05,130 --> 00:13:06,960 ‫That's why it has to be. 167 00:13:07,170 --> 00:13:12,720 ‫Well, as you can see, Skip, well, you can't see it here, but it has to be skipped anyways. 168 00:13:13,050 --> 00:13:13,820 ‫All right. 169 00:13:13,830 --> 00:13:20,070 ‫So now let's check out how we can get the current time, but in a specific. 170 00:13:20,820 --> 00:13:21,450 ‫Menor. 171 00:13:21,450 --> 00:13:23,340 ‫So let's go ahead and do that. 172 00:13:23,460 --> 00:13:30,030 ‫I'm going to create a date time, which I'm going to call now, and that will be date time now. 173 00:13:31,140 --> 00:13:34,740 ‫And now I want to display the current minute. 174 00:13:34,740 --> 00:13:40,500 ‫So I'm going to write something like Minute is zero. 175 00:13:41,670 --> 00:13:44,250 ‫And that will be now dot minute. 176 00:13:45,120 --> 00:13:50,970 ‫So there is this property called minute, then there is one that is called hour and also seconds. 177 00:13:51,120 --> 00:13:58,080 ‫And let's display that time now and it says minute is six. 178 00:13:58,080 --> 00:14:03,900 ‫So it's 2:00 and 6 minutes and that's what you can see, minutes, six. 179 00:14:03,930 --> 00:14:04,280 ‫All right. 180 00:14:04,290 --> 00:14:05,700 ‫Now, a little challenge for you. 181 00:14:06,120 --> 00:14:10,320 ‫This play the time and this structure. 182 00:14:10,680 --> 00:14:14,790 ‫So, so many o clock. 183 00:14:17,780 --> 00:14:31,940 ‫Then and so many minutes and Z seconds, so something like 5:00 and 21 minutes and 30 seconds, so maybe 184 00:14:31,940 --> 00:14:32,840 ‫5:00. 185 00:14:33,140 --> 00:14:36,350 ‫So and so many minutes and so many seconds. 186 00:14:36,350 --> 00:14:39,560 ‫So please go ahead and display that onto the console. 187 00:14:41,260 --> 00:14:41,650 ‫All right. 188 00:14:41,650 --> 00:14:42,670 ‫I hope you tried it. 189 00:14:42,910 --> 00:14:50,710 ‫And I'm going to say so o clock then. 190 00:14:52,930 --> 00:14:58,060 ‫So minutes and 191 00:15:00,580 --> 00:15:01,570 ‫seconds 192 00:15:04,450 --> 00:15:06,080 ‫and that will be now. 193 00:15:06,100 --> 00:15:13,990 ‫Dot our now, dot minute and now dot second. 194 00:15:16,330 --> 00:15:22,510 ‫All right, so let's display that or let's run that to see what the current time is. 195 00:15:22,900 --> 00:15:27,400 ‫And we are 40 9:00, 8 minutes and 22 seconds. 196 00:15:28,660 --> 00:15:30,580 ‫That's the same thing that you have here. 197 00:15:30,580 --> 00:15:31,990 ‫So 2:00. 198 00:15:32,020 --> 00:15:32,770 ‫8 minutes. 199 00:15:32,770 --> 00:15:33,940 ‫22 seconds. 200 00:15:34,780 --> 00:15:35,470 ‫All right. 201 00:15:36,910 --> 00:15:44,980 ‫Next, we're going to write a little program which is going to tell us how much time is between now 202 00:15:44,980 --> 00:15:47,350 ‫and a time that we enter. 203 00:15:47,350 --> 00:15:49,720 ‫So and the date that we enter, to be precise. 204 00:15:49,720 --> 00:15:59,500 ‫So write a date in this format and it's going to be y y y standing for a year, year, year. 205 00:15:59,530 --> 00:16:00,700 ‫Month, month. 206 00:16:00,700 --> 00:16:01,540 ‫Day, day. 207 00:16:02,440 --> 00:16:04,780 ‫So that's what we're going to display to the user. 208 00:16:04,780 --> 00:16:16,750 ‫And then we get it as input, which will be console dot red line and then we check if that worked out. 209 00:16:16,750 --> 00:16:20,770 ‫So if we can make a date time out of whatever was entered. 210 00:16:20,770 --> 00:16:28,990 ‫So as you can see, date time has a tri pass method which now can go ahead and try to make sense out 211 00:16:28,990 --> 00:16:31,150 ‫of the input that the user has entered. 212 00:16:31,150 --> 00:16:38,950 ‫And it's going to have an output which will be date time and now I will use that date time. 213 00:16:38,950 --> 00:16:48,670 ‫So I'm going to write date time onto the console and I'm going to create a time span and that time span 214 00:16:48,670 --> 00:16:50,650 ‫will have the days past. 215 00:16:50,650 --> 00:16:58,810 ‫So however many days have passed since the date that was entered or will pass until the day comes that 216 00:16:58,810 --> 00:16:59,590 ‫was entered. 217 00:17:00,010 --> 00:17:05,710 ‫So what I do now is I use the now variable that we created earlier on. 218 00:17:05,710 --> 00:17:09,730 ‫So this now and I'm going to subtract. 219 00:17:09,730 --> 00:17:17,530 ‫So there is this method subtract and what it does, it subtracts the specified date and time from the 220 00:17:17,530 --> 00:17:18,060 ‫instance. 221 00:17:18,850 --> 00:17:23,980 ‫I want to subtract the date time and that's the output that we get. 222 00:17:23,980 --> 00:17:31,180 ‫So whatever the user has entered, which in our case will be, we will be taken and that will be well 223 00:17:31,180 --> 00:17:34,090 ‫used in order to calculate this days past. 224 00:17:34,090 --> 00:17:36,070 ‫And now finally I want to display that. 225 00:17:36,070 --> 00:17:50,680 ‫So I'm going to say days passed since and it will be days past dot days so this time span. 226 00:17:52,760 --> 00:18:01,190 ‫Also has a days property which we can use in order to get the days component of the time interval represented 227 00:18:01,190 --> 00:18:03,830 ‫by the current time span structure. 228 00:18:04,400 --> 00:18:05,030 ‫All right. 229 00:18:05,030 --> 00:18:10,280 ‫So if it didn't work out, we're just going to say wrong input. 230 00:18:13,220 --> 00:18:13,460 ‫All right. 231 00:18:13,460 --> 00:18:14,280 ‫Let's try that. 232 00:18:14,300 --> 00:18:15,140 ‫Let's run it. 233 00:18:16,970 --> 00:18:18,380 ‫Write a date in this format. 234 00:18:18,390 --> 00:18:26,180 ‫So let's say I want to know what happens since 1776. 235 00:18:28,340 --> 00:18:34,460 ‫Then month will be July zero seven and the day will be oh four. 236 00:18:34,520 --> 00:18:37,610 ‫So that's the Independence Day. 237 00:18:38,310 --> 00:18:46,070 ‫And now let's see how much time has passed since until you are 88,366 days. 238 00:18:46,070 --> 00:18:53,870 ‫So that's a perfect example of a great celebration on the 88,888 day. 239 00:18:54,410 --> 00:18:55,670 ‫Isn't that a great idea? 240 00:18:55,700 --> 00:19:04,130 ‫If nobody does that, you should pick that up and create a big eight party which will which will be 241 00:19:04,130 --> 00:19:07,400 ‫in roughly a year and three months. 242 00:19:07,400 --> 00:19:11,300 ‫So that should be something like October or September. 243 00:19:12,390 --> 00:19:14,550 ‫2019. 244 00:19:14,700 --> 00:19:21,210 ‫And if you watch this afterwards, then you miss the opportunity to create a party which will be on 245 00:19:21,210 --> 00:19:26,670 ‫the 88,888 day after the Independence Day. 246 00:19:27,120 --> 00:19:27,600 ‫All right. 247 00:19:27,600 --> 00:19:29,100 ‫So now a little challenge. 248 00:19:29,100 --> 00:19:32,430 ‫I know this video is long, but bear with me. 249 00:19:32,430 --> 00:19:39,510 ‫So please go ahead and write a program where somebody can enter his birthday and it will calculate days 250 00:19:39,510 --> 00:19:40,470 ‫passed since. 251 00:19:40,470 --> 00:19:42,000 ‫And it's not a difficult one. 252 00:19:42,000 --> 00:19:44,880 ‫It's pretty simple, actually, because now you've seen how it works. 253 00:19:44,880 --> 00:19:46,350 ‫So please go ahead and try that. 254 00:19:47,790 --> 00:19:48,450 ‫All right. 255 00:19:48,450 --> 00:19:49,560 ‫I hope you did. 256 00:19:49,680 --> 00:19:55,710 ‫So the only thing that I'm going to change is I'm actually changing the text right to date in this format. 257 00:19:55,710 --> 00:20:01,530 ‫And to write your birth date date. 258 00:20:02,040 --> 00:20:03,330 ‫Is it birth date? 259 00:20:03,330 --> 00:20:06,720 ‫Probably its birth date and this format. 260 00:20:06,720 --> 00:20:14,370 ‫So now it's the same thing, but now it says not days passed since but something like you are this amount 261 00:20:14,370 --> 00:20:15,420 ‫of days old. 262 00:20:15,420 --> 00:20:21,330 ‫You are so and so days old. 263 00:20:22,170 --> 00:20:28,440 ‫Now let's test that and write your birth date in this format. 264 00:20:28,440 --> 00:20:29,100 ‫All right. 265 00:20:29,100 --> 00:20:36,300 ‫1990 or 88, in my case, May and 31. 266 00:20:37,080 --> 00:20:41,670 ‫And I am 10,969 days old. 267 00:20:42,060 --> 00:20:49,860 ‫And you can go ahead and share your days on earth with us if you want to, or you can share your plans 268 00:20:49,860 --> 00:20:56,730 ‫for the big celebration of the Independence Day, 88,880 days later. 269 00:20:56,970 --> 00:20:57,480 ‫All right. 270 00:20:57,480 --> 00:20:58,110 ‫So. 271 00:20:59,020 --> 00:20:59,430 ‫Yeah. 272 00:20:59,440 --> 00:21:04,750 ‫I hope you enjoyed this video and I hope you have some cool ideas for a great party and see you in the 273 00:21:04,750 --> 00:21:05,590 ‫next video.