• Trends
  • Topics
  • Nodes
Search for keywords, #hashtags, $sites, add a dash to exclude, e.g. -$theonion.com

From improveandrepeat.com

How to Fix the SonarScanner When a Line in a File Is Out of Range - Improve & Repeat

0 0

SonarScanner sometimes throws unhelpful error messages. When it comes to Line X is out of range for file, an easy fix may be all it takes.

on Dec 24

From improveandrepeat.com

Getting SSH and SCP Back to Work on Synology DSM 7.x - Improve & Repeat

0 0

Synology changed a lot with its 7.2 update for DiskManager. If you have a problem with SSH/SCP, here is how to fix it.

on Dec 17

From improveandrepeat.com

2.5 Helpful Features of Visual Studio 17.12 - Improve & Repeat

0 0

After fixing all the eminent problems, I had finally time to work with Visual Studio 17.12 and found some noteworthy new features.

on Dec 10

From improveandrepeat.com

How to Link to Specific Lines of Code on GitHub - Improve & Repeat

0 1

GitHub allows us to link to code and highlight the part we are talking about. Let’s see how we can create our own links.

on Dec 3

From improveandrepeat.com

How to Fix Missing CSS & JS Files at Build Time in Visual Studio 17.12 - Improve & Repeat

0 0

After the update to Visual Studio 17.12 you may get build errors about missing CSS files. In this case, add a global.json file for .Net 8.

on Nov 26

From improveandrepeat.com

How to Disable the NuGet Audit Check in Visual Studio 17.12+ - Improve & Repeat

0 0

The new Visual Studio for .Net 9 comes with a bad implementation of a vulnerability check that will break your projects.

on Nov 19

From improveandrepeat.com

How to Use a Specific Version of the Dotnet Command - Improve & Repeat

0 0

With .Net 9 out, it is that time that we often want to use an older version of dotnet to work with our code - let’s see how we can do that.

on Nov 12

From improveandrepeat.com

Why Jetpack Stats Could Be Giving You a Skewed Picture of Your Visitors - Improve & Repeat

0 0

WordPress offers with Jetpack Stats a tool to see how many people visit your site. But as it turns out, it may miss a lot of your visitors.

on Nov 5

From improveandrepeat.com

How to Fix the SSIS Error 'Cannot Convert Between Unicode and Non-Unicode Strings' - Improve & Repeat

0 0

With SQL Server Integration Services the data types matter. If you need nvarchar and use concat(), you may need to cast them your strings.

on Oct 29

From improveandrepeat.com

Python Friday #250 - Improve & Repeat

0 0

Time to celebrate the 250th post of Python Friday – the last one I post here, then from now on they got their own web site.

on Oct 25

From improveandrepeat.com

How to Install Windows 11 Without an Internet Connection - Improve & Repeat

0 0

If Windows 11 doesn't install network drivers, you cannot finish the installation. However, there is a trick to continue.

on Oct 22

From improveandrepeat.com

Python Friday #249: Migrate from WordPress to Markdown - Improve & Repeat

0 0

Moving between blog engines is a lot of work, especially when we move from WordPress to Markdown. But there are tools for the heavy lifting.

on Oct 18

From improveandrepeat.com

What to Do with a java.lang.UnsupportedClassVersionError? - Improve & Repeat

0 0

Each JDK comes with its own class file version, that unfortunately doesn't match. Here you find the mapping table.

on Oct 17

From improveandrepeat.com

How to Start the HTTPS Port for Your ASP.NET MVC Application - Improve & Repeat

0 0

Only the HTTP port starts by default with dotnet run. To activate HTTPS, we need to use an additional parameter.

on Oct 9

From improveandrepeat.com

Python Friday #247: Static Site Generators for a Blog? - Improve & Repeat

0 0

Static site generators are nothing new. But are they capable of running a blog for someone who is used to WordPress?

on Oct 4

From improveandrepeat.com

How to Await an Octopus Task in Azure DevOps - Improve & Repeat

0 0

Octopus Deploy tasks for Azure DevOps work asynchronous. If you need to wait on the completion of the work, add an extra step in the pipeline.

on Oct 1

From improveandrepeat.com

