Skip to content

Commit a4c82f6

Browse files
committed
Many corrections still.
1 parent 5292502 commit a4c82f6

File tree

509 files changed

+2807
-2807
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

509 files changed

+2807
-2807
lines changed

transcripts/006_Requests_PyCon_and_Pythons_future_with_Kenneth_Rietz.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@
526526

527527
00:14:52 or topics that were covered at PyCon?
528528

529-
00:14:54 Well, I, I didn't go to any talks.
529+
00:14:54 Well, I didn't go to any talks.
530530

531531
00:14:58 Awesome.
532532

@@ -548,7 +548,7 @@
548548

549549
00:15:15 But I have watched a few already.
550550

551-
00:15:17 And I, I really enjoyed, Jacob Kaplan Moss, who is one of the runners of the Django
551+
00:15:17 And I really enjoyed, Jacob Kaplan Moss, who is one of the runners of the Django
552552

553553
00:15:22 project.
554554

transcripts/006_Requests_PyCon_and_Pythons_future_with_Kenneth_Rietz.vtt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ then asking you the opposite question, can you tell me what some of your favorit
802802
or topics that were covered at PyCon?
803803

804804
00:14:54.900 --> 00:14:58.000
805-
Well, I, I didn't go to any talks.
805+
Well, I didn't go to any talks.
806806

807807
00:14:58.000 --> 00:14:59.160
808808
Awesome.
@@ -835,7 +835,7 @@ And I, I'm there to see the people.
835835
But I have watched a few already.
836836

837837
00:15:17.100 --> 00:15:22.180
838-
And I, I really enjoyed, Jacob Kaplan Moss, who is one of the runners of the Django
838+
And I really enjoyed, Jacob Kaplan Moss, who is one of the runners of the Django
839839

840840
00:15:22.180 --> 00:15:22.560
841841
project.

transcripts/012_Deep_dive_into_Modules_and_Packages.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@
416416

417417
00:11:51 try and like, I don't know, clear confusion maybe.
418418

419-
00:11:54 But I think, I think also part of it is the, the whole module system in Python has,
419+
00:11:54 But I think, I think also part of it is the whole module system in Python has,
420420

421421
00:11:59 has been basically rewritten.
422422

@@ -466,7 +466,7 @@
466466

467467
00:13:25 And with packages, it seems like there's a lot more going on potentially, right?
468468

469-
00:13:31 I've got the, the under, under init.py and I can sort of declare this all under, under all
469+
00:13:31 I've got the under, under init.py and I can sort of declare this all under, under all
470470

471471
00:13:37 variable.
472472

@@ -610,7 +610,7 @@
610610

611611
00:17:12 I've done some tricks involving decorators doing that.
612612

613-
00:17:16 Like, you know, they, being one of the applications I'm working on now, I, I mean, I
613+
00:17:16 Like, you know, they, being one of the applications I'm working on now, I mean, I
614614

615615
00:17:21 have a, I have a decorator I can put on functions that will automatically sort of hoist them up
616616

@@ -726,7 +726,7 @@
726726

727727
00:19:39 graphics or from dot import data.
728728

729-
00:19:41 And the, the dot is just telling Python that you want to load relative to your current ___location,
729+
00:19:41 And the dot is just telling Python that you want to load relative to your current ___location,
730730

731731
00:19:47 for instance.
732732

@@ -746,7 +746,7 @@
746746

747747
00:19:53 I'm sort of thinking about things like versioning and stuff.
748748

749-
00:19:56 I mean, it's, you know, I could imagine situations where, you know, I have code where I, I need
749+
00:19:56 I mean, it's, you know, I could imagine situations where, you know, I have code where I need
750750

751751
00:20:01 to have an old version of some package coexisting with a modern version of the same package.
752752

@@ -790,7 +790,7 @@
790790

791791
00:20:46 Yeah.
792792

793-
00:20:46 It's, I, I, I don't mean to violate it, but I think it's, you know, PEP 8 comes after
793+
00:20:46 It's, I, I don't mean to violate it, but I think it's, you know, PEP 8 comes after
794794

