Pycon 2014: A Preview
Dec 16, 2013

Pycon 2014 Logo

After my successful talks at PyData Boston in July, I decided to submit one of my talks to Pycon. I’m happy to say my talk was accepted! This will be my first Pycon and I’m really excited! Montréal is an amazing city with some awesome cuisine (Un poutine végétarien s'il vous plaît) and the best micro-brew pubs I’ve ever been to (sorry Philly)! Besides the awesome location, I’m really psyched about some of the talks this year! Here’s some of my favorites.

Discovering Python (David Beazley)

Looking for an entertaining way to learn about various built-in python libraries? Look no further! Imagine if you had access to python, but couldn’t install any 3rd party modules! Maybe this is you? If so, then you won’t want to miss this talk!

So, what happens when you lock a Python programmer in a secret vault containing 1.5 TBytes of C++ source code and no internet connection? Find out as I describe how I used Python as a secret weapon of “discovery” in an epic legal battle.

Enough Machine Learning to Make Hacker News Readable Again (Ned Jackson Lovely)

Machine Learning talk, `nuff said!

It’s inevitable that online communities will change, and that we’ll remember the community with a fondness that likely doesn’t accurately reflect the former reality. We’ll explore how we can take a set of articles from an online community and winnow out the stuff we feel is unworthy. We’ll explore some of the machine learning tools that are just a “pip install” away, such as scikit-learn and nltk.

Diving into Open Data with IPython Notebook & Pandas (Julia Evans)

I’m glad to see a Pandas talk at PyCon, even if it’s not being given by Wes Mckinney ;-).

I’ll walk you through Python’s best tools for getting a grip on data: IPython Notebook and pandas. I’ll show you how to read in data, clean it up, graph it, and draw some conclusions, using some open data about the number of cyclists on Montréal’s bike paths as an example.

The Sorry State of SSL (Hynek Schlawack)

These days it’s important not just to use encryption, but to also configure it properly. Having spent many hours reading about cyphers and theoretical attacks in the past, this looks like it should be a good talk even for coders who know something about security.

Those web pages with shiny lock icons boasting that your data is safe because of “256 bit encryption”? They are lying. In times of mass surveillance and commercialized Internet crime you should know why that’s the case. This talk will give you an overview that will help you to assess your personal security more realistically and to make your applications as secure as possible against all odds.

Ansible - Python-Powered Radically Simple IT Automation (Michael DeHaan)

Having experienced both puppet and chef I’m looking forward to learning more about this python alternative.

Learn about Ansible – a radically simple way to deploy applications, configure operating systems, and orchestrate IT operations including zero downtime rolling updates. Let’s bring about SkyNet faster.

Modern Web Services, Lessons Learned and Why REST is not the Best (Armin Ronacher)

Talk about writing APIs from the creator of Flask? Yes please!

A few years of experiences writing RESTful APIs, especially my experiences working for Fireteam’s online services. What worked, what did not work so well and about how to avoid making mistakes with REST.

Games for Science: Creating interactive psychology experiments in Python with Panda3D (Jessica Hamrick)

Applying games to science?! How can you lose?

Have you ever wanted to play video games while also contributing to science? In psychology experiments developed by myself and Peter Battaglia, participants are immersed in an interactive 3D world which is experimentally well-controlled, yet also extremely fun. This talk will explain how we created these “game-like” experiments in Python using the Panda3D video game engine.

Cache me if you can: memcached, caching patterns and best practices (Guillaume Ardaud)

Caching is an important tool for any developers toolkit. When to use memcache vs. a SQL database? This talk should help answer this question and more!

Memcached is a popular, blazing fast in-RAM key/object store mainly used in web applications (although it can be used in virtually any software). You will walk out of this talk with a solid understanding of memcached and what it does under the hood, and become familiar with several patterns and best practices for making the most of it in your own Python applications.

Postgres Performance for Humans (Craig Kerstiens)

Probably the most important tool in a developers toolkit is the database. Knowing how to manage your databases is an important skill (often learned when something starts to go wrong).

To many developers the database is a black box. You expect to be able to put data into your database, have it to stay there, and get it out when you query it… hopefully in a performant manner. When its not performant enough the two options are usually add some indexes or throw some hardware at it. We’ll walk through a bit of a clearer guide of how you can understand and manage DB performance.

Getting Started Testing (Ned Batchelder)

This talk looks like the end-all and be-all of Python testing talks. You’ll learn pretty much everything there is to know about testing Python code.

If you’ve never written tests before, you probably know you should, but view the whole process as a bureaucratic paperwork nightmare to check off on your ready-to-ship checklist. This is the wrong way to approach testing. Tests are a solution to a problem that is important to you: does my code work? I’ll show how Python tests are written, and why.

Technical on-boarding, training, and mentoring (Kate Heddleston)

After onboarding a few new devs myself, I know that I could use some guidance in this area. This talk looks like it should have some great take-aways.

This is a talk about how to make junior and new engineers into independent and productive members of your engineering team faster and cheaper. We will focus on python specific resources and libraries that will help you create a simple but effective on boarding program, and talk about case studies of companies that have had success using these techniques.

Comments