Skip to content

Commit 31668c7

Browse files
authored
Merge pull request #237 from talkpython/master
sync back
2 parents 71f65e6 + db99e4e commit 31668c7

6 files changed

+19
-20
lines changed

transcripts/482-pre-commit-hooks-for-python-devs.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
00:00:08 tired of dealing with tons of conflicts and spurious Git changes? You need Git pre-commit
66

7-
00:00:13 hooks. Well, we're lucky to have Stephanie Mullen on the show today, who has done a bunch of writing
7+
00:00:13 hooks. Well, we're lucky to have Stephanie Molin on the show today, who has done a bunch of writing
88

99
00:00:18 and teaching of Git hooks. This is Talk Python to Me, episode 482, recorded October 24th, 2024.
1010

@@ -68,7 +68,7 @@
6868

6969
00:03:08 Yeah. Now, before we get to that, how about your story? How do you get into programming Python and
7070

71-
00:03:14 pre-commit hooks and all these things? Hello everyone. I'm Stephanie Mullen. I am a software engineer at
71+
00:03:14 pre-commit hooks and all these things? Hello everyone. I'm Stephanie Molin. I am a software engineer at
7272

7373
00:03:18 Bloomberg. And I would say, I guess I got into programming in Python. I initially was programming
7474

transcripts/482-pre-commit-hooks-for-python-devs.vtt

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ What about your team member's code? That one person who never wants to run the l
1010
tired of dealing with tons of conflicts and spurious Git changes? You need Git pre-commit
1111

1212
00:00:13.240 --> 00:00:18.900
13-
hooks. Well, we're lucky to have Stephanie Mullen on the show today, who has done a bunch of writing
13+
hooks. Well, we're lucky to have Stephanie Molin on the show today, who has done a bunch of writing
1414

1515
00:00:18.900 --> 00:00:26.280
1616
and teaching of Git hooks. This is Talk Python to Me, episode 482, recorded October 24th, 2024.
@@ -109,7 +109,7 @@ So it should be a lot of fun. I'm looking forward to it. Me too.
109109
Yeah. Now, before we get to that, how about your story? How do you get into programming Python and
110110

111111
00:03:14.060 --> 00:03:18.900
112-
pre-commit hooks and all these things? Hello everyone. I'm Stephanie Mullen. I am a software engineer at
112+
pre-commit hooks and all these things? Hello everyone. I'm Stephanie Molin. I am a software engineer at
113113

114114
00:03:18.900 --> 00:03:25.220
115115
Bloomberg. And I would say, I guess I got into programming in Python. I initially was programming

transcripts/491-duckdb-and-python-ducks-and-snakes-living-together.txt

+9-10
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@
792792

793793
00:21:04 Oh, wow.
794794

795-
00:21:04 There's a community extension to read BigQuery.
795+
00:21:04 There's a community extension to read Big Query.
796796

797797
00:21:06 So it's really a universal Swiss Army knife in a lot of ways to read from those operational data stores, but to do those analytical tasks.
798798

@@ -1010,7 +1010,7 @@
10101010

10111011
00:27:42 So one key note, if folks really know a lot about SQLite, one of the defining characteristics of it is that it is very much non-typed as much as possible.
10121012

1013-
00:27:50 VectDB is very much more traditional in that it does have typing.
1013+
00:27:50 Vector DB is very much more traditional in that it does have typing.
10141014

10151015
00:27:55 It does take full advantage of having nice numeric data types, date times that are true date times, not strings.
10161016

@@ -1046,9 +1046,9 @@
10461046

10471047
00:28:46 It's worse than that.
10481048

1049-
00:28:49 But DuckTB is okay and ready to handle it and making it easy.
1049+
00:28:49 But DuckDB is okay and ready to handle it and making it easy.
10501050

1051-
00:28:54 Because it really aligns with the DuckTB ethos, which is a database shouldn't be extra work.
1051+
00:28:54 Because it really aligns with the DuckDB ethos, which is a database shouldn't be extra work.
10521052

10531053
00:28:58 It should be saving you work.
10541054

@@ -1070,7 +1070,7 @@
10701070

10711071
00:29:21 Yeah.
10721072

1073-
00:29:22 Yes, there's a long tail of complexity there, but DuckTB is really trying to handle that
1073+
00:29:22 Yes, there's a long tail of complexity there, but DuckDB is really trying to handle that
10741074

10751075
00:29:27 and just make that first experience using a database just straight out of the box.
10761076

@@ -1528,7 +1528,7 @@
15281528