795795
00:20:53 the point at which I got involved with Python.
796796

transcripts/012_Deep_dive_into_Modules_and_Packages.vtt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ So, so, so part of it was just, it's like, I should do something on modules and
643643
try and like, I don't know, clear confusion maybe.
644644

645645
00:11:54.540 --> 00:11:59.060
646-
But I think, I think also part of it is the, the whole module system in Python has,
646+
But I think, I think also part of it is the whole module system in Python has,
647647

648648
00:11:59.060 --> 00:12:01.200
649649
has been basically rewritten.
@@ -718,7 +718,7 @@ Let me grab the code in the one file and use it.
718718
And with packages, it seems like there's a lot more going on potentially, right?
719719

720720
00:13:31.100 --> 00:13:37.880
721-
I've got the, the under, under init.py and I can sort of declare this all under, under all
721+
I've got the under, under init.py and I can sort of declare this all under, under all
722722

723723
00:13:37.880 --> 00:13:38.820
724724
variable.
@@ -934,7 +934,7 @@ some way to, some way to do that.
934934
I've done some tricks involving decorators doing that.
935935

936936
00:17:16.800 --> 00:17:21.320
937-
Like, you know, they, being one of the applications I'm working on now, I, I mean, I
937+
Like, you know, they, being one of the applications I'm working on now, I mean, I
938938

939939
00:17:21.320 --> 00:17:27.120
940940
have a, I have a decorator I can put on functions that will automatically sort of hoist them up
@@ -964,7 +964,7 @@ Is it on GitHub or something?
964964
It's, I don't know if it's on GitHub.
965965

966966
00:17:41.140 --> 00:17:43.460
967-
Um, it is in the tutorial though.
967+
it is in the tutorial though.
968968

969969
00:17:43.460 --> 00:17:44.080
970970
Right.
@@ -985,7 +985,7 @@ So.
985985
Nice.
986986

987987
00:17:47.720 --> 00:17:52.240
988-
Uh, one thing that I thought was interesting that you spoke about the tutorial was that
988+
one thing that I thought was interesting that you spoke about the tutorial was that
989989

990990
00:17:52.240 --> 00:17:57.700
991991
structure guidelines, the PEP 8 guidelines sometimes make your code more brittle in packages
@@ -1069,7 +1069,7 @@ spam dot graphics or import spam dot data.
10691069
And you would, you would do that within the package, within the package itself.
10701070

10711071
00:19:10.180 --> 00:19:14.560
1072-
Um, but the thing that I don't, that I don't like about that is it ends up hard coding the
1072+
but the thing that I don't, that I don't like about that is it ends up hard coding the
10731073

10741074
00:19:14.560 --> 00:19:15.480
10751075
package name.
@@ -1108,7 +1108,7 @@ looks like is you have these dots where you would say something like, oh, from d
11081108
graphics or from dot import data.
11091109

11101110
00:19:41.640 --> 00:19:47.800
1111-
And the, the dot is just telling Python that you want to load relative to your current ___location,
1111+
And the dot is just telling Python that you want to load relative to your current ___location,
11121112

11131113
00:19:47.800 --> 00:19:48.400
11141114
for instance.
@@ -1138,7 +1138,7 @@ That's really excellent.
11381138
I'm sort of thinking about things like versioning and stuff.
11391139

11401140
00:19:56.100 --> 00:20:01.660
1141-
I mean, it's, you know, I could imagine situations where, you know, I have code where I, I need
1141+
I mean, it's, you know, I could imagine situations where, you know, I have code where I need
11421142

11431143
00:20:01.660 --> 00:20:06.780
11441144
to have an old version of some package coexisting with a modern version of the same package.
@@ -1204,7 +1204,7 @@ It's fine.
12041204
Yeah.
12051205

12061206
00:20:46.500 --> 00:20:53.280
1207-
It's, I, I, I don't mean to violate it, but I think it's, you know, PEP 8 comes after
1207+
It's, I, I don't mean to violate it, but I think it's, you know, PEP 8 comes after
12081208

12091209
00:20:53.280 --> 00:20:55.900
12101210
the point at which I got involved with Python.

