Skip to content

Commit 2377e43

Browse files
committed
correct nb names, add cultura del dato links
1 parent 1c79575 commit 2377e43

File tree

1 file changed

+157
-45
lines changed

1 file changed

+157
-45
lines changed

index.html

Lines changed: 157 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -279,54 +279,114 @@ <h3 class="resume-title"></h3>
279279
<div class="resume-item pb-0">
280280
<h4>PART 1: Creating the basics</h4>
281281
<ol start="1">
282-
<a href="assets/notebooks/01_string_input_print.ipynb" onclick="download"><li>Text, questions, and art <br> <i>strings, input(), and print()</i></li></a>
283-
<a href="assets/notebooks/02_variables.ipynb" onclick="download"><li>Events and favorites <br> <i>Variables and string concatenation</i></li></a>
282+
<a href="assets/notebooks/01_string_input_print.ipynb" onclick="download">
283+
<li>Text, questions, and art <br>
284+
<i>Strings, input(), and print()</i>
285+
</li></a>
286+
<a href="assets/notebooks/02_variables.ipynb" onclick="download">
287+
<li>Registering to an event<br>
288+
<i>Variables, assignment, and string concatenation</i>
289+
</li></a>
284290
</ol>
285291
</div>
286292

287293
<!-- Part 2 -->
288294
<div class="resume-item pb-0">
289-
<h4>PART 2: Introduction to lists and if/else statements</h4>
295+
<h4>PART 2: Introduction to lists and if/else construct</h4>
290296
<ol start="3">
291-
<a href="assets/notebooks/03_list_if_in_else.ipynb" onclick="download"><li>In a bookstore <br> <i>Lists and if... in... / else...</i></li></a>
292-
<a href="assets/notebooks/04_list_append_remove.ipynb" onclick="download"><li>Grocery shopping <br> <i>List methods: .append() and .remove()</i></li></a>
293-
<a href="assets/notebooks/05_list_index_pop_insert.ipynb" onclick="download"><li>Customizing the burger menu <br> <i>List methods: .index(), .pop(), and .insert()</i></li></a>
294-
<a href="assets/notebooks/06_list_slicing.ipynb" onclick="download"><li>Traveling around the world <br> <i>List slicing</i></li></a>
295-
<a href="assets/notebooks/07_list_slicing_use.ipynb" onclick="download"><li>Senses, planets, and a house <br> <i>Changing, adding, and removing list elements using slicing</i></li></a>
297+
<a href="assets/notebooks/03_list_if_in_else.ipynb" onclick="download">
298+
<li>In a bookstore <br>
299+
<i>Lists and if... in... / else...</i>
300+
</li></a>
301+
<a href="assets/notebooks/04_list_append_remove.ipynb" onclick="download">
302+
<li>Grocery shopping <br>
303+
<i>List methods: .append() and .remove()</i>
304+
</li></a>
305+
<a href="assets/notebooks/05_list_index_pop_insert.ipynb" onclick="download">
306+
<li>Customizing the burger menu <br>
307+
<i>List methods: .index(), .pop(), and .insert()</i>
308+
</li></a>
309+
<a href="assets/notebooks/06_list_slicing.ipynb" onclick="download">
310+
<li>Traveling around the world <br>
311+
<i>List slicing</i>
312+
</li></a>
313+
<a href="assets/notebooks/07_list_slicing_use.ipynb" onclick="download">
314+
<li>Senses, planets, and a house <br>
315+
<i>Changing, adding, and removing list elements using slicing</i>
316+
</li></a>
296317
</ol>
297318
</div>
298319

299320
<!-- Part 3 -->
300321
<div class="resume-item pb-0">
301322
<h4>PART 3: Introduction to the for loop</h4>
302323
<ol start="8">
303-
<a href="assets/notebooks/08_for_range.ipynb" onclick="download"><li>My friends' favorite dishes<br> <i>for... in range()</i></li></a>
304-
<a href="assets/notebooks/09_for_loop_if_equals.ipynb" onclick="download"><li>At the zoo<br> <i>For loop with if... == ... / else</i></li></a>
305-
<a href="assets/notebooks/10_for_search.ipynb" onclick="download"><li>Where are my gloves?<br> <i>For loop for searching</i></li></a>
306-
<a href="assets/notebooks/11_for_change_list.ipynb" onclick="download"><li>Cleaning the mailing list<br> <i>For loop to change list elements</i></li></a>
307-
<a href="assets/notebooks/12_for_create_list.ipynb" onclick="download"><li>What a mess at the bookstore!<br> <i>For loop to create new lists</i></li></a>
324+
<a href="assets/notebooks/08_for_range.ipynb" onclick="download">
325+
<li>My friends' favorite dishes<br>
326+
<i>for... in range()</i>
327+
</li></a>
328+
<a href="assets/notebooks/09_for_loop_if_equals.ipynb" onclick="download">
329+
<li>At the zoo<br>
330+
<i>For loop with if... == ... / else...</i>
331+
</li></a>
332+
<a href="assets/notebooks/10_for_search.ipynb" onclick="download">
333+
<li>Where are my gloves?<br>
334+
<i>For loop for searching</i>
335+
</li></a>
336+
<a href="assets/notebooks/11_for_change_list.ipynb" onclick="download">
337+
<li>Cleaning the mailing list<br>
338+
<i>For loop to change list elements</i>
339+
</li></a>
340+
<a href="assets/notebooks/12_for_create_list.ipynb" onclick="download">
341+
<li>What a mess at the bookstore!<br>
342+
<i>For loop to create new lists</i>
343+
</li></a>
308344
</ol>
309345
</div>
310346

