Recent Discussions
Using an AI Agent to Automate Jira Updates, PR Reviews, and Code Deployment
In modern software development, teams juggle multiple tools: Jira for project management, GitHub/GitLab for code collaboration, and CI/CD pipelines for deployment. Developers often spend significant time switching contexts—updating Jira tickets, reviewing pull requests, and triggering deployments. An AI agent can automate much of this workflow, acting as a “digital teammate” that fetches Jira data, helps review PRs, and pushes deployments. In this blog, we’ll explore how to set it up step by step. https://dellenny.com/supercharging-your-workflow-using-an-ai-agent-to-automate-jira-updates-pr-reviews-and-code-deployment/16Views0likes0Commentsdotnet on linux - Signing key on ... is not bound
dotnet on linux gpg key not working.... Warning: https://packages.microsoft.com/ubuntu/25.04/prod/dists/plucky/InRelease: Policy will reject signature wi thin a year, see --audit for details Controle: https://packages.microsoft.com/ubuntu/25.04/prod/dists/plucky/InRelease: Sub-process /usr/bin/sqv returned a n error code (1), error message is: Signing key on BC528686B50D79E339D3721CEB3E94ADBE1229CF is not bound: No binding signature at time 2025-09-12T15:59:00Z because: Policy rejected non-revocation signature (PositiveCertification) requiring second pre-image resistance because: SHA1 is not considered secure since 2026-02-01T00:00:00Z18Views0likes0CommentsDebugging Java script in old asp core app
Hy, I need to modify an asp.net.core app witch I made years ago. in version 2.2. I do succeed to alter C# code in visual studio (2022), but I need to alter also some Java script. The problem is that if I try to do so and I want to debug it it seems that the script in my browser (MS Edge) is not changing. I have enabled Java script debugging in VS. I emptied the browsers cache but nothing seems to help. When I run the application in debugging mode and hit F12 I still see the old script. Please help!17Views0likes0CommentsTop 10 Things You Can Do with GitHub Copilot as a New Developer
If you’re just starting your coding journey, GitHub Copilot can feel like having a mentor right inside your code editor. It doesn’t just autocomplete code—it helps you learn, experiment, and ship projects faster. Here are the top 10 things you can do with GitHub Copilot as a new developer: https://dellenny.com/top-10-things-you-can-do-with-github-copilot-as-a-new-developer-2/45Views0likes0CommentsHow to Migrate Legacy Applications Using GitHub Copilot
Migrating legacy applications to modern platforms is one of the most challenging tasks in software development. Legacy systems often contain years of business logic, outdated frameworks, and dependencies that are no longer supported. At the same time, businesses need these applications to remain reliable and secure while benefiting from modern practices. This is where GitHub Copilot can become a powerful ally. By acting as your AI pair programmer, Copilot can help accelerate repetitive refactoring tasks, suggest modern equivalents for deprecated code, and provide scaffolding for newer frameworks. While it won’t completely automate a migration, it can dramatically reduce the effort and improve developer productivity. https://dellenny.com/how-to-migrate-legacy-applications-using-github-copilot/49Views0likes0CommentsMastering GitHub Copilot: Tips, Shortcuts, and Prompts That Work
GitHub Copilot has quickly become one of the most powerful coding assistants available to developers. Powered by AI, it can autocomplete lines of code, generate functions, write tests, and even help with documentation. But to get the most out of Copilot, you need more than just enabling it in your IDE—you need to know how to prompt it effectively, use shortcuts, and apply the right strategies. Here’s a practical guide to mastering GitHub Copilot. https://dellenny.com/mastering-github-copilot-tips-shortcuts-and-prompts-that-work/59Views0likes0CommentsUsing GitHub Copilot to Teach Programming A New Approach for Educators
Artificial Intelligence is transforming the way we learn, work, and create. One of the most intriguing applications in computer science education is GitHub Copilot, the AI-powered coding assistant. While originally designed to boost developer productivity, Copilot has the potential to reshape programming education—acting as a tutor, coding partner, and motivator for students. In this post, we’ll explore how educators can use GitHub Copilot to support teaching, highlight potential benefits and pitfalls, and suggest practical strategies for integrating it into the classroom. https://dellenny.com/using-github-copilot-to-teach-programming-a-new-approach-for-educators/21Views0likes0CommentsTool or approach to identify and replace obsolete .NET Framework APIs during migration to .NET 8
I'm in the process of migrating a solution containing multiple projects from .NET Framework 4.8 to .NET 8. After running the migration using the Upgrade Assistant, I encountered several issues where APIs used in the original codebase are either obsolete or no longer available in .NET 8. For instance, System.IO.DirectoryInfo.FullName is flagged as unsupported. There are many such .NET Framework level APIs which cannot be migrated, listed below here.. Is there a tool or approach that can help automatically identify and replace these obsolete .NET Framework APIs with their modern equivalents in .NET 8? Ideally, I’m looking for a solution that can work across multiple projects to streamline the migration process. Any guidance, tools, or best practices would be greatly appreciated! I tried upgrading each project in my solution using upgrade assistant tool, however most of the projects were set to .NET Standard 2.0 instead of migrating to .net8. On further analysis, it was found that as the libraries/APIs which these projects are dependent on are not supported in .NET8 or are obsolete. In order to migrate these projects to .net8, first the libraries/APIs needs to be fixed or replaced with versions which are supported by .net8.51Views0likes0CommentsMAUI Android API 35: Action Bar still visible despite NavBarIsVisible=False
Before API 35 it was ok. I am using .NET 9, Android API 35, using Shell, etc. I have tried: Shell.NavBarIsVisible, NavigationPage.HasNavigationBar, theme tweaks, etc. What’s still happening: Title bar remains visible on Android.32Views0likes0CommentsHow GitHub Copilot Helps with Test-Driven Development (TDD)
Test-Driven Development (TDD) has been a cornerstone of modern software engineering for decades. By writing tests before implementing functionality, developers ensure better design, maintainability, and fewer bugs. But while TDD is powerful, it can sometimes feel slow or cumbersome, especially when setting up repetitive test structures or boilerplate code. This is where GitHub Copilot, the AI-powered coding assistant, becomes a valuable partner. It doesn’t replace the discipline of TDD, but it can accelerate the process and help developers stay in the flow. https://dellenny.com/how-github-copilot-helps-with-test-driven-development-tdd/54Views1like0CommentsBoosting Productivity with GitHub Copilot Real-World .NET Coding Examples
Software development in the .NET ecosystem is powerful, but projects can quickly get bogged down with boilerplate code, repetitive tasks, and lengthy setup. This is where GitHub Copilot comes in. Acting as your AI pair programmer inside Visual Studio or VS Code, Copilot suggests context-aware code snippets, tests, and even full method implementations. Let’s dive into real-world .NET coding examples that highlight how Copilot can make you more productive. https://dellenny.com/boosting-productivity-with-github-copilot-real-world-net-coding-examples/41Views0likes0CommentsIs Native RDLC Report Support Planned for Future .NET Versions?
Good day Team, Given the demand for cross-platform reporting solutions, is there any plan to provide native RDLC (Report Definition Language Client-side) support for .NET Core or upcoming .NET releases (e.g., .NET 9 and beyond)? Many enterprise applications rely on RDLC, and the current lack of official support limits modernization efforts and forces continued reliance on the legacy .NET Framework or Windows-only workarounds. Is RDLC on the roadmap for future .NET versions, or should we consider alternative technologies for long-term reporting requirements? Any official guidance or updates would be greatly appreciated.49Views0likes0CommentsWont install Framework ect automaticly ???
I have an app/program (an EXE-file) I made way back when King of Spade was a Knight and I've used it for years on Windows 10 where it automaticly downloaded and installed the dependencies ! Now I run it under Windows 11 ... it just DON'T ! I know I SHOULD go back and make an "install package" but isn't there a 'Work-Around' ?97Views1like4CommentsCreating a pooled resource for Dependency Injection
Currently, we have AddSingleton(), AddScoped(), and AddTransient() to generate resources in DI. Is there a way to request a new feature for an AddPooled() which will allow us to create and reuse unused instances from a pool? I have a class that has an expensive creation (a little over 5 seconds) that cannot be instantiated as a singleton. I don't need it to maintain any state, so it would be an ideal candidate for a pooled resource in DI.44Views0likes0CommentsTop 10 Things You Can Do with GitHub Copilot as a New Developer
Starting out as a developer can feel overwhelming—there’s so much to learn, so many tools to master, and a seemingly endless sea of documentation. But what if you had an AI assistant right in your code editor, ready to suggest solutions, generate code, and speed up your workflow? That’s where GitHub Copilot comes in. Copilot is an AI-powered coding assistant created by GitHub and OpenAI. It helps you write code faster by suggesting entire lines or blocks of code as you type. It’s like pair programming with a super helpful (and very fast) friend. Here are the top 10 things you can do with GitHub Copilot as a new developer: https://dellenny.com/top-10-things-you-can-do-with-github-copilot-as-a-new-developer/65Views0likes0CommentsGitHub Copilot for Students How It Can Help You Learn Faster
Learning to code can feel overwhelming. Whether you’re a computer science student tackling your first programming course or a self-learner diving into web development, understanding concepts, syntax, and best practices takes time and effort. That’s where GitHub Copilot, your AI pair programmer, can make a big difference. In this blog post, we’ll explore how GitHub Copilot can accelerate your learning, make coding more fun, and help you become a better developer—faster. https://dellenny.com/github-copilot-for-students-how-it-can-help-you-learn-faster/56Views0likes0CommentsWhen should I use SQL Server, MySQL, or PostgreSQL?
I'm working on a web application (using C#/.NET backend), and I need to choose a relational database. I'm considering three options: Microsoft SQL Server MySQL PostgreSQL I want to understand: What are the strengths and weaknesses of each? Which database is better suited for: Transactional performance Advanced querying / analytics Ease of use with .NET Cross-platform support Are there any licensing or hosting concerns I should consider? My use case involves: Moderate traffic Complex queries with joins APIs and background jobs Deployment to cloud (Azure) I’d appreciate any recommendations or real-world experience comparing these databases.123Views0likes2CommentsWPF App on Windows Server (RDP) – Error Sometimes When Opening New Window
Hi everyone, I have a WPF app that runs from a network drive. It works fine on Windows 11 at the office. But when users run it through Remote Desktop on a Windows Server 2019 virtual machine (using the exact same .exe from the same network drive location), some of them get an error when opening a new window. The app starts normally, but the error happens only when opening another window — and not for every user. Strangely, the next day the same user can open the app and use it normally again without changing anything. Has anyone seen this before or know how to fix it? I’ve also attached: A screenshot of the error message The function that causes the error Thanks a lot!56Views0likes0CommentsTrying to add new Type to Dotnet Runtime from github
Hi I'm trying to modify the .NET runtime from github.com/dotnet/runtime. I created a copy of the Dictionary class called Dictionary2 in these source code files: C:\rt5\src\libraries\System.Collections\ref\System.Collections.cs C:\rt5\src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs When I use dot peek from Jetbrains, Dictionary2 exists in my System.Collections.dll, but when I import System.Collections.dll in my main console C# application, Dictionary2 gives me compiler errors. Am, I missing some code somewhere? Can you guys help me out here? Thanks!100Views4likes2CommentsGitHub Copilot Your AI Pair Programmer
In a world where time-to-market is shrinking and developer productivity is king, GitHub Copilot has emerged as a powerful ally for coders. Built by GitHub in collaboration with OpenAI, Copilot is more than just an autocomplete tool — it’s your AI-powered pair programmer. https://dellenny.com/github-copilot-your-ai-pair-programmer/59Views0likes0Comments