transcripts/014_Converting_Patreon.com_to_Python_3.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@
930930

931931
00:32:12 Like for example, our creation pages in PHP took six seconds to render, but you didn't feel it because you would still see the, like the embed.
932932

933-
00:32:23 Or you would see like the, the, the becoming a patron flow right away.
933+
00:32:23 Or you would see like the becoming a patron flow right away.
934934

935935
00:32:27 And it ended up like the slow part of the page was rendering the comments.
936936

@@ -944,11 +944,11 @@
944944

945945
00:32:45 Yeah.
946946

947-
00:32:45 And so we just like, we implement our own version of like lazy loading and like made sure the comments would come in after all the, the really relevant parts of the page came in.
947+
00:32:45 And so we just like, we implement our own version of like lazy loading and like made sure the comments would come in after all the really relevant parts of the page came in.
948948

949949
00:32:55 And we also made some like, I mean, after we got that first part through, we started making some efficiency, like, like optimizations with the performance.
950950

951-
00:33:03 But we decided that like, you know, finishing the thing was first, like finishing the, the, the correctness of the, finishing the correct page was the first thing we'd go for and optimize the data calls later.
951+
00:33:03 But we decided that like, you know, finishing the thing was first, like finishing the correctness of the, finishing the correct page was the first thing we'd go for and optimize the data calls later.
952952

953953
00:33:14 Right.
954954

@@ -960,11 +960,11 @@
960960

961961
00:33:32 We realized that like we could actually start implementing new things on top of the base that we, produced.
962962

963-
00:33:38 So after we implemented the, the user page, the creation page, and, a lot of the other sort of high, like one of the, some of the higher complexity pages with higher traffic, we had most of the models in place that we could start actually building new things.
963+
00:33:38 So after we implemented the user page, the creation page, and, a lot of the other sort of high, like one of the, some of the higher complexity pages with higher traffic, we had most of the models in place that we could start actually building new things.
964964

965965
00:33:52 The first thing we implemented was a, a really simple, feature for migrating, sub-able users from sub-able onto Patreon.
966966

967-
00:34:02 And we've been launching, we've been developing an API service layer for, the, the web client and the, the mobile app to be, to, to be unblocked and allow them to, they, reach some amount of progress.
967+
00:34:02 And we've been launching, we've been developing an API service layer for, the web client and the mobile app to be, to, to be unblocked and allow them to, they, reach some amount of progress.
968968

969969
00:34:15 where we're stuck right now in terms of the Python port is the long tail of like really low traffic, but like sort of high complexity pages.
970970

@@ -1104,7 +1104,7 @@
11041104

11051105
00:38:47 Like these are the actual types of query string parameters we're seeing.
11061106

1107-
00:38:50 These are the, you know, the, the route data that's coming in, that kind of stuff.
1107+
00:38:50 These are the, you know, the route data that's coming in, that kind of stuff.
11081108

11091109
00:38:54 Right.
11101110

transcripts/014_Converting_Patreon.com_to_Python_3.vtt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,7 @@ Yeah.
13991399
Like for example, our creation pages in PHP took six seconds to render, but you didn't feel it because you would still see the, like the embed.
14001400

14011401
00:32:23.400 --> 00:32:27.400
1402-
Or you would see like the, the, the becoming a patron flow right away.
1402+
Or you would see like the becoming a patron flow right away.
14031403

14041404
00:32:27.400 --> 00:32:32.200
14051405
And it ended up like the slow part of the page was rendering the comments.
@@ -1420,13 +1420,13 @@ That's definitely too long on the web.
14201420
Yeah.
14211421

14221422
00:32:45.760 --> 00:32:55.060
1423-
And so we just like, we implement our own version of like lazy loading and like made sure the comments would come in after all the, the really relevant parts of the page came in.
1423+
And so we just like, we implement our own version of like lazy loading and like made sure the comments would come in after all the really relevant parts of the page came in.
14241424

14251425
00:32:55.720 --> 00:33:03.640
14261426
And we also made some like, I mean, after we got that first part through, we started making some efficiency, like, like optimizations with the performance.
14271427