311347
<!-- Part 4 -->
312348
<div class="resume-item pb-0">
313349
<h4>PART 4: Numbers and algorithms</h4>
314350
<ol start="13">
315-
<a href="assets/notebooks/13_numbers.ipynb" onclick="download"><li>Implementing a calculator<br> <i>Integers, floats, and arithmetic operations</i></li></a>
316-
<a href="assets/notebooks/14_list_of_numbers.ipynb" onclick="download"><li>Playing with numbers<br> <i>Common operations with lists of numbers</i></li></a>
317-
<a href="assets/notebooks/15_random.ipynb" onclick="download"><li>Fortune cookies<br> <i>The Python module</i> random</li></a>
318-
<a href="assets/notebooks/16_intro_to_algos.ipynb" onclick="download"><li>Rock paper scissors<br> <i>Introduction to algorithms</i></li></a>
351+
<a href="assets/notebooks/13_numbers.ipynb" onclick="download">
352+
<li>Implementing a calculator<br>
353+
<i>Integers, floats, and arithmetic operations</i>
354+
</li></a>
355+
<a href="assets/notebooks/14_list_of_numbers.ipynb" onclick="download">
356+
<li>Playing with numbers<br>
357+
<i>Common operations with lists of numbers</i>
358+
</li></a>
359+
<a href="assets/notebooks/15_random.ipynb" onclick="download">
360+
<li>Fortune cookies<br>
361+
<i>The Python module</i> random
362+
</li></a>
363+
<a href="assets/notebooks/16_intro_to_algos.ipynb" onclick="download">
364+
<li>Rock paper scissors<br>
365+
<i>Introduction to algorithms</i>
366+
</li></a>
319367
</ol>
320368
</div>
321369

322370
<!-- Part 5 -->
323371
<div class="resume-item pb-0">
324372
<h4>PART 5: The while loop and conditions </h4>
325373
<ol start="17">
326-
<a href="assets/notebooks/17_while_loop.ipynb" onclick="download"><li>Do you want more candies?<br> <i>The while loop</i></li></a>
327-
<a href="assets/notebooks/18_while_conditions.ipynb" onclick="download"><li>Animals, unique numbers, and sums<br> <i>Various kinds of conditions</i></li></a>
328-
<a href="assets/notebooks/19_combining_conditions.ipynb" onclick="download"><li>And, or, not, not in<br> <i>Combining or reversing conditions</i></li></a>
329-
<a href="assets/notebooks/20_booleans.ipynb" onclick="download"><li>Behind the scenes of comparisons and conditions<br> <i>Booleans</i></li></a>
374+
<a href="assets/notebooks/17_while_loop.ipynb" onclick="download">
375+
<li>Do you want more candies?<br>
376+
<i>The while loop</i>
377+
</li></a>
378+
<a href="assets/notebooks/18_while_conditions.ipynb" onclick="download">
379+
<li>Animals, unique numbers, and sum<br>
380+
<i>Various kinds of conditions</i>
381+
</li></a>
382+
<a href="assets/notebooks/19_combining_conditions.ipynb" onclick="download">
383+
<li>And, or, not, not in<br>
384+
<i>Combining and reversing conditions</i>
385+
</li></a>
386+
<a href="assets/notebooks/20_booleans.ipynb" onclick="download">
387+
<li>Behind the scenes of comparisons and conditions<br>
388+
<i>Booleans</i>
389+
</li></a>
330390
</ol>
331391
</div>
332392

@@ -338,37 +398,70 @@ <h3 class="resume-title"></h3>
338398

