Convert your sketch to HTML code with Sketch2Code: Microsoft AI

You can find all .Net core posts here. Yesterday I was going through different articles as usual and one site attracted my attention. It is a brand new AI project from Microsoft called Sketch2Code and it is absolutely free of cost. What is Sketch2Code? As the name suggests, it is a site which converts your sketch into … Continue reading Convert your sketch to HTML code with Sketch2Code: Microsoft AI

Advertisement

Generate an exe for the .Net Core console apps: .Net Core Quick posts part 5

You can find all .Net core posts here. In this quick post, we will see how to create an exe from .Net Core console application. Little background When we create a console application using .Net Core, you will notice that the exe would not be created when you build the application. Let us quickly create an application … Continue reading Generate an exe for the .Net Core console apps: .Net Core Quick posts part 5

Handpicked Useful posts: Microsoft Tech stack

You can find all .Net core posts here. From today on wards, I am starting a series in which I will put together some useful posts from different people from the community. I would not be able to post the links everyday but I will hand pick all the useful links which are recently published and will … Continue reading Handpicked Useful posts: Microsoft Tech stack

Disabling parts of ASP.NET Core Identity

Re-blogged from Damien’s site.

Software Engineering

This article shows how to disable parts of ASP.NET Core Identity in a Web Application. In the ASP.NET Core Identity, the Identiy UI is deployed as part of the NuGet package. So per default everything is enabled and you have to opt-out, unlike the older versions which was opt-in. If you are not careful, this could cause security holes in your application. It is important that you disable the parts of Identity which you do not use!

To demonstrate this, the register process will be disabled. Sometimes, the users are imported or defined using an existing application/process, and the application should not be allowed to register users, so it needs to be deactivated. Per default, it is added and needs to be removed. The default Register Razor Page can be reached at the following URL:

“App base URL”/Account/Register

To turn this off, you need to scaffolding the Razor Page into…

View original post 96 more words

KeyValue pipe in Angular 6.1

Note – You can find the source code of my sample application here. You can find all .Net core posts here. Angular 6.1 is recently announced with some interesting features. One of those features is, the key value pipe. Currently, there is not any straight forward way to iterate an object keys using ngfor in Angular I have seen … Continue reading KeyValue pipe in Angular 6.1