14281428
00:33:03.880 --> 00:33:14.980
1429-
But we decided that like, you know, finishing the thing was first, like finishing the, the, the correctness of the, finishing the correct page was the first thing we'd go for and optimize the data calls later.
1429+
But we decided that like, you know, finishing the thing was first, like finishing the correctness of the, finishing the correct page was the first thing we'd go for and optimize the data calls later.
14301430

14311431
00:33:14.980 --> 00:33:15.960
14321432
Right.
@@ -1438,22 +1438,22 @@ Okay.
14381438
Maybe we come back to some of the optimizations, but I'm, one of the questions that's coming to mind is, are you guys done?
14391439

14401440
00:33:21.280 --> 00:33:32.240
1441-
Uh, so we are 98% of the way through and, that's not necessarily an ideal situation, but we're about halfway through the project.
1441+
so we are 98% of the way through and, that's not necessarily an ideal situation, but we're about halfway through the project.
14421442

14431443
00:33:32.240 --> 00:33:38.660
14441444
We realized that like we could actually start implementing new things on top of the base that we, produced.
14451445

14461446
00:33:38.840 --> 00:33:52.980
1447-
So after we implemented the, the user page, the creation page, and, a lot of the other sort of high, like one of the, some of the higher complexity pages with higher traffic, we had most of the models in place that we could start actually building new things.
1447+
So after we implemented the user page, the creation page, and, a lot of the other sort of high, like one of the, some of the higher complexity pages with higher traffic, we had most of the models in place that we could start actually building new things.
14481448

14491449
00:33:52.980 --> 00:34:01.640
14501450
The first thing we implemented was a, a really simple, feature for migrating, sub-able users from sub-able onto Patreon.
14511451

14521452
00:34:02.520 --> 00:34:15.380
1453-
And we've been launching, we've been developing an API service layer for, the, the web client and the, the mobile app to be, to, to be unblocked and allow them to, they, reach some amount of progress.
1453+
And we've been launching, we've been developing an API service layer for, the web client and the mobile app to be, to, to be unblocked and allow them to, they, reach some amount of progress.
14541454

14551455
00:34:15.380 --> 00:34:23.040
1456-
Uh, where we're stuck right now in terms of the Python port is the long tail of like really low traffic, but like sort of high complexity pages.
1456+
where we're stuck right now in terms of the Python port is the long tail of like really low traffic, but like sort of high complexity pages.
14571457

14581458
00:34:23.040 --> 00:34:27.700
14591459
So like stuff like, like the settings page or stuff like with, like patron manager.
@@ -1474,7 +1474,7 @@ We have a lot of internal dashboards.
14741474
A lot of them have like a varying complexity.
14751475

14761476
00:34:41.940 --> 00:34:49.580
1477-
Um, those are lower priority because we wanted, you know, the production pages to be out first, but eventually those will need to be ported to Python as well.
1477+
those are lower priority because we wanted, you know, the production pages to be out first, but eventually those will need to be ported to Python as well.
14781478

14791479
00:34:49.580 --> 00:34:50.160
14801480
Yeah.
@@ -1660,7 +1660,7 @@ Right.
16601660
Like these are the actual types of query string parameters we're seeing.
16611661

16621662
00:38:50.820 --> 00:38:54.520
1663-
These are the, you know, the, the route data that's coming in, that kind of stuff.
1663+
These are the, you know, the route data that's coming in, that kind of stuff.
16641664

16651665
00:38:54.520 --> 00:38:54.760
16661666
Right.

transcripts/015_Lynn_Root.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@
856856

857857
00:26:43 want, who's willing to learn Python and wanting to learn how to code can, can reach.
858858

859-
00:26:47 So, the, the premise of this is like, say you, you know, did learn Python the hard
859+
00:26:47 So, the premise of this is like, say you, you know, did learn Python the hard
860860

861861
00:26:53 way or dive into Python or some other sort of work book, like, like sort of goes through
862862

@@ -960,7 +960,7 @@
960960

961961
00:29:42 that the people who succeed versus the people who fail are the ones who are the smartest.
962962

