Category: Web development
A cheat sheet demonstrating an XSLT example for a number of commonly used transformation technuiques.For reference a link to a free online XSLT formatter.Shortcuts to each XSLT example covered in …
A simple guide, to explain how to change the WordPress database table prefix of your WordPress installation from its ‘wp_’ into something else .It is recommended that you change this …
Some recipes for using flex to reliably align items in your html files.The collection of recipes can also be found as a collection my CodePen site.1. Make a div box …
Some instructions on how to get started with a very simple TypeScript-based example in a Visual Studio Code development environment.1. Create a new Aurelia projectIf you’re unfamiliar with creating a …
An alternative and possibly simpler approach to getting set up and using Aurelia.The previous approach can be found at the following linkhttps://www.technical-recipes.com/2019/getting-started-with-aurelia-js/PrerequisitesThe Aurelia CLI has a pre-requisite, Node.js. Get it …
A collection for Aurelia / typescript / javascript as and when I encounter them.For a post on getting set up with Aurelia JS see this post:https://www.technical-recipes.com/2019/getting-started-with-aurelia-js/ https://www.technical-recipes.com/2019/getting-started-with-aurelia-js-part-2/1. Hello World!app.jsapp.htmlGiving the …
See this link for very similar instructions:https://www.typescriptlang.org/docs/handbook/asp-net-core.htmlStep 1: Create a new Asp.Net Core projectSelect Empty project:Click OK.Step 2: Add Microsoft.AspNetCore.StaticFiles via NuGetRight click on Dependencies and select Manage NuGet Packages:Select …
Some instructions on how to create implement basic authentication in a Web API application.Just follow what is shown in the steps and screenshots as shown:Step 1: Create a new ASP.NET …
Step 1: Create a new ASP.NET Web applicationStep 2: Install Unity through NugetAt the current time of writing the version used in the Package Manager Console was as follows:Step 3: …
See this post for creating simple Web Api applicationhttps://www.technical-recipes.com/2018/getting-started-with-creating-asp-net-web-api-services/Step 1: Create new Web API projectStep 2: Modify the Values controllerComment out requirement and add the requirement in ValuesController.cs …