home.social

Search

494 results for “pamelafox”

  1. I wrote up my 2026 experience: blog.pamelafox.org/2026/05/pyc
    (you can just scroll through the pics, it got kind of long - what a week!)

  2. Just presented at EduSummit

    "Your slides, but faster:
    Building an AI-powered presentation workflow"

    pamelafox.github.io/ai-powered
    Tips: Use RevealJS, ASCII mockups, audits, agent skills

  3. @pamelafox 's prez about slides with agents at was compelling as always

  4. Slides from my talk:
    "Just because AI can write your tests...should it?"
    pamelafox.github.io/my-py-talk

  5. Getting ready for my 2pm talk at : Testing Flask and Quart Apps with Playwright

    Room 317, come on by!!
    pamelafox.github.io/my-py-talk

  6. @pamelafox Black 25.1 made mostly similar changes to @pillow, plus adding a few trailing commas and trimming some whitespace from a docstring:

    github.com/python-pillow/Pillo

    Smaller projects (that I've checked so far) had no change.

    #Python #Black #formatter

  7. @pamelafox Black 25.1 made mostly similar changes to @pillow, plus adding a few trailing commas and trimming some whitespace from a docstring:

    github.com/python-pillow/Pillo

    Smaller projects (that I've checked so far) had no change.

    #Python #Black #formatter

  8. @pamelafox Black 25.1 made mostly similar changes to @pillow, plus adding a few trailing commas and trimming some whitespace from a docstring:

    github.com/python-pillow/Pillo

    Smaller projects (that I've checked so far) had no change.

    #Python #Black #formatter

  9. @pamelafox Black 25.1 made mostly similar changes to @pillow, plus adding a few trailing commas and trimming some whitespace from a docstring:

    github.com/python-pillow/Pillo

    Smaller projects (that I've checked so far) had no change.

    #Python #Black #formatter

  10. @pamelafox Black 25.1 made mostly similar changes to @pillow, plus adding a few trailing commas and trimming some whitespace from a docstring:

    github.com/python-pillow/Pillo

    Smaller projects (that I've checked so far) had no change.

    #Python #Black #formatter

  11. @pamelafox I wrote "coroutine" 469 times in Fluent Python Second Edition.

    The main chapter about asynchronous programming is framework-agnostic.

    The examples use , , and , to show that `async/await` are not tied to a specific runtime event loop or library.

    oreilly.com/library/view/fluen

  12. @pamelafox Wow, that's an interesting troubleshooting journey! 🔍🐳 It's amazing how a simple 'docker system prune' can work wonders and resolve the issue. Thanks for sharing your experience! #DockerTroubleshooting #TechFixes #sarcasm #punintended

  13. @pamelafox Wow, that's an interesting troubleshooting journey! 🔍🐳 It's amazing how a simple 'docker system prune' can work wonders and resolve the issue. Thanks for sharing your experience! #DockerTroubleshooting #TechFixes #sarcasm #punintended

  14. @pamelafox Wow, that's an interesting troubleshooting journey! 🔍🐳 It's amazing how a simple 'docker system prune' can work wonders and resolve the issue. Thanks for sharing your experience! #DockerTroubleshooting #TechFixes #sarcasm #punintended

  15. @pamelafox Wow, that's an interesting troubleshooting journey! 🔍🐳 It's amazing how a simple 'docker system prune' can work wonders and resolve the issue. Thanks for sharing your experience! #DockerTroubleshooting #TechFixes #sarcasm #punintended

  16. @pamelafox Wow, that's an interesting troubleshooting journey! 🔍🐳 It's amazing how a simple 'docker system prune' can work wonders and resolve the issue. Thanks for sharing your experience! #DockerTroubleshooting #TechFixes #sarcasm #punintended

  17. @pamelafox @simon As a non-native English speaker, I really do appreciate tools like this. #DeepLWrite has been tremendously useful for me (although I'm not sure if it necessarily fits under the LLM umbrella).

  18. I talked about using Bicep (infrastructure-as-code) to deploy PostgreSQL servers to Azure at today. Slides @ pamelafox.github.io/my-py-talk
    Recording up soon!

  19. Just presented "1-click deploys of Python Web Apps to Azure" at Python Web Conf. Thanks to attendees for great engagement and questions!

    Slides @ pamelafox.github.io/my-py-talk

  20. My latest sample uses with Flask Blueprints, Flask-SQLAlchemy with PostgreSQL, pytest, ruff, black, pre-commit, Github actions, plus Docker for local dev and deployment to Azure Container Apps.

    Code @
    github.com/pamelafox/flask-sur

  21. I gave a workshop today about containerizing web apps, both for local development and deployment.

    My first time teaching containers! As usual, teaching is helping me to understand better.

    pamelafox.github.io/my-py-talk

  22. @diazona @pamelafox

    This "#reloader" functionality is common with web frameworks/servers, but I'm not sure how well it would work in the context of a long-running #process. If some of my code has an instance of a class in a module that gets reloaded, and the class definition changes ... what then?

    I can't really think of a sensible enough way for it to work for it to be useful.

    </0.02>

  23. RE: fosstodon.org/@pamelafox/11660

    Thank you Pamela for helping spread the word about DjangoCon US 2026!

  24. @com @avolkov @morgaelyn @pamelafox I use a unique virtual environment for each Python project and use `pip freeze > requirements.txt` inside that venv to commit the dependencies. Am I missing anything compared to this `pip-tools compile`? 🤔

    #venv #Python #pip #requirementstxt