963-
00:29:46 It seems like the, the most important skill is persistence.
963+
00:29:46 It seems like the most important skill is persistence.
964964

965965
00:29:50 The ones who just keep trying until they find their way through these, these types of things
966966

transcripts/015_Lynn_Root.vtt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1282,7 +1282,7 @@ That looks cool.
12821282
Thank you.
12831283

12841284
00:26:20.480 --> 00:26:21.060
1285-
Um, yeah.
1285+
yeah.
12861286

12871287
00:26:21.060 --> 00:26:27.040
12881288
So this was, so I wrote this a couple of years ago, 2012, I believe is when I first
@@ -1291,7 +1291,7 @@ So this was, so I wrote this a couple of years ago, 2012, I believe is when I fi
12911291
released it.
12921292

12931293
00:26:27.660 --> 00:26:31.720
1294-
Um, and it's basically, taking, no, it was 2013, I think.
1294+
and it's basically, taking, no, it was 2013, I think.
12951295

12961296
00:26:31.720 --> 00:26:36.900
12971297
I'm basically taking all these sort of projects that I subjected to the people that came to my
@@ -1306,7 +1306,7 @@ So like, not just like San Francisco piloties can use them, but like everyone wh
13061306
want, who's willing to learn Python and wanting to learn how to code can, can reach.
13071307

13081308
00:26:47.800 --> 00:26:53.880
1309-
So, the, the premise of this is like, say you, you know, did learn Python the hard
1309+
So, the premise of this is like, say you, you know, did learn Python the hard
13101310

13111311
00:26:53.880 --> 00:26:58.700
13121312
way or dive into Python or some other sort of work book, like, like sort of goes through
@@ -1330,7 +1330,7 @@ So, with new coder is, is there, it's five different, tutorials and, it sort
13301330
of, it definitely graduates in sort of, difficulty.
13311331

13321332
00:27:20.260 --> 00:27:23.400
1333-
Um, but, there's no real order.
1333+
but, there's no real order.
13341334

13351335
00:27:23.400 --> 00:27:29.380
13361336
You can like choose whatever order that you want, but, it, the, it's meant to teach the
@@ -1339,7 +1339,7 @@ You can like choose whatever order that you want, but, it, the, it's meant to te
13391339
new coder, like various things at various points in time with certain noob friendly language.
13401340

13411341
00:27:35.820 --> 00:27:39.280
1342-
Um, and like asides, like you might not know this term.
1342+
and like asides, like you might not know this term.
13431343

13441344
00:27:39.280 --> 00:27:43.100
13451345
Like, or you might not understand what a class is or inheritance is.
@@ -1462,7 +1462,7 @@ And they said, it seems like by studying these people, we've, it's not necessari
14621462
that the people who succeed versus the people who fail are the ones who are the smartest.
14631463

14641464
00:29:46.800 --> 00:29:50.580
1465-
It seems like the, the most important skill is persistence.
1465+
It seems like the most important skill is persistence.
14661466

14671467
00:29:50.580 --> 00:29:54.940
14681468
The ones who just keep trying until they find their way through these, these types of things

transcripts/017_micropython.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@
564564

565565
00:23:01 Yes.
566566

567-
00:23:03 So the, the Pyboard itself has drivers for a wireless chip.
567+
00:23:03 So the Pyboard itself has drivers for a wireless chip.
568568

569569
00:23:09 So you have to buy an extra wireless chip and connect it up and then it will work as a, it'll work as sort of a Wi-Fi extension.
570570

transcripts/017_micropython.vtt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ Can I set up networking if I want to do a little internet of thing type stuff?
850850
Yes.
851851

852852
00:23:03.040 --> 00:23:09.080
853-
So the, the Pyboard itself has drivers for a wireless chip.
853+
So the Pyboard itself has drivers for a wireless chip.
854854

855855
00:23:09.080 --> 00:23:18.580
856856
So you have to buy an extra wireless chip and connect it up and then it will work as a, it'll work as sort of a Wi-Fi extension.

0 commit comments

Comments
 (0)