15291529
00:41:08 So AWS, Google, Azure, you can read individual files or actually it'll understand hierarchies of files.
15301530

1531-
00:41:15 So if you have like a top level folder for a year and a folder for month and day, if you filter for I only want three days worth of data, DuckTB will only read three files.
1531+
00:41:15 So if you have like a top level folder for a year and a folder for month and day, if you filter for I only want three days worth of data, DuckDB will only read three files.
15321532

15331533
00:41:24 So it's pretty slick.
15341534

@@ -1774,7 +1774,7 @@
17741774

17751775
00:48:57 All right.
17761776

1777-
00:48:57 You gotta have fun with it.
1777+
00:48:57 You got to have fun with it.
17781778

17791779
00:48:59 Right.
17801780

@@ -1820,7 +1820,7 @@
18201820

18211821
00:49:38 And the reason for that is you no longer need 50 servers to answer your questions.
18221822

1823-
00:49:43 It turns out laptops are pretty daggone fast now.
1823+
00:49:43 It turns out laptops are pretty Dagon fast now.
18241824

18251825
00:49:45 Yeah.
18261826

@@ -2332,5 +2332,4 @@
23322332

23332333
01:01:39 Now get out there and write some Python code.
23342334

2335-
01:01:41 You You you you Thank you.
2336-
2335+
01:01:41 You Thank you.

transcripts/491-duckdb-and-python-ducks-and-snakes-living-together.vtt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1591,10 +1591,10 @@ I mean, whatever you're imagining, it's worse.
15911591
It's worse than that.
15921592

15931593
00:28:49.000 --> 00:28:54.380
1594-
But DuckTB is okay and ready to handle it and making it easy.
1594+
But DuckDB is okay and ready to handle it and making it easy.
15951595

15961596
00:28:54.460 --> 00:28:58.580
1597-
Because it really aligns with the DuckTB ethos, which is a database shouldn't be extra work.
1597+
Because it really aligns with the DuckDB ethos, which is a database shouldn't be extra work.
15981598

15991599
00:28:58.580 --> 00:28:59.840
16001600
It should be saving you work.
@@ -1627,7 +1627,7 @@ But here's my CSV and actually you need to transform it or whatever.
16271627
Yeah.
16281628

16291629
00:29:22.420 --> 00:29:27.020
1630-
Yes, there's a long tail of complexity there, but DuckTB is really trying to handle that
1630+
Yes, there's a long tail of complexity there, but DuckDB is really trying to handle that
16311631

16321632
00:29:27.020 --> 00:29:31.760
16331633
and just make that first experience using a database just straight out of the box.
@@ -2317,7 +2317,7 @@ You can read from any of the major clouds.
23172317
So AWS, Google, Azure, you can read individual files or actually it'll understand hierarchies of files.
23182318

23192319
00:41:15.300 --> 00:41:24.260
2320-
So if you have like a top level folder for a year and a folder for month and day, if you filter for I only want three days worth of data, DuckTB will only read three files.
2320+
So if you have like a top level folder for a year and a folder for month and day, if you filter for I only want three days worth of data, DuckDB will only read three files.
23212321

23222322
00:41:24.260 --> 00:41:25.040
23232323
So it's pretty slick.

youtube_transcripts/482-pre-commit-hooks-for-python-devs.vtt

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Stephanie Pau: Yeah. Now, before we get to that, how about your story? How did y
3737
Python and pre-commit hooks and all these things? Stephanie Pau: Oh, well, so I, hello everyone.
3838

3939
00:00:56.480 --> 00:01:04.240
40-
I'm Stephanie Mullen. I am a software engineer at Bloomberg. And I would say, I guess I got into
40+
I'm Stephanie Molin. I am a software engineer at Bloomberg. And I would say, I guess I got into
4141

4242
00:01:04.240 --> 00:01:11.920
4343
programming in Python. I initially was programming in R and I was doing more data analysis while still

youtube_transcripts/493-great-tables.vtt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2563,7 +2563,7 @@ They're meant for HTML and meant to be lightweight, slightly interactive, just t
25632563
They're massively important because it shows you it's.
25642564

25652565
00:53:45.200 --> 00:53:53.560
2566-
I had Stephanie, Stephanie Mullen on a little while ago, and she has this project that sort of.
2566+
I had Stephanie, Stephanie Molin on a little while ago, and she has this project that sort of.
25672567

25682568
00:53:53.560 --> 00:54:03.900
25692569
If you want the same information about the statistical summary of some set of data, like the standard distribution, the mean, the max, the min.

0 commit comments

Comments
 (0)