Skip to content

Commit 18f69de

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

16 files changed

+30
-30
lines changed

Diff for: transcripts/023_3d_printing.txt

+4-4
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

Diff for: transcripts/023_3d_printing.vtt

+4-4
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.

Diff for: transcripts/143-tuning-python-web-app-performance.txt

+2-2
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

Diff for: transcripts/143-tuning-python-web-app-performance.vtt

+2-2
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.

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

+1-1
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

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

+1-1
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.

Diff for: transcripts/218-serverless-python-functions-in-azure.txt

+1-1
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

Diff for: transcripts/218-serverless-python-functions-in-azure.vtt

+1-1
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.

Diff for: transcripts/284-fastapi.txt

+1-1
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

Diff for: transcripts/284-fastapi.vtt

+1-1
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.

Diff for: transcripts/424-shiny-for-python.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -670,15 +670,15 @@
670670

671671
00:23:14 Oh, interesting.
672672

673-
00:23:14 Just put some G-unicorn, UV-corn workers in front of it.
673+
00:23:14 Just put some Gunicorn, uvicorn workers in front of it.
674674

675-
00:23:18 Except G-unicorn.
675+
00:23:18 Except Gunicorn.
676676

677677
00:23:20 Yeah, the only exception is that because Shiny for Python is stateful and we can talk more about that as we, I'm assuming we're going to talk a little bit about how we compare to some of the other things out there.
678678

679679
00:23:30 We do need, if you're going to load balance across multiple processes, it does have to be a stateful load balancer, which is normally quite easy to do.
680680

681-
00:23:38 But G-unicorn is not stateless.
681+
00:23:38 But Gunicorn is not stateless.
682682

683683
00:23:39 It's not sticky.
684684

Diff for: transcripts/424-shiny-for-python.vtt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1009,10 +1009,10 @@ So it's almost true that anywhere you can host FastAPI, you can host Shiny for P
10091009
Oh, interesting.
10101010

10111011
00:23:14.800 --> 00:23:18.680
1012-
Just put some G-unicorn, UV-corn workers in front of it.
1012+
Just put some Gunicorn, uvicorn workers in front of it.
10131013

10141014
00:23:18.680 --> 00:23:20.300
1015-
Except G-unicorn.
1015+
Except Gunicorn.
10161016

10171017
00:23:20.300 --> 00:23:29.640
10181018
Yeah, the only exception is that because Shiny for Python is stateful and we can talk more about that as we, I'm assuming we're going to talk a little bit about how we compare to some of the other things out there.
@@ -1021,7 +1021,7 @@ Yeah, the only exception is that because Shiny for Python is stateful and we can
10211021
We do need, if you're going to load balance across multiple processes, it does have to be a stateful load balancer, which is normally quite easy to do.
10221022

10231023
00:23:38.020 --> 00:23:39.500
1024-
But G-unicorn is not stateless.
1024+
But Gunicorn is not stateless.
10251025

10261026
00:23:39.500 --> 00:23:41.240
10271027
It's not sticky.

Diff for: transcripts/500-django-simple-deploy.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
00:00:54 Welcome to Talk Python to Me, a weekly podcast on Python.
1818

19-
00:00:57 This is your host, Michael Kennedy. Follow me on Mastodon where I'm @mkennedy and follow the podcast using @talkpython, both accounts over at fosstodon.org and keep up with the show and listen to over nine years of episodes at talkpython.fm. If you want to be part of our live episodes, you can find the live streams over on YouTube. Subscribe to our YouTube channel over at talkpython.fm/youtube and get notified about upcoming shows. This episode is sponsored by worth recruiting worth recruiting specializes in placing senior level python developers and data scientists let worth help you find your next python opportunity at talkpython.fm/worth eric welcome back to talk python great to have you here nice to see you again michael nice to see you as well last time we talked about your book right and now your project your deployment project i love talking about deployment because i think it's such an enabling technology or enabling skill and your project Django Simple Deploy is certainly in that realm.
19+
00:00:57 This is your host, Michael Kennedy. Follow me on Mastodon where I'm @mkennedy and follow the podcast using @talkpython, both accounts over at fosstodon.org and keep up with the show and listen to over nine years of episodes at talkpython.fm. If you want to be part of our live episodes, you can find the live streams over on YouTube. Subscribe to our YouTube channel over at talkpython.fm/youtube and get notified about upcoming shows. This episode is sponsored by worth recruiting worth recruiting specializes in placing senior level python developers and data scientists let worth help you find your next python opportunity at talkpython.fm/worth Eric welcome back to talk python great to have you here nice to see you again michael nice to see you as well last time we talked about your book right and now your project your deployment project i love talking about deployment because i think it's such an enabling technology or enabling skill and your project Django Simple Deploy is certainly in that realm.
2020

