Python Interviews
Driscoll: So how did you end up becoming …more ...
Driscoll: So how did you end up becoming …more ...
See https://www.packtpub.com/web-development/python-interviews I'm honored. I'll be studying what the other folks have to say in here. Being in the Python community means respecting other's views. And that means understanding them. This looks like fun because it isn't *deeply* technical, it's about people and technology.
more ...Recent publications elsewhere: Spec to Gherkin to Code
more ...Tweet:
more ...![]()
Raymond Hettinger(@raymondh)
12/15/17, 11:40 AM https://twitter.com/raymondh/status/941709626545864704?refsrc=email&s=11
#python news: 😀
@gvanrossum just pronounced that dicts are now guaranteed to retain insertion order. This is the end of a long journey.
See https://www.slideshare.net/ITRevolution/does-sfo-2016-topo-pal-devops-at-capital-one for the 16 gates that separate a good idea from secure, productive use of software. While a lot of DevOps folks like the idea, when it comes to implementing it for Python apps, they get confused.
The confusion seems to stem from Python's …
more ...Adding type hints is easy and fun. Seriously. It's not a lot of work.
Until.
def null_aware_func(x): if x is None: return x return 2.2*x**1.05
This is …
more ...In a way, this is about an epic fail attempting copy-and-paste coding. But really, this is about thinking outside the box. The issue -- to me -- comes from failing to see the box. Here's the body of the email, edited slightly.
more ..."...how determine when a file has completed downloading. It would …