schmonz.com is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Search results for tag #Python

#agile boosted

[?]Alvin Ashcraft's Morning Dew » 🌐
@alvinashcraft.com@web.brid.gy

Dew Drop - July 13, 2026 (#4710)

Top Links
Better tools made Copilot code review worse. Here's how we actually improved it. (Napalys Klicius)
Betatalks, the Podcast Episode #134 - The Future of Software Development with AI Agents - with Burke Holland (Rick van den Bosch & Oscar van Tol)
Marketplace Ingestion MCP…

[?]Ellie » 🌐
@ellie@ellieayla.net

What are we using to package up Python application & dependencies into a single distributable file now?

I'm thinking of bundlers like RollupJS.

PEX? Zipapp? Docker image? Trying really dang hard to only use stdlib and shipping a boring wheel?

    #agile boosted

    [?]Alvin Ashcraft's Morning Dew » 🌐
    @alvinashcraft.com@web.brid.gy

    Dew Drop - July 10, 2026 (#4709)

    Top Links
    Modernize .NET applications in the GitHub Copilot app (Mika Dumont)
    GPT-5.6: Frontier intelligence that scales with your ambition and GPT-5.6 is now the preferred model in Microsoft 365 Copilot (OpenAI Team)
    3 GitHub Copilot automations every maintainer needs (Kayla Cin…

    #agile boosted

    [?]Alvin Ashcraft 🐿️ » 🌐
    @alvinashcraft@hachyderm.io

    [?]Leanpub » 🌐
    @leanpub@mastodon.social

    Feature Selection in Machine Learning by Soledad Galli, PhD is on sale on Leanpub! Its suggested price is $29.99; get it for $21.24 with this coupon: leanpub.com/feature-selection-

      [?]Test Double » 🌐
      @testdouble@mastodon.social

      Every Python dev has faced APIs that use camelCase or kebab-case while your codebase follows snake_case.

      The typical approach creates technical debt: either break Python naming conventions or write complex mapping logic that clutters your codebase.

      Pydantic's Field alias feature elegantly solves this: define external field names through aliases while keeping internal code perfectly Pythonic.

      Integration compatibility and clean code that's maintainable. 💚

        [?]Leanpub » 🌐
        @leanpub@mastodon.social

        asyncio from ground up by Ritesh Modi is free with a Leanpub Reader membership! Or you can buy it for $14.99! leanpub.com/asyncio

          #agile boosted

          [?]Alvin Ashcraft's Morning Dew » 🌐
          @alvinashcraft.com@web.brid.gy

          Dew Drop - July 6, 2026 (#4705)

          Top Links
          Azure SDK Release (June 2026) (Justin Bettencourt)
          Introducing Standalone UI SDKs: Choose Only What Your Application Needs (Vijayakumar)
          Should You Still Become a Software Engineer in 2026? (Jean Lee & Scott Hanselman)
          Run the Right AI Model for the Right Copilot Task —…

          [?]Bastian Greshake Tzovaras » 🌐
          @gedankenstuecke@scholar.social

          And some good insight on 's loss of conviviality: «Due to a combination of growing ecosystem complexity, growing corporate influence on development decisions, and the rise of a breaking-change version of Python (Python 3), the scientific Python ecosystem flipped from a stable infrastructure for research projects to an unstable software layer whose frequent breaking changes required researchers to invest more and more time just to keep their code in a usable state. Conviviality was lost.»

            [?]Leanpub » 🌐
            @leanpub@mastodon.social

            The Open Geospatial Python Series by Qiusheng Wu is the featured bundle of ebooks 📚 on Leanpub!

            Learn geospatial Python from the ground up to advanced GeoAI. Build real-world workflows for GIS, spatial data management, and AI-powered analysis.

            Link: leanpub.com/b/geopython

              [?]Leanpub » 🌐
              @leanpub@mastodon.social

              Python Quick Ref for JS Devs: A Side-by-Side ES6 & TypeScript to Python Reference by Samir Solanki is a new release on Leanpub!

              Stop translating Python in your head. Compare ES6/TypeScript and Python side by side and start writing Python with confidence.

              Link: leanpub.com/pythonquickref

                #agile boosted

                [?]Alvin Ashcraft 🐿️ » 🌐
                @alvinashcraft@hachyderm.io

                #agile boosted

                [?]Alvin Ashcraft's Morning Dew » 🌐
                @alvinashcraft.com@web.brid.gy

                Dew Drop - July 1, 2026 (#4702)

                Top Links
                React Native Windows v0.84 is here!! (Vineeth K, Vivek Khare & Sourav Chakraborty)
                MCP Beyond the Chat Window: Build Diagnostics in CI (Jan Krivanek & Yuliia Kovalova)
                Introducing Claude Sonnet 5 (Anthropic Team)
                GitHub Copilot now an Integrated Agent in JetBrains IDEs …

                [?]Ned Batchelder » 🌐
                @nedbat@hachyderm.io

                When thinking about lists vs tuples: lists can be varying lengths and the elements will be treated the same. Tuples are namedtuples without the names.

                nedbatchelder.com/blog/201608/

                  Glyph boosted

                  [?]Ryan Kennedy [he/him] » 🌐
                  @rckenned@hachyderm.io

                  Dear folks, what’s the most Python-ic way to insert into a dict such that overwrites cause an error?

                  There are ways to silently overwrite (d[key] = value, update(…), etc) and ways to silently drop overwrites (setdefault). But the only way to detect and hard reject an overwrite seems to be to pre-check if the key is present.

                  Maybe it’s my 25+ years of Java instincts, but the part of my brain that’s been traumatized by race conditions wants something more resilient. Do I just embrace the GIL here and let go of my instincts? My Java instincts want something like java.util.ConcurrentMap’s putIfAbsent(key, value) method.

                    #agile boosted

                    [?]Alvin Ashcraft's Morning Dew » 🌐
                    @alvinashcraft.com@web.brid.gy

                    Dew Drop - June 29, 2026 (#4700)

                    Top Links
                    Action Required: Migrate Your Copilot CLI MCP Config Away from .vscode/mcp.json and MCP for Beginners: Why Every AI Engineer and Developer Should Learn the Model Context Protocol (Lee Stott)
                    Migrating C# -> Microsoft Agent Framework (Jesse Liberty)
                    winapp CLI v0.4.0 Rel…

                    [?]Leanpub » 🌐
                    @leanpub@mastodon.social

                    LLM Quantization: From the Bits Up by Hatem M. is a new release on Leanpub!

                    Anyone can run INT4 and read off the accuracy drop. This book explains why that number is what it is — building every quantization method from scratch, breaking it on purpose, and measuring the result. Quantization, from the bits up.

                    Link: leanpub.com/llmquantization

                      [?]Python Software Foundation » 🌐
                      @ThePSF@fosstodon.org

                      Big news for the packaging world: The inaugural Python Packaging Council election is coming up soon! The council will be the technical decision-making body for Python packaging specs, coordinating across tools, teams, and the wider community. Learn more on the PSF blog:
                      pyfound.blogspot.com/2026/06/p

                        [?]Trey Hunner 🐍 » 🌐
                        @treyhunner@mastodon.social

                        “Python will be happy with it, but other programmers will probably find it pretty confusing.”

                        Read more 👉 pym.dev/unnecessary-parenthese

                          #agile boosted

                          [?]Alvin Ashcraft's Morning Dew » 🌐
                          @alvinashcraft.com@web.brid.gy

                          Dew Drop - June 26, 2026 (#4699)

                          Top Links
                          Evaluating performance and efficiency of the GitHub Copilot agentic harness across models and tasks (Natalie Guevara)
                          BulkSynchronize in EF Core: Mirror Your Data in One Operation (Chris Woodruff)
                          Reduce XAML Boilerplate with .NET MAUI Global/Implicit Namespace + Source…

                          [?]Leanpub » 🌐
                          @leanpub@mastodon.social

                          Mega Bundle 1 by Jason Turner is the featured bundle of ebooks 📚 on Leanpub!

                          Link: leanpub.com/b/megabundle1

                            #agile boosted

                            [?]Alvin Ashcraft 🐿️ » 🌐
                            @alvinashcraft@hachyderm.io

                            #agile boosted

                            [?]Alvin Ashcraft's Morning Dew » 🌐
                            @alvinashcraft.com@web.brid.gy

                            Dew Drop - June 25, 2026 (#4698)

                            Top Links
                            Azure Functions MCP Extension: What’s New at Build 2026 (Lily Ma)
                            PowerToys Release v0.100.1 (LegendaryBlair)
                            GitHub Copilot SDK v1.0.4 Release (github-actions[bot])
                            Controlling and Monitoring GitHub Copilot Costs with the New Billing Model (Mitchel Sellers)
                            .NET Rocks!…

                            #agile boosted

                            [?]Alvin Ashcraft's Morning Dew » 🌐
                            @alvinashcraft.com@web.brid.gy

                            Dew Drop - June 24, 2026 (#4697)

                            Top Links
                            The 2026 Stack Overflow Developer Survey is now open (for human developers only)!​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍‌‍‍​‌‌​‌‌​‌​​‌​​‍‍​‍​‍‌‍​‌‍‌‌​​‍‍‌​‌‌​‌‍​‌‌‍​‌‍‍‌‍‌‌‍‌‍‌‌‌​‍‌‍‌‍‌‍​‌‍‌‌​‍‍‌‍​‌‍​‍‌‍‍…

                            [?]Leanpub » 🌐
                            @leanpub@mastodon.social

                            Applied Statistics for Data Science: from visual diagnostics to drift detection by Gal Arav is the featured book 📖 on Leanpub!

                            Launch Price $9.99 Special! — price will increase as I plan to steadily add more chapters over the coming weeks.

                            Link: leanpub.com/applied-statistics

                              #agile boosted

                              [?]Alvin Ashcraft's Morning Dew » 🌐
                              @alvinashcraft.com@web.brid.gy

                              Dew Drop - June 23, 2026 (#4696)

                              Top Links
                              Azure SDK Release (May 2026) (Justin Bettencourt)
                              How we built a Flutter-powered AI coffee shop (Craig Labenz)
                              From pledge to practice: Building a more inclusive open source ecosystem (Natalie Guevara)
                              Models don’t have preferences, they have context (Waldek Mastykarz)

                              [?]Python Software Foundation » 🌐
                              @ThePSF@fosstodon.org

                              Reminder: The PSF's Strategic Plan full draft is available and we want your feedback! Check out the full draft and tell us: Are these the right goals? Is anything missing?

                              The feedback window closes in a couple of days on June 25, 2026, AoE.

                              pyfound.blogspot.com/2026/06/p

                                #agile boosted

                                [?]Alvin Ashcraft's Morning Dew » 🌐
                                @alvinashcraft.com@web.brid.gy

                                Dew Drop - June 22, 2026 (#4695)

                                Top Links
                                Hypeless AI #1: Live-Coding a Feature with Tomas Herceg | Thursday, Jun 25, 2026 • 1:00 PM – 5:00 PM CET (Update Conference Team)
                                Merge Conflict Episode #520 - Inside the New GitHub Copilot App: Sessions, Canvases, Automations (James Montemagno & Frank Kreuger)
                                What’s i…

                                [?]Leanpub » 🌐
                                @leanpub@mastodon.social

                                Claude Code Masterclass: Ship Real Code with AI: Install Claude Code and master the Plan → Implement → Test → Review → Commit loop: Best-of-N, testing, git, MCP, hooks & skills. by Luca Berton is the featured course 🎓 on Leanpub!

                                Link: leanpub.com/courses/leanpub/cl

                                  [?]Leanpub » 🌐
                                  @leanpub@mastodon.social

                                  Ron Jeffries boosted

                                  [?]Trey Hunner 🐍 » 🌐
                                  @treyhunner@mastodon.social

                                  Python Tip #172 (of 365):

                                  Know your object introspection tools

                                  When you're in an interactive Python environment remember that these 4 tools can be helpful for introspecting the state of your Python process:

                                  1. type
                                  2. help
                                  3. dir
                                  4. vars

                                  type shows the class of an object (the terms "class" and "type" are synonyms in Python).

                                  If you have a mystery object, type can tell you what it is:

                                  >>> type(letter_counts)
                                  <class 'collections.Counter'>

                                  🧵 (1/4)

                                    Glyph boosted

                                    [?]Taffer 🇨🇦:godot::linux: » 🌐
                                    @Taffer@mastodon.gamedev.place

                                    Not sure if this is useful to anyone other than me, but I made a TODO item linter that complains if the TODO items in your code don't have an owner and a reference to an issue so someone has a chance of addressing them in the future:

                                    worktree.ca/taffer/todo-linter

                                    Works with pre-commit: pre-commit.com

                                    -commit

                                      [?]Dendrobatus Azureus » 🌐
                                      @Dendrobatus_Azureus@mastodon.bsd.cafe

                                      I was told about this blog site, a couple of weeks ago. There are interesting pages listed here

                                      The subjects vary in the manner as seen in the first page (check the screencaps)

                                      ## What I really like about this place, is that it loads blazingly fast

                                      I also love the fact that you can use browsers in your,
                                      * bash
                                      * csh
                                      * ksh
                                      * zsh
                                      * sh
                                      * fish
                                      * without any bloat just like browsing should be, everywhere

                                      rldane.space/junited-2026.html

                                      Thank you @rl_dane

                                        [?]Leanpub » 🌐
                                        @leanpub@mastodon.social

                                        Local AI Engineering with Ollama: Run, understand, customize, fine-tune, and build agentic apps on your own hardware by Aymen El Amri is a new release on Leanpub!

                                        Link: leanpub.com/local-ai-engineeri

                                          Back to top - More...