Python Friday #246: Helpful Tricks for FastAPI - Improve & Repeat

0 0

In this post I share my favourite little tricks for FastAPI. They can improve your developer experience and make your API more useful.

on Sep 27

From improveandrepeat.com

How to Unfreeze the Windows Task Manager - Improve & Repeat

0 0

Does your task manager on Windows freezes and no longer shows you the current system load? There is an easy fix for that.

on Sep 24

From improveandrepeat.com

Python Friday #245: Run FastAPI in Docker & in Production - Improve & Repeat

0 0

FastAPI works well with Docker, and we can try in the small what we need to do later for production - like adding nginx as a reverse proxy.

on Sep 20

From improveandrepeat.com

Little SQL Server Tricks: The IIF Function - Improve & Repeat

0 0

The IIF function in SQL Server allows us to return one of two values, depending on whether the Boolean expression is true or false.

on Sep 17

From improveandrepeat.com

Python Friday #244: Integrate FastAPI Users Into the To-Do Application - Improve & Repeat

0 0

If we do not want to write the authentication for our API by hand, we can use a plug-in like FastAPI Users. Let's see how we can do that.

on Sep 14

From improveandrepeat.com

Unexpected Side-Effects When Your Tests Are Too Fast - Improve & Repeat

0 0

When the tests run too fast, the truncation in SQL Server starts to be a source for flaky tests. Lets see how we fixed that problem.

on Sep 10

From improveandrepeat.com

Python Friday #243: Rate Limit in FastAPI - Improve & Repeat

0 0

SlowApi is a nice little package that allows us to rate limit our FastAPI application. Let's see how we can tailor it to fit our needs.

on Sep 6

From improveandrepeat.com

Change the Name of the Hangfire Dashboard - Improve & Repeat

0 1

With a little bit of configuration we can change the default name of the Hangfire dashboard to something application specific.

on Sep 3

From improveandrepeat.com

Python Friday #242: API Versioning in FastAPI - Improve & Repeat

0 1

There are many ways to version an API. In this post we explore 3 options to add a version to our endpoints in FastAPI.

on Aug 30

From improveandrepeat.com

How to Create a .gitignore File for .Net - Improve & Repeat

0 0

Dotnet new can create a .gitignore file for us with all the exclusions we need for a .Net project. Let's find out how to do that.

on Aug 27

From improveandrepeat.com

Python Friday #241: Filters for SQLAlchemy and FastAPI - Improve & Repeat

0 0

FastAPI Filter is a great help to write filters for your endpoints. We can focus on the fields, while it writes the queries in SQLAlchemy.

on Aug 23

From improveandrepeat.com

Python Friday #240: Asynchronous SQLAlchemy With FastAPI - Improve & Repeat

0 0

Switching a FastAPI application from synchronous to async SQLAlchemy is a lot of work. Let us explore the different steps we must take.

on Aug 23

From improveandrepeat.com

How to Fix the No X11 Display Error With Java Applications on Ubuntu 24.04 LTS - Improve & Repeat

0 1

If all you get from your Java application is ‘No X11 DISPLAY variable was set’ you need not to despair - here is a quick fix for this error.

on Aug 13

From improveandrepeat.com

Python Friday #239: Asynchronous Tests With Pytest - Improve & Repeat

0 0

Pytest does not support asynchronous test methods out of the box. We can fix this problem with the right add-ons.

on Aug 9

From improveandrepeat.com

Remove Unofficial Packages for a Smooth Upgrade to Ubuntu 24.04 LTS - Improve & Repeat

0 0

The upgrade from Ubuntu 22.04 to 24.04 did not run smoothly. I had some packages that prevented the update – but which one?

on Aug 6

From improveandrepeat.com

Python Friday #238: Create a Dashboard for FastAPI - Improve & Repeat

0 0

We can combine SQLAlchemy, FastAPI and a web interface to create a dashboard for our application without much effort.

on Aug 2

From improveandrepeat.com

How to Check if a Website Uses Cloudflare or Not - Improve & Repeat

0 0

To check if a site uses the content delivery network services of Cloudflare or not, we can append a little magic path to the URL.

on Jul 31

From improveandrepeat.com

Python Friday #237: Static Routes in FastAPI - Improve & Repeat

