Skip to content

Commit 18f69de

Browse files
committed
Transcript corrections.
1 parent 0ce48af commit 18f69de

16 files changed

+30
-30
lines changed

transcripts/023_3d_printing.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@
310310

311311
00:08:24 Interesting.
312312

313-
00:08:26 So at a high level, you guys are using, you said, Flask and MicroWisgi and Python 3 to sort of put all this together.
313+
00:08:26 So at a high level, you guys are using, you said, Flask and uWSGI and Python 3 to sort of put all this together.
314314

315315
00:08:37 Do you want to talk a little bit about why you chose that?
316316

@@ -332,7 +332,7 @@
332332

333333
00:09:21 At the time, it was kind of best in breed, and so far I haven't found anything in Python that's necessarily better, but there's constantly new things popping up in that space in Python.
334334

335-
00:09:29 MicroWisgi I've used before at companies.
335+
00:09:29 uWSGI I've used before at companies.
336336

337337
00:09:32 I really trust it.
338338

@@ -344,15 +344,15 @@
344344

345345
00:09:44 I haven't used Apache in forever.
346346

347-
00:09:45 Or you go Nginx and MicroWisgi if you're in Python.
347+
00:09:45 Or you go Nginx and uWSGI if you're in Python.
348348

349349
00:09:47 There's a couple alternatives, but it's just very reliable.
350350

351351
00:09:51 And I feel like you only get so many sort of innovation points that you can spend at a new company.
352352

353353
00:09:57 I really wanted to spend them on Python 3, and I tried to make everything else really just stable.
354354

355-
00:10:02 Right, yeah, I've been using MicroWisgi and Nginx to deliver all the episodes of my podcast, actually the download server and stuff, and it's been super amazing.
355+
00:10:02 Right, yeah, I've been using uWSGI and Nginx to deliver all the episodes of my podcast, actually the download server and stuff, and it's been super amazing.
356356

357357
00:10:12 So, yeah, I really like it.
358358

transcripts/023_3d_printing.vtt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ Right.
469469
Interesting.
470470

471471
00:08:26.180 --> 00:08:36.760
472-
So at a high level, you guys are using, you said, Flask and MicroWisgi and Python 3 to sort of put all this together.
472+
So at a high level, you guys are using, you said, Flask and uWSGI and Python 3 to sort of put all this together.
473473

474474
00:08:37.380 --> 00:08:39.880
475475
Do you want to talk a little bit about why you chose that?
@@ -502,7 +502,7 @@ Flask was very simple and direct, and I really enjoyed it.
502502
At the time, it was kind of best in breed, and so far I haven't found anything in Python that's necessarily better, but there's constantly new things popping up in that space in Python.
503503

504504
00:09:29.800 --> 00:09:32.080
505-
MicroWisgi I've used before at companies.
505+
uWSGI I've used before at companies.
506506

507507
00:09:32.080 --> 00:09:32.920
508508
I really trust it.
@@ -520,7 +520,7 @@ I mean, several years ago, it was a little bit more of a bleeding-edge choice, b
520520
I haven't used Apache in forever.
521521

522522
00:09:45.260 --> 00:09:47.520
523-
Or you go Nginx and MicroWisgi if you're in Python.
523+
Or you go Nginx and uWSGI if you're in Python.
524524

525525
00:09:47.520 --> 00:09:51.280
526526
There's a couple alternatives, but it's just very reliable.
@@ -532,7 +532,7 @@ And I feel like you only get so many sort of innovation points that you can spen
532532
I really wanted to spend them on Python 3, and I tried to make everything else really just stable.
533533

534534
00:10:02.580 --> 00:10:12.920
535-
Right, yeah, I've been using MicroWisgi and Nginx to deliver all the episodes of my podcast, actually the download server and stuff, and it's been super amazing.
535+
Right, yeah, I've been using uWSGI and Nginx to deliver all the episodes of my podcast, actually the download server and stuff, and it's been super amazing.
536536

537537
00:10:12.920 --> 00:10:14.560
538538
So, yeah, I really like it.

transcripts/143-tuning-python-web-app-performance.txt

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

77
00:00:13 Join Ben Kane and me to discuss how to optimize your Python web application as well as
88

9-
00:00:19 MicroWisgi and Nginx. This is Talk Python to Me, episode 143, recorded December 11, 2017.
9+
00:00:19 uWSGI and Nginx. This is Talk Python to Me, episode 143, recorded December 11, 2017.
1010

