PAST MEETINGS

Thu, Dec 08 2022 at 06:30 PM at Zoro

SQL
(5 Minutes)
By: Heather White
Experience Level: Novice

SQL is a declarative, recursive language.  For this year's Ultimate Language Shootout, I'm going to talk about how SQL is the best language that's not Python. 

Ultimate Language Shootout: R
(5 Minutes)
By: Natasha Polishchuk
Experience Level: Novice

In keeping with the proposed theme, I'd be happy to introduce R and compare/contrast it to Python. I'd like to talk especially about how well suited R is to Statistics, and how Pandas dataframes were inspired by R dataframes.  I've used both in my career as a data analyst and now data engineer, and initially prefered R though I've come around to the Python side.

Racket
(5 Minutes)
By: Joshua Herman
Experience Level: Novice

Contrasting the Python Programming language to Racket.

 

https://racket-lang.org

Ultimate Language Shootout: Craiyon, a language for generating pictures
(5 Minutes)
By: Phil Robare
Experience Level: Novice

Craiyon.com is a front end for a neural network that takes in free-form text and generates images.  It can be viewed as a "language" that "compiles" to produce a binary that is an image.  This is one future of programming.

When should you rewrite in Rust
(15 Minutes)
By: Adrian Garcia Badaracco
Experience Level: Intermediate

When does it make sense to use Rust? What are the top challanges a Python user will face when trying Rust for the first time?

40 Python enthusiasts attended this meeting.


Thu, Dec 01 2022 at 06:00 PM at Holiday Club

7 Python enthusiasts attended this meeting.


Thu, Nov 10 2022 at 06:30 PM at Foxtrot

Building Machine Learning Apps with Gradio
(25 Minutes)
By: Freddy Boulton
Experience Level: Novice
Slides Link

The best way to share machine learning models is through interactive web applications that let stakeholders try the models for themselves. By playing with the model through a graphical interface, stakeholders can develop an intuition for how the model works in a way that would be impossible by analyzing average performance metrics or hand-picked examples.

Building web applications for machine learning requires significant knowledge of web development (css, js) and web hosting which are not in the typical data scientist's tool box. 

In this talk, we will introduce a gradio, an open source python library for building and sharing machine learning applications entirely in python. 

Micropython wiggles a mustache
(20 Minutes)
By: Andrew Wingate
Experience Level: Novice

Show off a micropython framework for my mini mustached robot. It's the same robot the I showed the last time, but now it has code and works!

 

Topics include:
event loop

anyncio

state machines

synchronous event management

web hosted interface with repl like repl thing

Micropython turns on a light
(30 Minutes)
By: Carl Karsten
Experience Level: Novice

 

 

Last time I talked about Micropython I didn't show any code. 

This time I have code:

>>> from machine import Pin
>>> p=Pin("D13", Pin.OUT)
>>> p.value(1)

That turns on an LED.  We will talk about what that means, how it happens and the implications of this is the software that makes electronics happen.

There are a few more lines of the same nature: check the state of a switch gives is the I in IO.  For extra credit, we will ...

41 Python enthusiasts attended this meeting.


Thu, Nov 03 2022 at 06:00 PM at Integral Ad Science

2 Python enthusiasts attended this meeting.


Thu, Oct 13 2022 at 06:00 PM at SpotHero

What's new in Python 3.11
(20 Minutes)
By: Phil Robare
Experience Level: Intermediate

The Python core developers keep pushing out new functionality every six months.  Python 3.6 just went out of support and Python 3.11 is in pre-release.  This talk will look at the new features promised for 3.11 and maybe provide some opionated views on their usefulness or their potential to make Python code harder to understand.

Life without pip install 😱
(10 Minutes)
By: Aly Sivji
Experience Level: Novice
Slides Link

The world has lost the ability to pip install... what do we do?!?! This talk explores a hypothetical Doomsday Scenario where the Python Package Index has gone offline. We examine three ways we can import libraries we have not installed.

After this talk, attendees will have a better understanding of what happens when a package is imported into Python.

Introduction to dependency injection and testable code
(30 Minutes)
By: Adrian Garcia Badaracco
Experience Level: Intermediate
Slides Link

Isn't dependency injection a Java thing? Not really!

Have you used Pytest? Fixtures are a form of dependency injection. What about just passing in file-like object to `json.load`? Also dependency injection! There's also FastAPI, one of the most popular Python web frameworks now days, that has depedendency injection as one of it's key features.

You see, dependency injection is very widespread in the Python world, it just looks so natual because of lack of a `new` keyword and first-class function support that you might not even know you are using the technique. Nonetheless it can help to be aware of the theory and jargon around it, which is what we'll explore in this talk by way of a joint refactoring exercise.

41 Python enthusiasts attended this meeting.