My Blog

Sharing programming insights since 2015. 160 articles (and counting!) filled with real-world experience and practical tips.

    How to disable a Nuget Feed in a .NET project

    Most of us use private feeds in NuGet for storing our NuGet Packages. However, some projects might have stricter security restrictions that others, making it necessary to disable certain feeds to avoid using them as references.

    To “blacklist” feeds, you can use the following configuration:

    Read the complete article

    Create an Azure Function with Storage Table in Visual Studio Code

    Back in 2017, I wrote an article about how to program an Azure Function in Visual Studio. With the current article I want to give the current state of creating Functions, this time in Visual Studio Code.

    We are going to create a GET Function that retrieves all the rows from an Azure Storage Table and returns them the caller.

    Here are the steps from scratch:

    Read the complete article

    Edit multiple rows in MSSQL after filtering the table

    The past days I had to change multiple rows of an MSSQL table after filtering its content with a WHERE clause.

    For this task you get great support from MSSQL Management Studio by using the criteria view of the tables data.

    Read the complete article

    How to solve the "Property or method XXX is not defined on the instance but referenced during render" in Vue.js

    One common error during my first steps with Vue was the following, that is logged in the console of your browser:

    *vue.js:634 [Vue warn]: Property or method “XXX” is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. See the documentation for declaring reactive properties.

    Read the complete article

    How to export the schema and the data of an MSSQL-DB into an .sql script

    One way to make a back-up file of your MSSQL Database is by exporting its schema, and optionally its data, into a new .sql script. The script can be automatically generated via the MSSQL Management Studio tool. Here is how:

    Read the complete article