From e01fbc8b93f29f9d3a2b3a7301611f8593939b68 Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Sun, 14 Sep 2014 14:40:13 -0700 Subject: [PATCH 1/2] Edits introduction and welcome --- part-1.ipynb | 187 +++++++++++++++++++++++++++++++-------------------- 1 file changed, 113 insertions(+), 74 deletions(-) diff --git a/part-1.ipynb b/part-1.ipynb index 2711c36..469073f 100644 --- a/part-1.ipynb +++ b/part-1.ipynb @@ -22,18 +22,8 @@ "level": 1, "metadata": {}, "source": [ - "Introduction to Python Workshop" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A programming community outreach workshop, brought to you by the generous volunteers from:\n", - "\n", - "* [PyLadies San Diego](www.meetup.com/sd-pyladies/)\n", - "* [San Diego Python User Group](www.meetup.com/pythonsd/)\n", - "* [Inland Empire Pyladies](www.meetup.com/iepyladies/)" + "Introduction to Python Workshop\n", + "Part 1" ] }, { @@ -41,23 +31,7 @@ "level": 2, "metadata": {}, "source": [ - "Welcome!" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Workshop kickoff\n", - "\n", - "Special thanks to the sponsors of this free workshop:\n", - "* Ansir Innovation Center\n", - "* Python Software Foundation\n", - "\n", - "Introductions: who's here to teach and help you today.\n", - "* Name, 2-4 sentences about yourself\n", - "\n", - "We are all volunteers. If you enjoy this workshop and decide to continue with Python programming, we encourage you to volunteer at the next Intro to Python Workshop." + "Welcome again!" ] }, { @@ -68,25 +42,6 @@ "The Game Plan" ] }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Intro:\n", - "* Setup help and check-offs\n", - "* Why program with Python?\n", - "\n", - "First steps:\n", - "* Interactive lecture\n", - "* Practice\n", - "\n", - "Lists and loops:\n", - "* Interactive lecture\n", - "* Practice\n", - "\n", - "Wrap-up and next steps" - ] - }, { "cell_type": "heading", "level": 2, @@ -152,7 +107,6 @@ "```\n", "\n", "Once you've had your setup checked:\n", - "* Visit http://codeacademy.com and create an account, or sign in if you already have an account. This is very important: you will need this today.\n", "* While waiting, introduce yourself to at least 3 of the people sitting near you. Tell them your name, something about yourself, and why you decided to come to today's workshop." ] }, @@ -171,15 +125,7 @@ "After completing these steps, you should:\n", "* Have Python installed\n", "* Be able to enter and exit Python\n", - "* Have a Codeacademy account\n" - ] - }, - { - "cell_type": "heading", - "level": 6, - "metadata": {}, - "source": [ - "5 min Why Python is so great? (7 slides) while audience checks config" + "\n" ] }, { @@ -187,7 +133,7 @@ "level": 6, "metadata": {}, "source": [ - "10 min Let's get started with the interactive lecture" + "Let's get started with the interactive lecture" ] }, { @@ -245,7 +191,17 @@ ], "language": "python", "metadata": {}, - "outputs": [] + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 10, + "text": [ + "2" + ] + } + ], + "prompt_number": 10 }, { "cell_type": "code", @@ -259,13 +215,13 @@ { "metadata": {}, "output_type": "pyout", - "prompt_number": 1, + "prompt_number": 11, "text": [ "0" ] } ], - "prompt_number": 1 + "prompt_number": 11 }, { "cell_type": "markdown", @@ -274,6 +230,46 @@ "Whole number 1 divided by whole number 2" ] }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "3 / 2" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 12, + "text": [ + "1" + ] + } + ], + "prompt_number": 12 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "15 / 2" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 20, + "text": [ + "7" + ] + } + ], + "prompt_number": 20 + }, { "cell_type": "code", "collapsed": false, @@ -302,7 +298,17 @@ ], "language": "python", "metadata": {}, - "outputs": [] + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 3, + "text": [ + "4" + ] + } + ], + "prompt_number": 3 }, { "cell_type": "code", @@ -379,7 +385,17 @@ ], "language": "python", "metadata": {}, - "outputs": [] + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 6, + "text": [ + "0" + ] + } + ], + "prompt_number": 6 }, { "cell_type": "code", @@ -389,7 +405,17 @@ ], "language": "python", "metadata": {}, - "outputs": [] + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 7, + "text": [ + "0.5" + ] + } + ], + "prompt_number": 7 }, { "cell_type": "markdown", @@ -409,7 +435,17 @@ ], "language": "python", "metadata": {}, - "outputs": [] + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 8, + "text": [ + "int" + ] + } + ], + "prompt_number": 8 }, { "cell_type": "code", @@ -419,7 +455,17 @@ ], "language": "python", "metadata": {}, - "outputs": [] + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 9, + "text": [ + "float" + ] + } + ], + "prompt_number": 9 }, { "cell_type": "markdown", @@ -1143,13 +1189,6 @@ "metadata": {}, "outputs": [] }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Questions? 47 min mark" - ] - }, { "cell_type": "markdown", "metadata": {}, From 735111b739060f33dd389e7fc55cc6a78d38a4d3 Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Sun, 14 Sep 2014 15:13:04 -0700 Subject: [PATCH 2/2] Adds introduction and thank you of our sponsors, volunteers, etc. --- part-1.ipynb | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/part-1.ipynb b/part-1.ipynb index 469073f..c07003d 100644 --- a/part-1.ipynb +++ b/part-1.ipynb @@ -34,6 +34,54 @@ "Welcome again!" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We want to thank the many people that have made this workshop possible.\n", + "\n", + "First, the generosity of our sponsors have provided facilities for the workshop, food and refreshments, and travel assistance for our guest speakers. Please give a hand to our fabulous sponsors:\n", + "- [Ansir Innovation Center](http://ansirsd.com/)\n", + "- [Python Software Foundation](https://www.python.org/psf/)\n", + "\n", + "We are committed to offering a positive and productive workshop for you. We are proud to be an [OpenHatch](https://openhatch.org) affiliated event. OpenHatch is a non-profit that helps people become contributors to free and open source software. OpenHatch is a friendly community and can help you find a suitable project if you are interested in contributing.\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "A programming community outreach workshop, brought to you by the generous volunteers from:\n", + "\n", + "- [PyLadies San Diego](www.meetup.com/sd-pyladies/)\n", + "- [San Diego Python User Group](www.meetup.com/pythonsd/)\n", + "- [Inland Empire Pyladies](www.meetup.com/iepyladies/)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Introduction of who is here to teach and help you today.**\n", + "- Audrey\n", + "- Danny\n", + "- Rise\n", + "- Trey\n", + "- Jim\n", + "- Others that are helping on day of event\n", + "- Carol\n", + "\n", + "Please take a moment to share 2-4 sentences about yourself\n", + "\n", + "We are all volunteers. If you enjoy this workshop and decide to continue with Python programming, we encourage you to volunteer at the next Intro to Python Workshop.\n", + "\n", + "We are also very thankful that you have chosen to spend the better part of your Saturday sharing Python with us. It's a language that we have fun using to make all sorts of projects and a thoughtful, accepting, considerate, and fun community that we are glad to take part in.\n", + "\n", + "And now...let's get going with some Python development!\n", + " " + ] + }, { "cell_type": "heading", "level": 2,