Tips Programming
24 results found
-
How to save and exit a file from Vim editor in Ubuntu linux
Vim (Vi IMproved) is an open-source text editor for Unix or Linux systems. It is a powerful text editor used in CLI commands. It is also a highly configurable text editor built to make creating and changing any kind of text very efficient.
-
[Day 1] Easy custom Identity in ASP.NET Core 3.1 login page
Custome Identity in ASP.NET Core 3.1 helps users login to your web page very easily. We also can manage users, change passwords, update profile data, manage roles, claims, tokens, email confirmation, and more.
-
Easy way to resolve dependency injection in ASP.Net Core
Dependency injection is an important technique in application programming in general and in asp.net core in particular. Dependency injection helps reduce the dependence of classes on each other while initializing them. Initializing instances of classes maybe only once for each request or when initiating the application, it helps make the short code and more maintainable.
-
How to add css to html page for BEST performance
Css is an important part of website development. It makes the website look more beautiful by It’s make layout for html documents. So how to add css to the html page? We have many ways to do it, such as: link css file external to html page, using tag to import css, write css inline or using javascript to include css in html.
-
3 ways to add Javascript to your Html web page.
Javascript is an important part to make website applications. As you know Css used to design GUI for websites but if only HTML & CSS we only make a static application, because we only can read & see it, we can’t interact with the application. Javascript will do this, it makes websites become dynamic and create interaction between users and applications.
-
Best way to design web responsive with Grid View in CSS
Today creating a responsive website is a necessity and also required for any developer when making a website. Responsive design is also known as mobile-first design. Google has long prioritized higher rankings for responsive websites.
-
How to center a div tag in CSS - horizontal & vertical align
If you are a programmer and familiar with CSS, you must know a very simple technique that is how to center a div in CSS?
-
ASP.Net Core bundle, minification and gzip Css and Javascript files
The bundle, minification statics files are very necessary with a web application. It helps reduce the file size of CSS & Javascript, thereby increases the page load speed of a website.
-
Read configuration value from appsettings.json in ASP.Net Core
In the Asp.Net web app or API to read config keys is very necessary. In this article, I will introduce to you the best way to read configuration value from appsettings.json in ASP.Net Core. I hope it will help you easily to learn Asp.net core.