Gul Md Ershad, C# Corner

Gul Md Ershad

C# Corner

Bengaluru, KA, India

Contact Gul

Discover and connect with journalists and influencers around the world, save time on email research, monitor the news, and more.

Start free trial

Recent:
  • Unknown
Past:
  • C# Corner

Past articles by Gul:

Python With PostgresSql, SQLAlchemy And Flask

This article explains the integration of Python with PostgresSqL using with SQLAlchemy and expose Rest Service by Flask → Read More

Railway Ticket Fare Calculation With Strategy Pattern

This article explains how to calculate Railway ticket fare by using Strategy Design Pattern. → Read More

Creating REST Service Using Flask And Python

This article will explain to create REST service by using Flask framework and Python. → Read More

Classify Twitter's Tweets Based On Naive Bayes Algorithm

This article explains the way to classify twitters' tweeted data based on Machine Learning's Naive Bayes Algorithm → Read More

Create Web API With .NET Core

This article explains the way to create webapi using Asp.net core and Microsoft visual studio core. → Read More

Story Of A Software Engineer In A Company

This is a story of an honest, skilled, and hardworking software engineer who works in a renowned multinational company. → Read More

Movie Ticket Booking And Semaphore

This article explains the role of Semaphore in the ticket booking of a movie by more than one seller. → Read More

House Price Prediction By Using Machine Learning

This article will explain to predict house price by using Logistic Regression of Machine Learning. → Read More

Dynamic Filter By Using Intercepting Filter Pattern

This article explains Dynamic Filter using Intercepting Filter Pattern → Read More

Navigation In Angular Between Different Routes

This article explains the navigation from one component's view to another component view with the help of router's navigation. → Read More

Thread Sick Software Engineer

This article will explain about such kind of software of engineer who thinks to use thread everywhere without thinking its side effect. → Read More

A Day With A Software Engineer Who Changes Text Labels Only

This article will explain the way Software Engineers, who never focus on technical learning and remain busy in text label changing only. → Read More

REST Service Call With Angular 4

This article will explain the concept of REST Service call in Angular 4. → Read More

Routing In Angular 4

This article will explain the concept of routing in Angular 4. → Read More

Eval And Hacker's Dream In JavaScript

This article will explain the concept of eval. What does eval do and why it is considered as an evil? How is it hacker's dream. → Read More

Filter In Angular 4

This article will explain the concept and the code of Filter in Angular 4. → Read More

Food Delivery Application Using Design Patterns

This article will explain the design and development of a food delivery application by using different kinds of design patterns. → Read More

AngularJS With RequireJS

One application with many JavaScript files has so many dependencies. Each file can be dependent on other JavaScript files. Now, we want to load each file. So, we will have to manually specify the orders and dependency orders of files. We will have to remember dependency orders of which file will be loaded first. If we add a new Script file then we will have to check the order of files again. If… → Read More

AngularJS Unit Testing With Jasmine

Introduction AngularJS always promotes and encourages the automated testing therefore the tests for the AngularJS code has been written in Jasmine. Jasmine is a framework for the testing of JavaScript code. Its a Behavior Driven Development (BDD) for testing JavaScript code. Basically, BDD is a software development process that has driven from Test Driven Development (TDD). AngularJS provides… → Read More

Transclusion For Directive In AngularJS

Introduction Transclusion provides a way to include a part into one or more document by reference. It is very important in "Directive" of AngularJS. It is required in Directive whenever Directive want to replace its original contents with new elements but want to use the original contents somewhere in the new elements. Transclude allows to pass an entire template, including its scope, to a… → Read More