339399
<!-- Part 6 -->
340400
<div class="resume-item pb-0">
341-
<h4>PART 6: Focus on lists and for loop </h4>
401+
<h4>PART 6: Overview of lists and the for loop</h4>
342402
<ol start="21">
343-
<a href="assets/notebooks/21_list_overview.ipynb" onclick="download"><li>Overview of lists<br> <i>Operations, methods, and tricks</i></li></a>
344-
<a href="assets/notebooks/22_for_overview.ipynb" onclick="download" ><li>More about the for loop<br> <i>Various ways of repeating commands on lists and beyond</i></li></a>
345-
<a href="assets/notebooks/23_list_of_lists.ipynb" onclick="download" ><li>Lists of lists<br> <i>Slicing, nested for loops, and flattening</i></li></a>
403+
<a href="assets/notebooks/21_list_overview.ipynb" onclick="download">
404+
<li>Overview of lists<br>
405+
<i>Operations, methods, and tricks</i>
406+
</li></a>
407+
<a href="assets/notebooks/22_for_overview.ipynb" onclick="download" >
408+
<li>Overview of the for loop<br>
409+
<i>Various ways of repeating commands on lists and beyond</i>
410+
</li></a>
411+
<a href="assets/notebooks/23_list_of_lists.ipynb" onclick="download" >
412+
<li>Lists of lists<br>
413+
<i>Slicing, nested for loops, and flattening</i>
414+
</li></a>
346415
</ol>
347416
</div>
348417

349418
<!-- Part 7 -->
350419
<div class="resume-item pb-0">
351420
<h4>PART 7: Dictionaries and overview of strings</h4>
352421
<ol start="24">
353-
<a href="assets/notebooks/24_dictionaries.ipynb" onclick="download" ><li>Inventory at the English bookstore<br> <i>Dictionaries</i></li></a>
354-
<a href="assets/notebooks/25_dictionary_list.ipynb" onclick="download" ><li>Trip to Switzerland<br> <i>Dictionaries with lists as values</i></li></a>
355-
<a href="assets/notebooks/26_dictionary_use.ipynb" onclick="download" ><li>Counting, compressing, and sorting<br> <i>What are dictionaries for?</i></li></a>
356-
<a href="assets/notebooks/27_strings_overview.ipynb" onclick="download" ><li>Overview of strings<br> <i>Operations, methods, and printing</i></li></a>
422+
<a href="assets/notebooks/24_dictionaries.ipynb" onclick="download" >
423+
<li>Inventory at the English bookstore<br>
424+
<i>Dictionaries</i>
425+
</li></a>
426+
<a href="assets/notebooks/25_dictionary_list.ipynb" onclick="download" >
427+
<li>Trip to Switzerland<br>
428+
<i>Dictionaries with lists as values</i>
429+
</li></a>
430+
<a href="assets/notebooks/26_dictionary_use.ipynb" onclick="download" >
431+
<li>Counting, compressing, and sorting<br>
432+
<i>What are dictionaries for?</i>
433+
</li></a>
434+
<a href="assets/notebooks/27_strings_overview.ipynb" onclick="download" >
435+
<li>Overview of strings<br>
436+
<i>Operations, methods, and printing</i>
437+
</li></a>
357438
</ol>
358439
</div>
359440

360441
<!-- Part 8 -->
361442
<div class="resume-item pb-0">
362443
<h4>PART 8: Functions </h4>
363444
<ol start="28">
364-
<a href="assets/notebooks/28_function_inputs.ipynb" onclick="download" ><li>Printing Thank you cards<br> <i>Function inputs</i></li></a>
365-
<a href="assets/notebooks/29_function_outputs.ipynb" onclick="download" ><li>Login database for an online store<br> <i>Function outputs and modular design</i></li></a>
366-
<a href="assets/notebooks/30_function_io_extra.ipynb" onclick="download" ><li>Free ticket at the museum<br> <i>Input validation and output variations</i></li></a>
367-
<a href="assets/notebooks/31_recursion.ipynb" onclick="download" ><li>Factorials<br> <i>Recursive functions</i></li></a>
445+
<a href="assets/notebooks/28_function_inputs.ipynb" onclick="download" >
446+
<li>Printing thank you cards<br>
447+
<i>Function inputs</i>
448+
</li></a>
449+
<a href="assets/notebooks/29_function_outputs.ipynb" onclick="download" >
450+
<li>Login database for an online store<br>
451+
<i>Function outputs and modular design</i>
452+
</li></a>
453+
<a href="assets/notebooks/30_function_io_extra.ipynb" onclick="download" >
454+
<li>Free ticket at the museum<br>
455+
<i>Input validation and output variations</i>
456+
</li></a>
457+
<a href="assets/notebooks/31_recursion.ipynb" onclick="download" >
458+
<li>Factorials<br>
459+
<i>Recursive functions</i>
460+
</li></a>
368461
<!-- <li>Jupyter notebooks and modules<br> <i>Working with Jupyter Notebook and an IDE</i></li> -->
369462
<a href="assets/notebooks/32_modules.ipynb" onclick="download" >
370-
<li>Jupyter notebooks and modules<br>
371-
<i>Working with Jupyter Notebook and an IDE</i></a><br>
463+
<li>How can I reuse functions?<br>
464+
<i>Working with Jupyter Notebooks and Python Modules</i></a><br>
372465
(additional file: <a href="assets/notebooks/setup_database.py" onclick="download" >setup_database.py</a>)
373466
</li>
374467

