Skip to main content

Posts

Showing posts from October, 2019

Bundling and Minifying In ASP.NET Core Applications

Bundling and Minification are two distinct performance optimizations you can apply in a web app. Used together, bundling and Minification improves performance by reducing the number of server requests and reducing the size of the requested static assets. Bundling combines multiple files into a single file. Bundling reduces the number of server requests that are necessary to render a web asset, such as a web page. Minification removes unnecessary characters from code without altering functionality. The result is a significant size reduction in requested assets (such as CSS, images, and JavaScript files). An Easier Way - The Bundler and Minifier Extension, Following Steps: 1.       Go to the Visual studio > 2.       Go to the Extensions (near to visual studio tool) 3.       Go to the Manage Extensions 4.       Now, Install the Bundler and Minification 5.  ...

Key Differences of Python 3.x, Python 2.x, and Python 1

Python is an Interpreted, Interactive, Object-Oriented, and high-level programming language and it has a design philosophy that emphasizes code readability. Python is created by Guido van Rossum and the first released on 20 February 1991; around 26 years ago. Python features a dynamic type system and memory management automatically. It also supports multiple programming paradigms like – 1.       Object Oriented 2.       Functional 3.       Procedural 4.       Imperative 5.       Comprehensive standard library Explore for more detail about Python's benefits, features and others . Why Are There Different Versions of Python? There were many versions of pythons since its release in 1994.The following python versions are major and notable minor releases. The releases of python 2.7 and 3.X are stable versions The Key Differences betwee...

Top 10 ASP.Net Core Online Test

The .NET Core is an  open-source ,  cross-platform  that runs on Windows, macOS and Linux developed by Microsoft. It also supports almost all things that .NET supported. The .NET Core is higher performance, quick leaner, and lots of improvements of .NET The .NET Core provides .net  CLI  (Command Line Interface) The .NET Run-time provides a type system, assembly loading, a garbage collector, native interop and other basic services. Q1: ASP.NET Core is an ...... framework? A) Licensed B) Obsolete C) Open-sourced D) UI Correct Answer >> C) Open-sourced Q2: Which of the following platforms support ASP.NET Core? A) Windows B) Mac C) Linux D) All the above Correct Answer >> D) All the above Q3: ASP.NET Core applications can target which one of the following? A) .NET Framework 4.0+ B) .NET Core/div> C) .NET Standard D) All of the above Correct Answer >> D) All of the above Q4: By def...

Angular filter between two dates

How to Angular 6+ filter records between two dates? The Angular Filters are used to display or modify the live data as per your filter text. We can write the filter expression using the pipe (|) character i.e. {{ yourData| filterTypes }} There are different types of filter which are given below. 1.       Uppercase Filter                                    2.       Lowercase Filter 3.       Currency Filter 4.       OrderBy Filter 5.       Filter Example 1 : let users: any [] = [{ "id" : 1, "name" : "Anil Singh" , "date" : "2019-06-01" },     { "id" : 2, "name" : "Sunil" , "date" : "2019-08-07" },     { "id" : 3,...

Convert crt to pfx | convert p7b to pfx | PKCS#7,12 to pfx online

PFX files usually have extensions such as .pfx and .p12. PFX files are typically used on Windows machines to import and export certificates and private keys. When converting a PFX file to PEM format, OpenSSL will put all the certificates and the private key into a single file. The recommended SSL Converter to convert CRT to PFX online. What is the difference between PFX and CER? CER is a file extension for an SSL certificate file format used by Web servers to help verify the identity and security of the site in question. SSL certificates are provided by a third-party security certificate authority such as VeriSign, GlobalSign or Thawte. This certificate contains information about the certificate's owner along with public and private keys. PFX - stands for personal exchange format. It is used to exchange public and private objects in a single file.