Michael Foord (@voidspace) 's Twitter Profile
Michael Foord

@voidspace

Python Trainer & Consultant. Author of unittest.mock. PSF Fellow. A hoopy frood. Python Core Dev. GenX. Also @mfoord He/him.

ID: 11486902

linkhttps://agileabstractions.com calendar_today24-12-2007 20:33:38

54,54K Tweet

8,8K Followers

1,1K Following

Michael Foord (@voidspace) 's Twitter Profile Photo

I worked for a large firm where most of the developers thought they did agile because they did Scrum. Despite the six month release cycle with three week planning phase at the start of each release cycle (and the death march at the end)...

I worked for a large firm where most of the developers thought they did agile because they did Scrum. Despite the six month release cycle with three week planning phase at the start of each release cycle (and the death march at the end)...
Raymond Hettinger (@raymondh) 's Twitter Profile Photo

#Python can be incredibly expressive. Here is a beautiful snippet for computing a mode from a list of unhashable, unsortable inputs. max(data, key=data.count) The running time is quadratic so only use this with smallish inputs.

Ruth Wong (@ruthgracewong) 's Twitter Profile Photo

SIDS risk goes from 11 to 3 per 10,000 when parents sleep babies on their backs. So about 1430 parents need to sleep their baby on their back to save one baby's life, totalling *48620* hours of parental sleep lost per baby saved.

Michael Foord (@voidspace) 's Twitter Profile Photo

Essential Python Web Security opensource.net/essential-pyth… First part of a series: "The Absolute Minimum Every Python Web Application Developer Must Know About Security" This is a rigorous look at Python web application security. "Full Stack Security: The Defence in Depth Approach".

Michael Foord (@voidspace) 's Twitter Profile Photo

Python Knowledge Sharing Videos agileabstractions.com/python-knowled… Seven (so far) one hour long videos on core Python language topics like the core object model, closures, decorators and generators plus sessions on testing and concurrency.

Michael Foord (@voidspace) 's Twitter Profile Photo

Object Oriented Theory with Python (2 day course) agileabstractions.com/oopwithpython/ A practical course, now taught several times for the BBC. An excellent course for data scientists, devops engineers and those self taught with Python looking to move beyond scripting into programming.

Raymond Hettinger (@raymondh) 's Twitter Profile Photo

#Python tip: Use "pass" to explicitly mean "do nothing" and "..." for "more code should go here." def consume(iterator): for _ in iterator: pass def stub(x, y, z): # Someday, I will get to this ...

Michael Foord (@voidspace) 's Twitter Profile Photo

Python is TIOBE Language of the Year in 2024 January Headline: Python is TIOBE's programming language of the year 2024! This award is given to the programming language with the highest increase in ratings. Python gained a whopping 9.3% in 2024. tiobe.com/tiobe-index/

Michael Foord (@voidspace) 's Twitter Profile Photo

New Python Knowledge Share Video Online: List Comprehensions, Generator Expressions & Function Signatures This one hour session is on working with data using enumerate, zip plus list comprehensions, generator expressions, and function signatures. agileabstractions.com/new-video-list…

New Python Knowledge Share Video Online: List Comprehensions, Generator Expressions & Function Signatures  

This one hour session is on working with data using enumerate, zip plus list comprehensions, generator expressions, and function signatures.

agileabstractions.com/new-video-list…
Michael Foord (@voidspace) 's Twitter Profile Photo

"I opened a book and in I strode. Now nobody can find me. I've left my chair, my house, my road, My town and my world behind me." The Gruffalo creator's 3.1 million units sold in 2024 means she beats JK to claim the record for bestselling author since records began.

"I opened a book and in I strode. Now nobody can find me. I've left my chair, my house, my road, My town and my world behind me."

The Gruffalo creator's 3.1 million units sold in 2024 means she beats JK to claim the record for bestselling author since records began.
Michael Foord (@voidspace) 's Twitter Profile Photo

New blog entry: Advanced Python Course major updates agileabstractions.com/advanced-pytho… Over the last year I've updated my Advanced Python course to be based on a series of modules that can more easily be adapted to the needs of any team. There's a lot more advanced material and ...