New blog entry: Advanced Python Course major updates
https://t.co/3reXO8tZyY
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 ...
"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.
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.
https://t.co/FOVwx9bj7f
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.
https://t.co/5YTd9eLoHH
Part 3: TLS and Networking
Much of our security is network security from TLS. We now know when, how and why to use TLS. Plus look at the request->response cycle of HTTP, the abstraction layer developers work at, and the security issues around networking.
https://t.co/dz3xqPQYGQ
The OSI has published my articles:
"The Absolute Minimum Every Python Web Application Developer Must Know About Security"
Part 1: Essential Web Security
The Defence in Depth approach, important security principles, OWASP Top 10, CVEs, tooling, etc...
https://t.co/ymhXr2GFIJ
Part 2: Security Cryptography Algorithms, a Guide
Cryptography algorithms, using the cryptography library and the Python standard library. Hashing, encryption, key exchange protocols and public/private key signature algorithms with their use cases.
https://t.co/O9eSSX6KY6
#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
...
Object Oriented Theory with Python (2 day course)
https://t.co/Ll51yKX27f
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.
Python Knowledge Sharing Videos
https://t.co/IIR5hE1w15
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.
Essential Python Web Security
https://t.co/ymhXr2GFIJ
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".
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.
#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.
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)...