Skip to content

Execute Commands

Software Application Articles

  • Home
  • NET Core
    • ASP.NET Core
    • Blazor
    • dotnet cli
    • WPF
  • Visual Studio
  • AI & ML
  • Design Patterns
  • Tools

Top 5 Integrated Development Environments (IDE)

January 2, 2021January 2, 2021 TauqirTools 183 views
executecommands.com tools

An Integrated Development Environment (IDE) is a software application that helps to develop software with great ease. It is a collection of tools and extensions that provides an environment to design, develop, test, and publish software. Without an IDE a […]

Read more

Top 7 Web Frameworks to Learn and Focus on in 2021

December 31, 2020December 31, 2020 TauqirTools 161 views
executecommands.com tools

There are a great number of Web Frameworks to learn and focus on, some offer all the features out of the box to build web applications that a scalable and handle a large number of user interactions and some are […]

Read more

Top 7 Programming Languages to Focus on in 2021

December 30, 2020December 31, 2020 TauqirTools 115 views
executecommands.com tools

There are more than 100 programming languages, some are built to solve specific problems and some are there to built general-purpose applications. The list is huge and creates a question, on how to pick the one that suits your need […]

Read more

Structural Design Patterns

December 27, 2020December 27, 2020 TauqirDesign Patterns 152 views
design-patterns-oop-csharp

Design Pattern provides a guideline (best practices) to solve a problem that might occur in software development. These Design Pattern solutions were obtained by various trials and test methods used by a huge number of developers over a very long […]

Read more

Bridge Design Pattern in C#

December 27, 2020December 27, 2020 TauqirDesign Patterns 141 views
design-patterns-oop-csharp

This is the seventh post in the Structural Design Patterns series and in this post, we will discuss the Bridge Design Pattern and its implementation using the C# programming language. The Bridge Design Pattern provides a way to decouple an […]

Read more

Decorator Design Pattern in C#

December 23, 2020December 27, 2020 TauqirDesign Patterns 144 views
design-patterns-oop-csharp

This is the sixth post in the Structural Design Patterns series and in this post, we will discuss the Decorator Design Pattern and its implementation using the C# programming language. The Decorator Design Pattern provides a way to add an […]

Read more

Flyweight Design Pattern in C#

December 20, 2020December 27, 2020 TauqirDesign Patterns 167 views
design-patterns-oop-csharp

This is the fifth post in the Structural Design Patterns series and in this post, we will discuss the Flyweight Design Pattern and its implementation using the C# programming language. The Flyweight Design Pattern provides a way to minimize memory […]

Read more

Composite Design Pattern in C#

December 16, 2020December 27, 2020 TauqirDesign Patterns 202 views
design-patterns-oop-csharp

This is the fourth post in the Structural Design Patterns series and in this post, we will discuss the Composite Design Pattern and its implementation using the C# progamming language. The Composite Design Pattern provides us a way to treat […]

Read more

Facade Design Pattern in C#

December 13, 2020December 27, 2020 TauqirDesign Patterns 175 views
design-patterns-oop-csharp

This is the third post in the Structural Design Patterns series and in this post, we will discuss the Facade Design Pattern and its implementation using the C# programming language. The Facade Design Pattern provides a simplified single interface for […]

Read more

Proxy Design Pattern in C#

December 10, 2020December 27, 2020 TauqirDesign Patterns 241 views
design-patterns-oop-csharp

This is the second post in the Structural Design Patterns series and in this blog post, we will discuss the Proxy Design Pattern and its implementation using the C# programming language. The Proxy Design Pattern provides an intermediate or a […]

Read more

SQLite Studio to manage SQLite databases

December 4, 2020December 4, 2020 TauqirTools 321 views
executecommands.com tools

In this blog post, we will discuss SQLite Studio, a great little management tool, that helps us to easily create and manage SQLite databases. It is a free, cross-platform, portable (no installation required), open-source tool, that can be used without […]

