Show HN: Crash into Python
stephensugden.com
Show HN: Crash into Python
1–10 of 15 posts
Re: Show HN: Crash into Python
#2Re: Show HN: Crash into Python
#3A QA note: The text spills offscreen and the CSS doesn't allow me to make it readable in Chrome on a 13" MacBook Air:
Re: Show HN: Crash into Python
#4Re: Show HN: Crash into Python
#5Any chance the author can make a PDF or ePub version? I like to read it on my portable devices.
Edit: The titles link to normal HTML pages now.
Re: Show HN: Crash into Python
#6Great slides! A QA note: The text spills offscreen and the CSS doesn't allow me to make it readable in Chrome on a 13" MacBook Air: http://drktd.com/9JL2
Edit: Ah, it happens in full-screen. Too much text on that slide then. ;)
Edit 2: Tightened up the wording on that slide a bit. Should fit now.
Re: Show HN: Crash into Python
#7Bug:
birth_year[1] == 1341 # Raises an exception
should be either: birth_year[1] == 1341 # False
or: birth_year[1] = 1341 # Raises an exceptionRe: Show HN: Crash into Python
#8Re: Show HN: Crash into Python
#9Great documents for getting up to speed quickly! These are the kinds of tutorials I often miss: tutorials that assume that you are already a programmer and go fast. Well done :) Bug: birth_year[1] == 1341 # Raises an exception should be either: birth_year[1] == 1341 # False or: birth_year[1] = 1341 # Raises an exception