<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" encoding="UTF-8" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:atom="http://www.w3.org/2005/Atom/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:fireside="http://fireside.fm/modules/rss/fireside">
  <channel>
    <fireside:hostname>web01.fireside.fm</fireside:hostname>
    <fireside:genDate>Wed, 06 May 2026 08:28:49 -0500</fireside:genDate>
    <generator>Fireside (https://fireside.fm)</generator>
    <title>Python Out Loud - Episodes Tagged with “Project Updates”</title>
    <link>https://www.pythonoutloud.com/tags/project%20updates</link>
    <pubDate>Sun, 18 Feb 2018 22:00:00 -0800</pubDate>
    <description>Think 'out loud' with us. Whether you're typing hello-world for the first time, or a billion-download app developer, join us for casual discussions about learning and problem solving in the Python programming language.
</description>
    <language>en-us</language>
    <itunes:type>episodic</itunes:type>
    <itunes:subtitle>a podcasted journey from learner to developer</itunes:subtitle>
    <itunes:author>Python Out Loud!</itunes:author>
    <itunes:summary>Think 'out loud' with us. Whether you're typing hello-world for the first time, or a billion-download app developer, join us for casual discussions about learning and problem solving in the Python programming language.
</itunes:summary>
    <itunes:image href="https://media24.fireside.fm/file/fireside-images-2024/podcasts/images/0/028e3ccf-bcdc-4bfb-a066-7a2381be4da4/cover.jpg?v=1"/>
    <itunes:explicit>no</itunes:explicit>
    <itunes:owner>
      <itunes:name>Python Out Loud!</itunes:name>
      <itunes:email>PythonOutLoud@gmail.com</itunes:email>
    </itunes:owner>
<itunes:category text="Technology"/>
<itunes:category text="Education">
  <itunes:category text="How To"/>
</itunes:category>
<itunes:category text="Education"/>
<item>
  <title>Episode 1: fizz_buzz (and find out why 1,485,294 is divisible by 3)</title>
  <link>https://www.pythonoutloud.com/1</link>
  <guid isPermaLink="false">f5965a71-96ec-4ec5-9f1a-5119bf1f071d</guid>
  <pubDate>Sun, 18 Feb 2018 22:00:00 -0800</pubDate>
  <author>Python Out Loud!</author>
  <enclosure url="https://aphid.fireside.fm/d/1437767933/028e3ccf-bcdc-4bfb-a066-7a2381be4da4/f5965a71-96ec-4ec5-9f1a-5119bf1f071d.mp3" length="16108252" type="audio/mpeg"/>
  <itunes:episodeType>full</itunes:episodeType>
  <itunes:author>Python Out Loud!</itunes:author>
  <itunes:subtitle>In Episode 1, we discuss the infamous Fizz Buzz programming challenge, including the origins of its name, the math involved, and its merits as a teaching tool for non-programmers. Show notes at pythonoutloud.com/1</itunes:subtitle>
  <itunes:duration>16:07</itunes:duration>
  <itunes:explicit>no</itunes:explicit>
  <itunes:image href="https://media24.fireside.fm/file/fireside-images-2024/podcasts/images/0/028e3ccf-bcdc-4bfb-a066-7a2381be4da4/episodes/f/f5965a71-96ec-4ec5-9f1a-5119bf1f071d/cover.jpg?v=1"/>
  <description>&lt;p&gt;&lt;a href="http://pythonoutloud.com/1" target="_blank" rel="nofollow noopener"&gt;Episode 1 Show Notes&lt;/a&gt;: &lt;a href="http://pythonoutloud.com/1" target="_blank" rel="nofollow noopener"&gt;pythonoutloud.com/1&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;These show note were written on the Shinano Train, on Kevin's smartphone, steaming toward the Snow Monkey Park in Nagano, Japan.&lt;/p&gt;

&lt;p&gt;In Episode 1, we discuss the infamous programming challenge known as FizzBuzz (no space), Fizz Buzz (with a space), or fizz_buzz (in PEP8-friendly syntax). We start off with its origin story, a math game used to teach children division. We then debate whether sitting around in a circle and taking turns saying “one, two, fizz, four, buzz, ...” is as fun in the digital age.&lt;/p&gt;

&lt;p&gt;Even less fun? Fizz Buzz's reputation as a job interview question. For more about this version, see the well-known blog post by Jeff Atwood at &lt;a href="https://blog.codinghorror.com/why-cant-programmers-program/" target="_blank" rel="nofollow noopener"&gt;https://blog.codinghorror.com/why-cant-programmers-program/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We're still not sure whether Fizz Buzz, or any other math-heavy question, is suitable for determining someone's capacity as a programmer. But as a learning tool, Fizz Buzz does provide a compact way of demonstrating a wide range of programming topics, including variables, conditionals, and loops. The only downside is also needing to learn modular arithmetic: &lt;a href="https://nrich.maths.org/4350" target="_blank" rel="nofollow noopener"&gt;https://nrich.maths.org/4350&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And if you need even more math in your Fizz Buzz solution, look no further than this blog post by Joel Grus: &lt;a href="http://joelgrus.com/2016/05/23/fizz-buzz-in-tensorflow/" target="_blank" rel="nofollow noopener"&gt;http://joelgrus.com/2016/05/23/fizz-buzz-in-tensorflow/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Rounding out the episode, we share some project updates, including Kevin's recent Medium article on "Automating Surveys with Python, Qualtrics API and Windows Task Scheduler": &lt;a href="https://medium.com/@changkevin/automating-surveys-with-python-qualtrics-api-and-windows-task-scheduler-4bffc58726d7" target="_blank" rel="nofollow noopener"&gt;https://medium.com/@changkevin/automating-surveys-with-python-qualtrics-api-and-windows-task-scheduler-4bffc58726d7&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Neither of us is affiliated with Qualtrics in any way, but we did publish a qualtrics-mailer package on PyPI a few months ago: &lt;a href="https://pypi.python.org/pypi/qualtrics-mailer/0.1" target="_blank" rel="nofollow noopener"&gt;https://pypi.python.org/pypi/qualtrics-mailer/0.1&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This episode features the song "Happy Ukulele" by &lt;a href="http://freemusicarchive.org/music/Scott_Holmes/" target="_blank" rel="nofollow noopener"&gt;Scott Holmes&lt;/a&gt; and the songs "And So Then", "Curiousity", "Manhattan By Moonlight" and "Puzzle Pieces" by &lt;a href="http://freemusicarchive.org/music/Lee_Rosevere/" target="_blank" rel="nofollow noopener"&gt;Lee Rosevere&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thank you for your support, and stay tuned for Episode 2. We plan to continue discussing problem solving in Python, focusing on &lt;a href="http://www.pythonchallenge.com/" target="_blank" rel="nofollow noopener"&gt;http://www.pythonchallenge.com/&lt;/a&gt;.&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;If you’re still reading, there's a statistically significant chance you want to help us build a community and support our cause! If our prediction is correct, please visit &lt;a href="http://pythonoutloud.com/donate" target="_blank" rel="nofollow noopener"&gt;pythonoutloud.com/donate&lt;/a&gt;. We want Python Out Loud to be community driven and non-profit oriented, which is why we pledge to be transparent and donate anything in excess of our operating expenses to the Python Software Foundation (PSF). For just $3, we'll even mail you a limited-edition Python Out Loud sticker!&lt;/p&gt;

&lt;hr&gt;
</description>
  <content:encoded>
    <![CDATA[<p><a href="http://pythonoutloud.com/1" rel="nofollow">Episode 1 Show Notes</a>: <a href="http://pythonoutloud.com/1" rel="nofollow">pythonoutloud.com/1</a></p>

<p>These show note were written on the Shinano Train, on Kevin&#39;s smartphone, steaming toward the Snow Monkey Park in Nagano, Japan.</p>

<p>In Episode 1, we discuss the infamous programming challenge known as FizzBuzz (no space), Fizz Buzz (with a space), or fizz_buzz (in PEP8-friendly syntax). We start off with its origin story, a math game used to teach children division. We then debate whether sitting around in a circle and taking turns saying “one, two, fizz, four, buzz, ...” is as fun in the digital age.</p>

<p>Even less fun? Fizz Buzz&#39;s reputation as a job interview question. For more about this version, see the well-known blog post by Jeff Atwood at <a href="https://blog.codinghorror.com/why-cant-programmers-program/" rel="nofollow">https://blog.codinghorror.com/why-cant-programmers-program/</a></p>

<p>We&#39;re still not sure whether Fizz Buzz, or any other math-heavy question, is suitable for determining someone&#39;s capacity as a programmer. But as a learning tool, Fizz Buzz does provide a compact way of demonstrating a wide range of programming topics, including variables, conditionals, and loops. The only downside is also needing to learn modular arithmetic: <a href="https://nrich.maths.org/4350" rel="nofollow">https://nrich.maths.org/4350</a></p>

<p>And if you need even more math in your Fizz Buzz solution, look no further than this blog post by Joel Grus: <a href="http://joelgrus.com/2016/05/23/fizz-buzz-in-tensorflow/" rel="nofollow">http://joelgrus.com/2016/05/23/fizz-buzz-in-tensorflow/</a></p>

<p>Rounding out the episode, we share some project updates, including Kevin&#39;s recent Medium article on &quot;Automating Surveys with Python, Qualtrics API and Windows Task Scheduler&quot;: <a href="https://medium.com/@changkevin/automating-surveys-with-python-qualtrics-api-and-windows-task-scheduler-4bffc58726d7" rel="nofollow">https://medium.com/@changkevin/automating-surveys-with-python-qualtrics-api-and-windows-task-scheduler-4bffc58726d7</a></p>

<p>Neither of us is affiliated with Qualtrics in any way, but we did publish a qualtrics-mailer package on PyPI a few months ago: <a href="https://pypi.python.org/pypi/qualtrics-mailer/0.1" rel="nofollow">https://pypi.python.org/pypi/qualtrics-mailer/0.1</a></p>

<p>This episode features the song &quot;Happy Ukulele&quot; by <a href="http://freemusicarchive.org/music/Scott_Holmes/" rel="nofollow">Scott Holmes</a> and the songs &quot;And So Then&quot;, &quot;Curiousity&quot;, &quot;Manhattan By Moonlight&quot; and &quot;Puzzle Pieces&quot; by <a href="http://freemusicarchive.org/music/Lee_Rosevere/" rel="nofollow">Lee Rosevere</a>.</p>

<p>Thank you for your support, and stay tuned for Episode 2. We plan to continue discussing problem solving in Python, focusing on <a href="http://www.pythonchallenge.com/" rel="nofollow">http://www.pythonchallenge.com/</a>.</p>

<hr>

<p>If you’re still reading, there&#39;s a statistically significant chance you want to help us build a community and support our cause! If our prediction is correct, please visit <a href="http://pythonoutloud.com/donate" rel="nofollow">pythonoutloud.com/donate</a>. We want Python Out Loud to be community driven and non-profit oriented, which is why we pledge to be transparent and donate anything in excess of our operating expenses to the Python Software Foundation (PSF). For just $3, we&#39;ll even mail you a limited-edition Python Out Loud sticker!</p>

<hr>]]>
  </content:encoded>
  <itunes:summary>
    <![CDATA[<p><a href="http://pythonoutloud.com/1" rel="nofollow">Episode 1 Show Notes</a>: <a href="http://pythonoutloud.com/1" rel="nofollow">pythonoutloud.com/1</a></p>

<p>These show note were written on the Shinano Train, on Kevin&#39;s smartphone, steaming toward the Snow Monkey Park in Nagano, Japan.</p>

<p>In Episode 1, we discuss the infamous programming challenge known as FizzBuzz (no space), Fizz Buzz (with a space), or fizz_buzz (in PEP8-friendly syntax). We start off with its origin story, a math game used to teach children division. We then debate whether sitting around in a circle and taking turns saying “one, two, fizz, four, buzz, ...” is as fun in the digital age.</p>

<p>Even less fun? Fizz Buzz&#39;s reputation as a job interview question. For more about this version, see the well-known blog post by Jeff Atwood at <a href="https://blog.codinghorror.com/why-cant-programmers-program/" rel="nofollow">https://blog.codinghorror.com/why-cant-programmers-program/</a></p>

<p>We&#39;re still not sure whether Fizz Buzz, or any other math-heavy question, is suitable for determining someone&#39;s capacity as a programmer. But as a learning tool, Fizz Buzz does provide a compact way of demonstrating a wide range of programming topics, including variables, conditionals, and loops. The only downside is also needing to learn modular arithmetic: <a href="https://nrich.maths.org/4350" rel="nofollow">https://nrich.maths.org/4350</a></p>

<p>And if you need even more math in your Fizz Buzz solution, look no further than this blog post by Joel Grus: <a href="http://joelgrus.com/2016/05/23/fizz-buzz-in-tensorflow/" rel="nofollow">http://joelgrus.com/2016/05/23/fizz-buzz-in-tensorflow/</a></p>

<p>Rounding out the episode, we share some project updates, including Kevin&#39;s recent Medium article on &quot;Automating Surveys with Python, Qualtrics API and Windows Task Scheduler&quot;: <a href="https://medium.com/@changkevin/automating-surveys-with-python-qualtrics-api-and-windows-task-scheduler-4bffc58726d7" rel="nofollow">https://medium.com/@changkevin/automating-surveys-with-python-qualtrics-api-and-windows-task-scheduler-4bffc58726d7</a></p>

<p>Neither of us is affiliated with Qualtrics in any way, but we did publish a qualtrics-mailer package on PyPI a few months ago: <a href="https://pypi.python.org/pypi/qualtrics-mailer/0.1" rel="nofollow">https://pypi.python.org/pypi/qualtrics-mailer/0.1</a></p>

<p>This episode features the song &quot;Happy Ukulele&quot; by <a href="http://freemusicarchive.org/music/Scott_Holmes/" rel="nofollow">Scott Holmes</a> and the songs &quot;And So Then&quot;, &quot;Curiousity&quot;, &quot;Manhattan By Moonlight&quot; and &quot;Puzzle Pieces&quot; by <a href="http://freemusicarchive.org/music/Lee_Rosevere/" rel="nofollow">Lee Rosevere</a>.</p>

<p>Thank you for your support, and stay tuned for Episode 2. We plan to continue discussing problem solving in Python, focusing on <a href="http://www.pythonchallenge.com/" rel="nofollow">http://www.pythonchallenge.com/</a>.</p>

<hr>

<p>If you’re still reading, there&#39;s a statistically significant chance you want to help us build a community and support our cause! If our prediction is correct, please visit <a href="http://pythonoutloud.com/donate" rel="nofollow">pythonoutloud.com/donate</a>. We want Python Out Loud to be community driven and non-profit oriented, which is why we pledge to be transparent and donate anything in excess of our operating expenses to the Python Software Foundation (PSF). For just $3, we&#39;ll even mail you a limited-edition Python Out Loud sticker!</p>

<hr>]]>
  </itunes:summary>
</item>
  </channel>
</rss>