Read more

Adapter Design Pattern in C#

November 29, 2020December 27, 2020 TauqirDesign Patterns 223 views
design-patterns-oop-csharp

This is the first post in the Structural Design Patterns series and in this blog post, we will discuss the Adapter Design Pattern and its implementation using the C# programming language. The Adapter pattern is also known as the Wrapper […]

Read more

How to use Blazor EditForm for Model Validation

November 28, 2020November 28, 2020 TauqirASP.NET Core, Blazor 927 views
How to use Blazor EditForm for Model Validation 1

In this blog post, we will discuss how to use the Blazor EditForm for model validation. The EditForm component ships with the ASP.NET core package and allows us to easily validate user input and handle form submission events. Here in […]

Read more

How to add a new profile in Windows Terminal

July 18, 2020July 18, 2020 TauqirTools 1847 views
How to add a new profile in Windows Terminal 2

In this blog post, we will discuss how to add a new profile in Windows Terminal application and provide some customization like cursor shape, its color, background image, etc. Here we will use cmd.exe and create a new profile for it. […]

Read more

How to easily Customize Global Settings in Windows Terminal

June 24, 2020June 24, 2020 TauqirTools 1435 views
How to easily Customize Global Settings in Windows Terminal 3

In this blog post, we will discuss how to customize global settings in Windows Terminal. These settings are applicable at the terminal application level as well as all these settings override the profile settings.  If you are completely new to […]

Read more

Posts navigation

Older posts

Recent Posts

  • Top 5 Integrated Development Environments (IDE)
    Top 5 Integrated Development Environments (IDE)
  • Top 7 Web Frameworks to Learn and Focus on in 2021
    Top 7 Web Frameworks to Learn and Focus on in 2021
  • Top 7 Programming Languages to Focus on in 2021
    Top 7 Programming Languages to Focus on in 2021
  • Structural Design Patterns
    Structural Design Patterns
  • Bridge Design Pattern in C#
    Bridge Design Pattern in C#

Machine Learning

  • Machine Learning Model Generation – Simple Generic Process
    Machine Learning Model Generation – Simple Generic Process
  • Datasets for Machine Learning – Free to use
    Datasets for Machine Learning – Free to use
  • AI vs ML vs DL – The basic differences
    AI vs ML vs DL – The basic differences

NET Core

  • How to publish a Blazor Server Application to IIS
    How to publish a Blazor Server Application to IIS
  • The difference in Blazor Server and WebAssembly Application
    The difference in Blazor Server and WebAssembly Application
  • Exploring Blazor WebAssembly App Project Structure
    Exploring Blazor WebAssembly App Project Structure

Development Environment

  • Important Debugging Shortcuts of Visual Studio 2019
    Important Debugging Shortcuts of Visual Studio 2019
  • Top 7 Visual Studio 2019 extensions for Web Projects
    Top 7 Visual Studio 2019 extensions for Web Projects
  • Top 10 Productivity Tips and Tricks in Visual Studio 2019
    Top 10 Productivity Tips and Tricks in Visual Studio 2019

Design Patterns

  • Structural Design Patterns
    Structural Design Patterns
  • Bridge Design Pattern in C#
    Bridge Design Pattern in C#
  • Decorator Design Pattern in C#
    Decorator Design Pattern in C#

Categories

  • AI & ML
  • ASP.NET Core
  • Blazor
  • Design Patterns
  • dotnet cli
  • NET Core
  • Tools
  • Visual Studio
  • WPF

Tags

Blazor Application (9) Design Patterns (15) dotnet cli (12) Machine Learning (6) NET Core (29) NET Core Web (14) terminal (6) tools (10) Visual Studio 2019 (14) WPF (4)
  • About
  • Disclaimer
  • Privacy Policy
  • Contact
  • About
  • Disclaimer
  • Privacy Policy
  • Contact
Powered by WordPress | Theme: Astrid by aThemes.