@@ -384,21 +477,36 @@ <h4>PART 9: Last bits of basic Python </h4>
384477
<i>Reading and writing text files</i></a><br>
385478
(additional files: <a href="assets/notebooks/33_purchases.txt" onclick="download" >33_purchases.txt</a>, <a href="assets/notebooks/actors.txt" onclick="download" >actors.txt</a>)
386479
</li>
387-
<a href="assets/notebooks/34_python_more.ipynb" onclick="download" ><li>What’s more in Python?<br> <i>Additional types, keywords, built-in functions, and modules</i></li></a>
480+
<a href="assets/notebooks/34_python_more.ipynb" onclick="download" >
481+
<li>What’s more in Python?<br>
482+
<i>Additional types, keywords, built-in functions, and modules</i>
483+
</li></a>
388484
</ol>
389485
</div>
390486

391487
<!-- Part 10 -->
392488
<div class="resume-item pb-0">
393-
<h4>PART 10: Object oriented programming </h4>
489+
<h4>PART 10: Object-oriented programming </h4>
394490
<ol start="35">
395-
<a href="assets/notebooks/35_classes_objects.ipynb" onclick="download" ><li>Let's build an online store!<br> <i>Classes and objects, attributes and methods</i></li></a>
396-
397-
<a href="assets/notebooks/36_encapsulation.ipynb" onclick="download" ><li>36. Securing the online store<br> <i>Encapsulation</i></li></a>
491+
<a href="assets/notebooks/35_classes_objects.ipynb" onclick="download" >
492+
<li>Let's build an online store!<br>
493+
<i>Classes and objects, attributes and methods</i>
494+
</li></a>
495+
496+
<a href="assets/notebooks/36_encapsulation.ipynb" onclick="download" >
497+
<li>36. Securing the online store<br>
498+
<i>Encapsulation</i>
499+
</li></a>
398500

399-
<a href="assets/notebooks/37_inheritance.ipynb" onclick="download" ><li>How can I add a book sample?<br> <i>Inheritance</i></li></a>
400-
401-
<a href="assets/notebooks/38_polymorphism.ipynb" onclick="download" ><li>Customizing the coupon for electronics<br> <i>Polymorphism</i></li></a>
501+
<a href="assets/notebooks/37_inheritance.ipynb" onclick="download" >
502+
<li>How can I add a book sample?<br>
503+
<i>Inheritance</i>
504+
</li></a>
505+
506+
<a href="assets/notebooks/38_polymorphism.ipynb" onclick="download" >
507+
<li>Customizing the coupon for electronics<br>
508+
<i>Polymorphism</i>
509+
</li></a>
402510
</ol>
403511
</div>
404512
</div>
@@ -511,8 +619,12 @@ <h4>MENTIONS</h4>
511619

512620
<ul>
513621
<li><i class="bi bi-chevron-right"></i> <a class="a-about" href="https://www.linkedin.com/feed/update/urn:li:activity:7139969588032655360/">Parul Pandey - LinkedIn blog post</a></li>
514-
515-
<li><i class="bi bi-chevron-right"></i> <a class="a-about" href="https://stefanogatti.substack.com/p/laculturadeldato-068">La cultura del dato - Numero 68</a></li>
622+
<li>
623+
<i class="bi bi-chevron-right"></i> <a class="a-about" href="https://stefanogatti.substack.com/p/laculturadeldato-068">La cultura del dato - #68</a>,
624+
<a class="a-about" href=" https://stefanogatti.substack.com/p/laculturadeldato-075">#75</a>,
625+
<a class="a-about" href=" https://stefanogatti.substack.com/p/laculturadeldato-196">#196</a>
626+
</li>
627+
516628

517629
<li><i class="bi bi-chevron-right"></i> <a class="a-about" href="https://www.oreilly.com/radar/radar-trends-to-watch-june-2023/#:~:text=AI%2C%20and%20specifically%20large%20language,virtually%20every%20branch%20of%20technology.">Radar Trends to Watch: June 2023 (O'Reilly)</a></li>
518630

0 commit comments

Comments
 (0)