2121
00:02:00 Yes, I have appreciated your comments about deployment over the years.
2222

Diff for: transcripts/500-django-simple-deploy.vtt

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Live from Portland, Oregon, and this segment was made with Python.
2828
Welcome to Talk Python to Me, a weekly podcast on Python.
2929

3030
00:00:57.740 --> 00:02:00.080
31-
This is your host, Michael Kennedy. Follow me on Mastodon where I'm @mkennedy and follow the podcast using @talkpython, both accounts over at fosstodon.org and keep up with the show and listen to over nine years of episodes at talkpython.fm. If you want to be part of our live episodes, you can find the live streams over on YouTube. Subscribe to our YouTube channel over at talkpython.fm/youtube and get notified about upcoming shows. This episode is sponsored by worth recruiting worth recruiting specializes in placing senior level python developers and data scientists let worth help you find your next python opportunity at talkpython.fm/worth eric welcome back to talk python great to have you here nice to see you again michael nice to see you as well last time we talked about your book right and now your project your deployment project i love talking about deployment because i think it's such an enabling technology or enabling skill and your project Django Simple Deploy is certainly in that realm.
31+
This is your host, Michael Kennedy. Follow me on Mastodon where I'm @mkennedy and follow the podcast using @talkpython, both accounts over at fosstodon.org and keep up with the show and listen to over nine years of episodes at talkpython.fm. If you want to be part of our live episodes, you can find the live streams over on YouTube. Subscribe to our YouTube channel over at talkpython.fm/youtube and get notified about upcoming shows. This episode is sponsored by worth recruiting worth recruiting specializes in placing senior level python developers and data scientists let worth help you find your next python opportunity at talkpython.fm/worth Eric welcome back to talk python great to have you here nice to see you again michael nice to see you as well last time we talked about your book right and now your project your deployment project i love talking about deployment because i think it's such an enabling technology or enabling skill and your project Django Simple Deploy is certainly in that realm.
3232

3333
00:02:00.480 --> 00:02:03.100
3434
Yes, I have appreciated your comments about deployment over the years.

Diff for: youtube_transcripts/317-python-flask-at-fec.vtt

+3-3
Original file line numberDiff line numberDiff line change
@@ -2265,15 +2265,15 @@ And if you have opinions about workers versus threads
22652265

22662266

22672267
00:24:41.500 --> 00:24:46.100
2268-
for G-unicorn, I think, I don't know how,
2268+
for Gunicorn, I think, I don't know how,
22692269

22702270

22712271
00:24:46.100 --> 00:24:47.500
2272-
I call it G-unicorn. - I say G-unicorn,
2272+
I call it Gunicorn. - I say Gunicorn,
22732273

22742274

22752275
00:24:47.500 --> 00:24:48.820
2276-
some people say G-unicorn.
2276+
some people say Gunicorn.
22772277

22782278

22792279
00:24:48.820 --> 00:24:51.420

Diff for: youtube_transcripts/414-stroll-down-startup-lane.vtt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1885,7 +1885,7 @@ Are we talking regular database or NoSQL?
18851885

18861886

18871887
00:17:11.240 --> 00:17:15.600
1888-
Or could it be even things like the log file from Engine X
1888+
Or could it be even things like the log file from NGINX
18891889

18901890

18911891
00:17:15.600 --> 00:17:18.120

0 commit comments

Comments
 (0)