0 0

With an HTML interface in FastAPI comes the need to serve images and CSS files. We can do that with a static route.

on Jul 27

From improveandrepeat.com

Little SQL Server Tricks: Rename Default Constraints - Improve & Repeat

0 0

If you try to rename a constraint in SQL Server, you may run into strange problems that may need a little conversion before it will run.

on Jul 23

From improveandrepeat.com

Python Friday #236: Add a Web Interface to FastAPI - Improve & Repeat

0 0

FastAPI can not only return JSON, but also HTML. What may look like a useless feature is a great help for a web interface.

on Jul 20

From improveandrepeat.com

What PowerShell Version Runs on My Computer? - Improve & Repeat

0 0

PowerShell does it not make easy to figure out what version we run on our machine. Let us find a way to figure it out anyway.

on Jul 16

From improveandrepeat.com

Python Friday #235: DB Migrations With Alembic and FastAPI - Improve & Repeat

0 0

Alembic is a database migration tool that works nicely with SQLAlchemy. To use it in FastAPI, we need a few tweaks to integrate it.

on Jul 12

From improveandrepeat.com

Enforce the Current JavaScript File in ASP.NET - Improve & Repeat

0 0

Web developers hat caching errors. Instead of turning caching of completely, let us add a version tag to our scripts.

on Jul 9

From improveandrepeat.com

Python Friday #234: Database Tests for the FastAPI Application - Improve & Repeat

0 0

SQLAlchemy in a FastAPI application brings a few challenges to testing. Let’s see what extra steps we need to take care of.

on Jul 5

From improveandrepeat.com

How to Fix "Could Not Find a WAM Account" in Visual Studio 2022 - Improve & Repeat

0 0

Visual Studio has its annoying days. If it can no longer find your WAM account, you need to change the way it does the authentication.

on Jul 2

From improveandrepeat.com

Python Friday #233: SQLAlchemy and FastAPI - Improve & Repeat

0 0

SQLAlchemy works great with FastAPI. Let us add SQLAlchemy to an existing FastAPI application to persist our data.

on Jun 28

From improveandrepeat.com

Python Friday #232: Update SQLAlchemy to Version 2.x - Improve & Repeat

0 0

SQLAlchemy version 2 got some major changes. Let us find out how we can update our code to run it against the current version.

on Jun 26

From improveandrepeat.com

My Highlights of NDC Oslo 2024 - Improve & Repeat

0 0

NDC Oslo 2024 was a blast. Here are the talks I find the most helpful to deep dive into RAG, .Net and Aspire.

on Jun 26

From improveandrepeat.com

How to Fix "SqlException: Incorrect syntax near '$'." in Duende IdentityServer 7 - Improve & Repeat

0 0

There are only few less helpful error messages than Incorrect syntax near '$'. In my case the problem is a breaking change in EF Core 8.

on Jun 25

From improveandrepeat.com

Python Friday #231: Split a FastAPI Application Into Manageable Parts - Improve & Repeat

0 0

What Blueprint is for Flask are APIRouters for FastAPI. Let us split our main.py file into more manageable parts.

on Jun 25

From improveandrepeat.com

NDC Oslo 2024 Workshop: High Performance .NET Development - Improve & Repeat

0 0

At NDC Oslo 2024 I attended the High Performance .NET Development workshop by Mark Rendle, where I could learn a lot on performance & .Net.

on Jun 24

From improveandrepeat.com

Python Friday #230: Fix the PydanticJsonSchemaWarning in FastAPI - Improve & Repeat

0 0

If you get a PydanticJsonSchemaWarning "str is not JSON serializable", you should check your Fields and the validation rules in the models.

on Jun 22

From improveandrepeat.com

Pushing the Boundaries of Automated Code Generation With T4 and Beyond - Improve & Repeat

0 0

For the conclusion of this blog series, we look at the many options you have to continue from here and start your automation project.

on Jun 5

From improveandrepeat.com

Python Friday #229: OAuth2 and JWT to Protect a FastAPI Application - Improve & Repeat

0 0

OAuth2 and JWT based authentication needs a bit of code to use with FastAPI. Let us explore how we can secure our endpoints.

on May 31