1111
00:00:26 Welcome to Talk Python to Me, a weekly podcast on Python, the language, the libraries, the
1212

@@ -986,7 +986,7 @@
986986

987987
00:46:58 And so the first thing that you said that you might want to look at is worker threads.
988988

989-
00:47:03 Again, that's just like with MicroWisgi, right?
989+
00:47:03 Again, that's just like with uWSGI, right?
990990

991991
00:47:07 That's really the number of processes on the system.
992992

transcripts/143-tuning-python-web-app-performance.vtt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ know a well of performance improvements actually lives inside your web servers t
1313
Join Ben Kane and me to discuss how to optimize your Python web application as well as
1414

1515
00:00:19.380 --> 00:00:26.600
16-
MicroWisgi and Nginx. This is Talk Python to Me, episode 143, recorded December 11, 2017.
16+
uWSGI and Nginx. This is Talk Python to Me, episode 143, recorded December 11, 2017.
1717

1818
00:00:26.600 --> 00:00:45.860
1919
Welcome to Talk Python to Me, a weekly podcast on Python, the language, the libraries, the
@@ -1486,7 +1486,7 @@ It's just to serve up a thing.
14861486
And so the first thing that you said that you might want to look at is worker threads.
14871487

14881488
00:47:03.260 --> 00:47:07.040
1489-
Again, that's just like with MicroWisgi, right?
1489+
Again, that's just like with uWSGI, right?
14901490

14911491
00:47:07.040 --> 00:47:11.960
14921492
That's really the number of processes on the system.

transcripts/215-the-software-powering-talk-python-courses-and-podcast.txt

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

319319
00:07:03 So I'm going to go force myself to use the infrastructure as a service thing and learn
320320

321-
00:07:08 Nginx and MicroWisgi and Linux and all these deployment things and how they work together.
321+
00:07:08 Nginx and uWSGI and Linux and all these deployment things and how they work together.
322322

323323
00:07:12 So that if I guess so, I wasn't be a weak spot for me or something.
324324

transcripts/215-the-software-powering-talk-python-courses-and-podcast.vtt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ And then I'm like, no, I feel like I need to know this.
490490
So I'm going to go force myself to use the infrastructure as a service thing and learn
491491

492492
00:07:08.220 --> 00:07:12.660
493-
Nginx and MicroWisgi and Linux and all these deployment things and how they work together.
493+
Nginx and uWSGI and Linux and all these deployment things and how they work together.
494494

495495
00:07:12.660 --> 00:07:17.260
496496
So that if I guess so, I wasn't be a weak spot for me or something.

transcripts/218-serverless-python-functions-in-azure.txt

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

385385
00:09:03 How would I, I guess, in the Python space, what technology would I use that?
386386

387-
00:09:06 Like if I were building an API and I was hosting it in MicroWisgi, I would do that with Flask
387+
00:09:06 Like if I were building an API and I was hosting it in uWSGI, I would do that with Flask
388388

389389
00:09:12 or Pyramid or API star or something like that.
390390

transcripts/218-serverless-python-functions-in-azure.vtt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ Exactly.
580580
How would I, I guess, in the Python space, what technology would I use that?
581581

582582
00:09:06.940 --> 00:09:12.660
583-
Like if I were building an API and I was hosting it in MicroWisgi, I would do that with Flask
583+
Like if I were building an API and I was hosting it in uWSGI, I would do that with Flask
584584

585585
00:09:12.660 --> 00:09:16.000
586586
or Pyramid or API star or something like that.

transcripts/284-fastapi.txt

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

379379
00:10:19 Flask, Django, and so on, can talk to or implement.
380380

381-
00:10:24 And then all the web servers like MicroWisgi, G-Unicorn, and so on, know how to talk to anything
381+
00:10:24 And then all the web servers like uWSGI, G-Unicorn, and so on, know how to talk to anything
382382

383383
00:10:29 that does Woosgi.
384384

transcripts/284-fastapi.vtt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ the web hosting side, like Woosgi is this common API that all the different web
604604
Flask, Django, and so on, can talk to or implement.
605605

606606
00:10:24.260 --> 00:10:29.840
607-
And then all the web servers like MicroWisgi, G-Unicorn, and so on, know how to talk to anything
607+
And then all the web servers like uWSGI, G-Unicorn, and so on, know how to talk to anything
608608

609609
00:10:29.840 --> 00:10:30.560
610610
that does Woosgi.

0 commit comments

Comments
 (0)