det.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mastodon Server des Unterhaltungsfernsehen Ehrenfeld zum dezentralen Diskurs.

Administered by:

Server stats:

2K
active users

#softwaredevelopment

58 posts42 participants1 post today
Maho Pacheco 🦝🍻<p>Do you want to help testing <span class="h-card" translate="no"><a href="https://badgefed.vocalcat.com/" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>badgefed</span></a></span> and provision your local test instance?</p><p>Easy</p><p>docker pull ghcr.io/tryvocalcat/badgefed:latest &amp;&amp;<br>docker run -v `pwd`/data:/app/data \<br> -p 8080:8080 \<br> -e SQLITE_DB_FILENAME=/app/data/badges.db \<br> -e AdminAuthentication__AdminUsers__0__Id=your-mastodon-username \<br> -e AdminAuthentication__AdminUsers__0__Type=Mastodon \<br> -e MastodonConfig__ClientId=your-mastodon-client-id \<br> -e MastodonConfig__ClientSecret=your-mastodon-client-secret \<br> -e MastodonConfig__Server=your-mastodon-server \<br> ghcr.io/tryvocalcat/badgefed</p><p>And then open a browser and go to http://localhost:8080 or http://localhost:8080/admin</p><p><a href="https://hachyderm.io/tags/docker" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>docker</span></a> <a href="https://hachyderm.io/tags/badgefed" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>badgefed</span></a> <a href="https://hachyderm.io/tags/openbadges" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>openbadges</span></a> <a href="https://hachyderm.io/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaredevelopment</span></a> <a href="https://hachyderm.io/tags/testing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>testing</span></a> <a href="https://hachyderm.io/tags/fediverse" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>fediverse</span></a> <a href="https://hachyderm.io/tags/activitypub" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>activitypub</span></a></p>
Miguel Afonso Caetano<p>"As of today, Amp, our agentic coding tool, is available to everyone. The waitlist is gone — go, go and sign up and use it!</p><p>For the past 10 weeks, Amp has been the main tool with which I develop software and — putting yet another exclamation mark behind the fact that the tools we use end up changing us — it has fundamentally changed how I develop software.</p><p>So I thought I’d use the occasion to write up how I personally use Amp.<br>(...)<br>Write SQL</p><p>Having an agent that connects to your database is very, very close to the joy you feel when it takes screenshots and iterates on UI components.</p><p>Here’s how to do it.</p><p>First, tell the agent to use psql (or any other CLI utility) or the tools provided by the postgres MCP server (or any other MCP server for your database) to connect to your DB.</p><p>Then, ask it things like this:</p><p>Update my user account (email starts with thorsten) to have unlimited invites<br>Or:</p><p>Return me a list of users with the most number of threads, sorted by number of threads<br>The agent will then do everything it can to return you that list: figure out the schema of the database, try this query, try that query.</p><p>Look, here I wanted to change my local development database. It didn’t know what the schema is, so it tried to figure that out first, which it did — by running four commands in parallel:</p><p><a href="https://ampcode.com/how-i-use-amp" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="">ampcode.com/how-i-use-amp</span><span class="invisible"></span></a></p><p><a href="https://tldr.nettime.org/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a> <a href="https://tldr.nettime.org/tags/GenerativeAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GenerativeAI</span></a> <a href="https://tldr.nettime.org/tags/AIAGents" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AIAGents</span></a> <a href="https://tldr.nettime.org/tags/LLMs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LLMs</span></a> <a href="https://tldr.nettime.org/tags/Chatbots" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Chatbots</span></a> <a href="https://tldr.nettime.org/tags/Amp" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Amp</span></a> <a href="https://tldr.nettime.org/tags/VibeCoding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>VibeCoding</span></a> <a href="https://tldr.nettime.org/tags/Programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Programming</span></a> <a href="https://tldr.nettime.org/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a> <a href="https://tldr.nettime.org/tags/AgenticCoding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AgenticCoding</span></a></p>
Miguel Afonso Caetano<p>"I presented a three hour workshop at PyCon US yesterday titled Building software on top of Large Language Models. The goal of the workshop was to give participants everything they needed to get started writing code that makes use of LLMs.</p><p>Most of the workshop was interactive: I created a detailed handout with six different exercises, then worked through them with the participants. You can access the handout here—it should be comprehensive enough that you can follow along even without having been present in the room.</p><p>Here’s the table of contents for the handout:</p><p>- Setup—getting LLM and related tools installed and configured for accessing the OpenAI API<br>- Prompting with LLM—basic prompting in the terminal, including accessing logs of past prompts and responses<br>- Prompting from Python—how to use LLM’s Python API to run prompts against different models from Python code<br>- Building a text to SQL tool—the first building exercise: prototype a text to SQL tool with the LLM command-line app, then turn that into Python code.<br>- Structured data extraction—possibly the most economically valuable application of LLMs today<br>- Semantic search and RAG—working with embeddings, building a semantic search engine<br>- Tool usage—the most important technique for building interesting applications on top of LLMs. My LLM tool gained tool usage in an alpha release just the night before the workshop!</p><p>Some sections of the workshop involved me talking and showing slides. I’ve gathered those together into an annotated presentation below.</p><p>The workshop was not recorded, but hopefully these materials can provide a useful substitute. If you’d like me to present a private version of this workshop for your own team please get in touch!"</p><p><a href="https://simonwillison.net/2025/May/15/building-on-llms/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">simonwillison.net/2025/May/15/</span><span class="invisible">building-on-llms/</span></a></p><p><a href="https://tldr.nettime.org/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a> <a href="https://tldr.nettime.org/tags/GenerativeAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GenerativeAI</span></a> <a href="https://tldr.nettime.org/tags/LLMs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LLMs</span></a> <a href="https://tldr.nettime.org/tags/Programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Programming</span></a> <a href="https://tldr.nettime.org/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a> <a href="https://tldr.nettime.org/tags/Python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Python</span></a> <a href="https://tldr.nettime.org/tags/OpenAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OpenAI</span></a> <a href="https://tldr.nettime.org/tags/SQL" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SQL</span></a> <a href="https://tldr.nettime.org/tags/RAG" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>RAG</span></a> <a href="https://tldr.nettime.org/tags/SemanticSearch" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SemanticSearch</span></a></p>
Hacker News<p>Making code last a long time</p><p><a href="https://twitter.com/jonathan_blow/status/1923414922484232404" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">twitter.com/jonathan_blow/stat</span><span class="invisible">us/1923414922484232404</span></a></p><p><a href="https://mastodon.social/tags/HackerNews" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>HackerNews</span></a> <a href="https://mastodon.social/tags/Making" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Making</span></a> <a href="https://mastodon.social/tags/code" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>code</span></a> <a href="https://mastodon.social/tags/last" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>last</span></a> <a href="https://mastodon.social/tags/a" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>a</span></a> <a href="https://mastodon.social/tags/long" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>long</span></a> <a href="https://mastodon.social/tags/time" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>time</span></a> <a href="https://mastodon.social/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.social/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaredevelopment</span></a> <a href="https://mastodon.social/tags/codequality" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>codequality</span></a> <a href="https://mastodon.social/tags/longevity" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>longevity</span></a></p>
Larvitz :fedora: :redhat:<p><a href="https://burningboard.net/tags/ai" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ai</span></a> <a href="https://burningboard.net/tags/vibe_coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vibe_coding</span></a> <a href="https://burningboard.net/tags/vibecoding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vibecoding</span></a> <a href="https://burningboard.net/tags/joke" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>joke</span></a> <a href="https://burningboard.net/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaredevelopment</span></a></p>
Hacker News<p>Evolution of Rust Compiler Errors</p><p><a href="https://kobzol.github.io/rust/rustc/2025/05/16/evolution-of-rustc-errors.html" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">kobzol.github.io/rust/rustc/20</span><span class="invisible">25/05/16/evolution-of-rustc-errors.html</span></a></p><p><a href="https://mastodon.social/tags/HackerNews" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>HackerNews</span></a> <a href="https://mastodon.social/tags/EvolutionOfRust" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>EvolutionOfRust</span></a> <a href="https://mastodon.social/tags/CompilerErrors" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CompilerErrors</span></a> <a href="https://mastodon.social/tags/RustLang" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>RustLang</span></a> <a href="https://mastodon.social/tags/CodingCommunity" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CodingCommunity</span></a> <a href="https://mastodon.social/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a></p>
nickproud<p>For the tech founders of a startup, choosing a technology to run with can be difficult. My approach is to try to use the stack that has a good balance between features (for your use case) and accessibility; by that I mean, your skillset. If you're thinking of using C# - here's an interesting account of a startup's journey adopting the language from the beginning.</p><p><a href="https://techhub.social/tags/dotnet" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>dotnet</span></a> <a href="https://techhub.social/tags/csharp" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>csharp</span></a> <a href="https://techhub.social/tags/startup" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>startup</span></a> <a href="https://techhub.social/tags/tech" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>tech</span></a> <a href="https://techhub.social/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaredevelopment</span></a> </p><p><a href="https://devblogs.microsoft.com/dotnet/why-we-built-our-startup-in-csharp/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">devblogs.microsoft.com/dotnet/</span><span class="invisible">why-we-built-our-startup-in-csharp/</span></a></p>
Matthew Reinbold<p>"StackOverflow activity down to 2008 numbers."</p><p>This graph is incredible to me.</p><p><a href="https://opinuendo.com/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://opinuendo.com/tags/softwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwareDevelopment</span></a> <a href="https://www.reddit.com/r/singularity/comments/1knapc3/stackoverflow_activity_down_to_2008_numbers/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">reddit.com/r/singularity/comme</span><span class="invisible">nts/1knapc3/stackoverflow_activity_down_to_2008_numbers/</span></a></p>
Winbuzzer<p>Windsurf Debuts Own SWE-1 AI Models Amid OpenAI's $3B Bid</p><p><a href="https://mastodon.social/tags/AICoding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AICoding</span></a> <a href="https://mastodon.social/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a> <a href="https://mastodon.social/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a> <a href="https://mastodon.social/tags/DeveloperTools" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DeveloperTools</span></a> <a href="https://mastodon.social/tags/Windsurf" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Windsurf</span></a> <a href="https://mastodon.social/tags/OpenAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OpenAI</span></a> <a href="https://mastodon.social/tags/SWE1" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SWE1</span></a> <a href="https://mastodon.social/tags/FutureOfCoding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>FutureOfCoding</span></a> </p><p><a href="https://winbuzzer.com/2025/05/16/windsurf-debuts-own-swe-1-ai-models-amid-openais-3b-bid-xcxwbn/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">winbuzzer.com/2025/05/16/winds</span><span class="invisible">urf-debuts-own-swe-1-ai-models-amid-openais-3b-bid-xcxwbn/</span></a></p>
Winbuzzer<p>Windsurf Debuts Own SWE-1 AI Models Amid OpenAI's $3B Bid</p><p><a href="https://mastodon.social/tags/AICoding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AICoding</span></a> <a href="https://mastodon.social/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a> <a href="https://mastodon.social/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a> <a href="https://mastodon.social/tags/DeveloperTools" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DeveloperTools</span></a> <a href="https://mastodon.social/tags/Windsurf" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Windsurf</span></a> <a href="https://mastodon.social/tags/OpenAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OpenAI</span></a> <a href="https://mastodon.social/tags/SWE1" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SWE1</span></a> <a href="https://mastodon.social/tags/FutureOfCoding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>FutureOfCoding</span></a> </p><p><a href="https://winbuzzer.com/2025/05/16/windsurf-debuts-own-swe-1-ai-models-amid-openais-3b-bid-xcxwbn/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">winbuzzer.com/2025/05/16/winds</span><span class="invisible">urf-debuts-own-swe-1-ai-models-amid-openais-3b-bid-xcxwbn/</span></a></p>
Hacker News<p>After months of coding with LLMs, I'm going back to using my brain</p><p><a href="https://albertofortin.com/writing/coding-with-ai" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">albertofortin.com/writing/codi</span><span class="invisible">ng-with-ai</span></a></p><p><a href="https://mastodon.social/tags/HackerNews" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>HackerNews</span></a> <a href="https://mastodon.social/tags/codingwithAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>codingwithAI</span></a> <a href="https://mastodon.social/tags/LLMs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LLMs</span></a> <a href="https://mastodon.social/tags/brainpower" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>brainpower</span></a> <a href="https://mastodon.social/tags/technologyreflection" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>technologyreflection</span></a> <a href="https://mastodon.social/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaredevelopment</span></a></p>
pipTrends<p>This week's newsletter will be out tomorrow. Interesting stuff by <span class="h-card" translate="no"><a href="https://hachyderm.io/@lacey" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>lacey</span></a></span> Reinforced Knowledge, Jb Rocher, Rodrigo &amp; Gaurav Kumar covered</p><p><a href="https://newsletter.piptrends.com/p/pyrefly-search-to-your-django-site" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">newsletter.piptrends.com/p/pyr</span><span class="invisible">efly-search-to-your-django-site</span></a></p><p><a href="https://mastodon.social/tags/python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>python</span></a> <a href="https://mastodon.social/tags/Programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Programming</span></a> <a href="https://mastodon.social/tags/PythonProgramming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PythonProgramming</span></a> <a href="https://mastodon.social/tags/ai" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ai</span></a> <a href="https://mastodon.social/tags/ml" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ml</span></a> <a href="https://mastodon.social/tags/MachineLearning" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MachineLearning</span></a> <a href="https://mastodon.social/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a> <a href="https://mastodon.social/tags/WebDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>WebDevelopment</span></a> <a href="https://mastodon.social/tags/TechNews" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TechNews</span></a> <a href="https://mastodon.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OpenSource</span></a> <a href="https://mastodon.social/tags/DataEngineering" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DataEngineering</span></a></p>
pipTrends<p>Enums can make your code more readable, safer and easier to maintain. If you want a solid overview of Python’s enum module, check out this article by Rodrigo. He covered everything from basic Enum usage to auto, StrEnum, Flags and more. It’s a great way to learn the full range of what Python enums offer.</p><p><a href="https://mathspp.com/blog/module-enum-overview" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">mathspp.com/blog/module-enum-o</span><span class="invisible">verview</span></a></p><p><a href="https://mastodon.social/tags/python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>python</span></a> <a href="https://mastodon.social/tags/Programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Programming</span></a> <a href="https://mastodon.social/tags/PythonProgramming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PythonProgramming</span></a> <a href="https://mastodon.social/tags/ai" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ai</span></a> <a href="https://mastodon.social/tags/ml" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ml</span></a> <a href="https://mastodon.social/tags/MachineLearning" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MachineLearning</span></a> <a href="https://mastodon.social/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a> <a href="https://mastodon.social/tags/WebDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>WebDevelopment</span></a> <a href="https://mastodon.social/tags/TechNews" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TechNews</span></a> <a href="https://mastodon.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OpenSource</span></a> <a href="https://mastodon.social/tags/DataEngineering" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DataEngineering</span></a></p>
Hacker News<p>You're misunderstanding DDD in Angular (and Front end)</p><p><a href="https://www.angularspace.com/youre-misunderstanding-ddd-in-angular-and-frontend/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">angularspace.com/youre-misunde</span><span class="invisible">rstanding-ddd-in-angular-and-frontend/</span></a></p><p><a href="https://mastodon.social/tags/HackerNews" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>HackerNews</span></a> <a href="https://mastodon.social/tags/DDD" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DDD</span></a> <a href="https://mastodon.social/tags/Angular" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Angular</span></a> <a href="https://mastodon.social/tags/Frontend" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Frontend</span></a> <a href="https://mastodon.social/tags/Misunderstanding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Misunderstanding</span></a> <a href="https://mastodon.social/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a></p>
Richard Donovan<p>Focus on the outcome, not the deadline…</p><p>When deadlines are tight and project details are unclear, it's easy to get overwhelmed.</p><p>Instead of dwelling on potential consequences, focus on the outcome you want to achieve.</p><p>Your brain will naturally gravitate towards ways of achieving it, ensuring you maintain your wellbeing in the process.</p><p><a href="https://mastodon.social/tags/developers" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>developers</span></a> <a href="https://mastodon.social/tags/coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coding</span></a> <a href="https://mastodon.social/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaredevelopment</span></a> <a href="https://mastodon.social/tags/softwareengineering" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwareengineering</span></a> <a href="https://mastodon.social/tags/wellbeing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>wellbeing</span></a> <a href="https://mastodon.social/tags/mindset" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mindset</span></a> <a href="https://mastodon.social/tags/mentalhealth" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mentalhealth</span></a></p>
Richard Donovan<p>At the end of the week, I like to make a statement about breaking the connection from work.</p><p>🟢&nbsp;Some people might do it with a nice cold one, and who could blame them…</p><p>For me, it's a celebration of getting out of that chair, moving around and being more active.</p><p>🟢 Today, it will be a gym workout<br>🟢 Sometimes, it's a short run<br>🟢 Other times, it's a walk</p><p><a href="https://mastodon.social/tags/developers" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>developers</span></a> <a href="https://mastodon.social/tags/coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coding</span></a> <a href="https://mastodon.social/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaredevelopment</span></a> <a href="https://mastodon.social/tags/softwareengineering" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwareengineering</span></a> <a href="https://mastodon.social/tags/wellbeing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>wellbeing</span></a> <a href="https://mastodon.social/tags/mindset" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mindset</span></a> <a href="https://mastodon.social/tags/mentalhealth" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mentalhealth</span></a></p>
Richard Donovan<p>5 great audiobooks to help broaden your horizons:</p><p>Why We Sleep —&gt; <a href="https://www.audible.co.uk/pd/Why-We-Sleep-Audiobook/B077XHZZXY" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">audible.co.uk/pd/Why-We-Sleep-</span><span class="invisible">Audiobook/B077XHZZXY</span></a><br>The Tipping Point —&gt; <a href="https://www.audible.co.uk/pd/The-Tipping-Point-Audiobook/B0BPTB38FM" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">audible.co.uk/pd/The-Tipping-P</span><span class="invisible">oint-Audiobook/B0BPTB38FM</span></a><br>The Power of Now —&gt; <a href="https://www.audible.co.uk/pd/The-Power-of-Now-Audiobook/B004EX04PK" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">audible.co.uk/pd/The-Power-of-</span><span class="invisible">Now-Audiobook/B004EX04PK</span></a><br><a href="https://mastodon.social/tags/developers" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>developers</span></a> <a href="https://mastodon.social/tags/coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coding</span></a> <a href="https://mastodon.social/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaredevelopment</span></a> <a href="https://mastodon.social/tags/softwareengineering" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwareengineering</span></a> <a href="https://mastodon.social/tags/wellbeing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>wellbeing</span></a> <a href="https://mastodon.social/tags/mindset" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mindset</span></a> <a href="https://mastodon.social/tags/mentalhealth" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mentalhealth</span></a></p>
Kodsnack<p>DevOpsDocs<br>En autouppdaterad och alltid uppdaterad grund för din dokumentation vore väl inte så dumt? <span class="h-card" translate="no"><a href="https://mastodon.social/@devlead" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>devlead</span></a></span> berättar, från Øredev 2024.</p><p>Ett utdrag ur Kodsnack 642 - lyssna på kodsnack.se eller där poddar finns!<br><a href="https://social.podsnack.se/tags/devops" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>devops</span></a> <a href="https://social.podsnack.se/tags/documentation" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>documentation</span></a> <a href="https://social.podsnack.se/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaredevelopment</span></a></p>
Europe Says<p><a href="https://www.europesays.com/2081543/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="">europesays.com/2081543/</span><span class="invisible"></span></a> Allpay Says AI Boosts Productivity, Software Releases <a href="https://pubeurope.com/tags/AdamWheater" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AdamWheater</span></a> <a href="https://pubeurope.com/tags/AdrianMichalowski" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AdrianMichalowski</span></a> <a href="https://pubeurope.com/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a> <a href="https://pubeurope.com/tags/AllPay" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AllPay</span></a> <a href="https://pubeurope.com/tags/ArtificialIntelligence" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ArtificialIntelligence</span></a> <a href="https://pubeurope.com/tags/CloudComputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CloudComputing</span></a> <a href="https://pubeurope.com/tags/GenAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GenAI</span></a> <a href="https://pubeurope.com/tags/GenerativeAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GenerativeAI</span></a> <a href="https://pubeurope.com/tags/GitHubCopilot" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GitHubCopilot</span></a> <a href="https://pubeurope.com/tags/MicrosoftAzure" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MicrosoftAzure</span></a> <a href="https://pubeurope.com/tags/News" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>News</span></a> <a href="https://pubeurope.com/tags/NickWoolley" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>NickWoolley</span></a> <a href="https://pubeurope.com/tags/PaymentsProvider" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PaymentsProvider</span></a> <a href="https://pubeurope.com/tags/PYMNTSNews" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PYMNTSNews</span></a> <a href="https://pubeurope.com/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a></p>
Brandon H :csharp: :verified:<p>via <span class="h-card" translate="no"><a href="https://dotnet.social/@dotnet" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>dotnet</span></a></span> : Evaluating content safety in your .NET AI applications</p><p><a href="https://ift.tt/AYmvQpq" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="">ift.tt/AYmvQpq</span><span class="invisible"></span></a><br><a href="https://hachyderm.io/tags/DotNet" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DotNet</span></a> <a href="https://hachyderm.io/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a> <a href="https://hachyderm.io/tags/ContentSafety" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ContentSafety</span></a> <a href="https://hachyderm.io/tags/AzureAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AzureAI</span></a> <a href="https://hachyderm.io/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a> <a href="https://hachyderm.io/tags/MSTest" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MSTest</span></a> <a href="https://hachyderm.io/tags/SafetyEvaluators" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SafetyEvaluators</span></a> <a href="https://hachyderm.io/tags/IntelligentApplications" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>IntelligentApplications</span></a> <a href="https://hachyderm.io/tags/CSharp" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CSharp</span></a> <a href="https://hachyderm.io/tags/Evaluation" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Evaluation</span></a> <a href="https://hachyderm.io/tags/Microsoft" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Microsoft</span></a> <a href="https://hachyderm.io/tags/AIApplications" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AIApplications</span></a> <a href="https://hachyderm.io/tags/CI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CI</span></a>/CD <a href="https://hachyderm.io/tags/TechUpd" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TechUpd</span></a>…</p>