home.social

Search

76 results for “brianokken”

  1. @brianokken #pythonbytes

    So cool to that recursion joke referenced on the podcast. Missed the live broadcast and now kicking myself for missing it.

  2. @edcrypt @mammoth @MonaApp @brianokken @pythonbytes @phanpy just figured out if I share the web page and select Add to Home Screen, iOS presents the web page as a app anyway. Now I am happy and can continue testing the various clients.

  3. Setting up for a @pythonpeople with the awesome @brianokken 💃 Sporting a t-shirt, so hopefully there's a live stream...

    (In related news, did ask the kids not to scream about doing the chores, but not sure how well that's going 😬)

  4. @wsvincent makes total sense!
    I've come to rely kn @brianokken and @mkennedy systematic date-stamping of their episodes, maybe that's a feedback point for #DjangoChat? cc. @carlton

  5. Listening to the latest @pythonbytes episode and damn, hearing that @brianokken hadn't heard of #LibCST makes me think I should have brought that along for my own guest appearance in that show after all 😅

    I didn't because the topic search said it had been covered in episode 179 by Guido himself 😬

    Have found it quite helpful though to write some custom checks and mods to use with precommit on #OctoPrint, has made some cleanup a LOT faster together with #pyupgrade.

  6. It was great to see a LIVE-live stream recording of a Python Bytes episode at PyCon US 2023 🇺🇲🐍

    After listening to so many episodes of the Brian Okken and Michael Kennedy podcasts it was so nice to meet them in person 👥🎙️

    #PyCon #PyConUS #PythonBytes #Python #Podcast #PythonSpeakingTour

    CC @pythonbytes @brianokken @mkennedy @pycon @PyConUS

  7. It was great to see a LIVE-live stream recording of a Python Bytes episode at PyCon US 2023 🇺🇲🐍

    After listening to so many episodes of the Brian Okken and Michael Kennedy podcasts it was so nice to meet them in person 👥🎙️

    CC @pythonbytes @brianokken @mkennedy @pycon @PyConUS

  8. It was great to see a LIVE-live stream recording of a Python Bytes episode at PyCon US 2023 🇺🇲🐍

    After listening to so many episodes of the Brian Okken and Michael Kennedy podcasts it was so nice to meet them in person 👥🎙️

    #PyCon #PyConUS #PythonBytes #Python #Podcast #PythonSpeakingTour

    CC @pythonbytes @brianokken @mkennedy @pycon @PyConUS

  9. It was great to see a LIVE-live stream recording of a Python Bytes episode at PyCon US 2023 🇺🇲🐍

    After listening to so many episodes of the Brian Okken and Michael Kennedy podcasts it was so nice to meet them in person 👥🎙️

    #PyCon #PyConUS #PythonBytes #Python #Podcast #PythonSpeakingTour

    CC @pythonbytes @brianokken @mkennedy @pycon @PyConUS

  10. It was great to see a LIVE-live stream recording of a Python Bytes episode at PyCon US 2023 🇺🇲🐍

    After listening to so many episodes of the Brian Okken and Michael Kennedy podcasts it was so nice to meet them in person 👥🎙️

    #PyCon #PyConUS #PythonBytes #Python #Podcast #PythonSpeakingTour

    CC @pythonbytes @brianokken @mkennedy @pycon @PyConUS

  11. #Python Incremental #testing: Run Only What Changed

    If you changed one file, why run 500 tests?

    Incremental testing means running only the tests affected by your changes. It’s the same principle behind make: track dependencies and rebuild only what’s stale.

    This isn’t a new idea. pytest-incremental (2008) and testmon have been doing this for pytest. Rut brings it to unittest with a focus on simplicity and AI coding workflows.

    github.com/schettino72/rut
    @brianokken @pythonbytes