Holder renders image

Bhaumik Patel 10:44 PM
Placeholders can have custom colors, fonts, resizing behavior, and rendering engine. DEMO function charsRandom(len, chars) { chars...Read More
Holder renders image Holder renders image Reviewed by Bhaumik Patel on 10:44 PM Rating: 5

ActionResult types in mvc

Bhaumik Patel 8:26 PM
Types of action results ActionResult Return Type You can create action methods that return an object of any type, such as a string, ...Read More
ActionResult types in mvc ActionResult types in mvc Reviewed by Bhaumik Patel on 8:26 PM Rating: 5
Performance measurement of Dictionary VS. Hashtable Performance measurement of Dictionary VS. Hashtable Reviewed by Bhaumik Patel on 9:17 PM Rating: 5
Cascading Dropdown List With MVC And AJAX Cascading Dropdown List With MVC And AJAX Reviewed by Bhaumik Patel on 8:41 PM Rating: 5
Display object properties DateTime Display object properties DateTime Reviewed by Bhaumik Patel on 8:53 PM Rating: 5
Class inheritance Constructor Test Class inheritance Constructor Test Reviewed by Bhaumik Patel on 9:41 AM Rating: 5

Extract digits from a string

Bhaumik Patel 5:06 AM
How to extract numeric values from input string c#. public static string ExtractDigits(string input) { return new String(input.Where(x...Read More
Extract digits from a string Extract digits from a string Reviewed by Bhaumik Patel on 5:06 AM Rating: 5
Difference between DateTime.Today and DateTime.Now Difference between DateTime.Today and DateTime.Now Reviewed by Bhaumik Patel on 8:43 PM Rating: 5
Replacing only characters using Regex in string C# Replacing only characters using Regex in string C# Reviewed by Bhaumik Patel on 3:53 AM Rating: 5
Replacing only numbers using Regex in string C# Replacing only numbers using Regex in string C# Reviewed by Bhaumik Patel on 7:20 PM Rating: 5
Canvas mouse over and mouse click Event Canvas mouse over and mouse click Event Reviewed by Bhaumik Patel on 8:24 PM Rating: 5

Add bounce effect on Click of the DIV

Bhaumik Patel 8:43 PM
How to add a bounce effect on the DIV $(function() { //Add bounce effect on Click of the DIV $('#bouncy').click(function()...Read More
Add bounce effect on Click of the DIV Add bounce effect on Click of the DIV Reviewed by Bhaumik Patel on 8:43 PM Rating: 5

Trim in C#

Bhaumik Patel 9:13 PM
Trim in C# using System; public class Program { public static void Main() { Console.WriteLine("Trim in C#\n"...Read More
Trim in C# Trim in C# Reviewed by Bhaumik Patel on 9:13 PM Rating: 5

Drag to draw lines on Canvas

Bhaumik Patel 2:05 AM
Draw a line on mouse drag on a canvas var canvas = document.getElementById("canvas"); var ctx = canvas.getContext("2d&q...Read More
Drag to draw lines on Canvas Drag to draw lines on Canvas Reviewed by Bhaumik Patel on 2:05 AM Rating: 5

Comparing strings in C#

Bhaumik Patel 8:32 PM
Comparing strings in C# using System; public class Program { public static void Main() { Console.WriteLine("Comp...Read More
Comparing strings in C# Comparing strings in C# Reviewed by Bhaumik Patel on 8:32 PM Rating: 5

Split a string in C#

Bhaumik Patel 8:33 PM
Split a string in C# using System; public class Program { public static void Main() { Console.WriteLine("Split a st...Read More
Split a string in C# Split a string in C# Reviewed by Bhaumik Patel on 8:33 PM Rating: 5

Highcharts pie Demo

Bhaumik Patel 11:48 PM
$(function() { $('#order_suggestions_graph_by_vendor').highcharts({ credits: { enabled: false }, chart: { ...Read More
Highcharts pie Demo Highcharts pie Demo Reviewed by Bhaumik Patel on 11:48 PM Rating: 5
Replacing characters, numbers using Regex in string C# Replacing characters, numbers using Regex in string C# Reviewed by Bhaumik Patel on 10:53 PM Rating: 5

C# Fibonacci Sequence

Bhaumik Patel 5:22 AM
C# Program to Generate Fibonacci Series. using System; public class Program { public static void Main() { Console.WriteL...Read More
C# Fibonacci Sequence C# Fibonacci Sequence Reviewed by Bhaumik Patel on 5:22 AM Rating: 5
Find even and odd numbers of a list of number Find even and odd numbers of a list of number Reviewed by Bhaumik Patel on 8:15 AM Rating: 5
How do I make the first letter of a string uppercase in JavaScript How do I make the first letter of a string uppercase in JavaScript Reviewed by Bhaumik Patel on 7:09 PM Rating: 5

Dot Net Core Send Email Using MailKit

Bhaumik Patel 8:33 PM
MailKit Send Email Using SMTP using System; using System.Collections.Generic; using System.Threading; using MailKit.Net.Smtp; using Mic...Read More
Dot Net Core Send Email Using MailKit Dot Net Core Send Email Using MailKit Reviewed by Bhaumik Patel on 8:33 PM Rating: 5
MVC Html.DropdownListFor selected value MVC Html.DropdownListFor selected value Reviewed by Bhaumik Patel on 6:54 AM Rating: 5

Parallel foreach vs foreach performance

Bhaumik Patel 6:08 AM
Parallel foreach vs foreach performance DEMO using System; using System.Diagnostics; using System.Threading; using System.Threading.Ta...Read More
Parallel foreach vs foreach performance Parallel foreach vs foreach performance Reviewed by Bhaumik Patel on 6:08 AM Rating: 5

AngularJS Sample Application - 3

Bhaumik Patel 6:26 AM
AngularJS Sample Student Application var mainApp = angular.module("mainApp", []); mainApp.controller('studentController...Read More
AngularJS Sample Application - 3 AngularJS Sample Application - 3 Reviewed by Bhaumik Patel on 6:26 AM Rating: 5

AngularJS Simple HTML Cart Example

Bhaumik Patel 6:51 AM
AngularJS Simple list item and add/Checked/Unchecked item example var app = angular.module("MyApp", []); app.controller(...Read More
AngularJS Simple HTML Cart Example AngularJS Simple HTML Cart Example Reviewed by Bhaumik Patel on 6:51 AM Rating: 5

AngularJS - HTML DOM Elements Bind

Bhaumik Patel 8:19 PM
Following directives can be used to bind application data to attributes of HTML DOM Elements. Sr.No. Name Description 1 ng-disable...Read More
AngularJS - HTML DOM Elements Bind AngularJS - HTML DOM Elements Bind Reviewed by Bhaumik Patel on 8:19 PM Rating: 5

AngularJS Sample Application - 2

Bhaumik Patel 7:27 PM
AngularJS - First Application ng-app − This directive defines and links an AngularJS application to HTML. ng-model − This directive bi...Read More
AngularJS Sample Application - 2 AngularJS Sample Application - 2 Reviewed by Bhaumik Patel on 7:27 PM Rating: 5

AngularJS - Directives

Bhaumik Patel 7:06 AM
AngularJS directives are used to extend HTML. ng-app − This directive starts an AngularJS Application. ng-init − This directive initia...Read More
AngularJS - Directives AngularJS - Directives Reviewed by Bhaumik Patel on 7:06 AM Rating: 5

AngularJS Sample Application

Bhaumik Patel 10:29 AM
NG Sample Application var mainApp = angular.module("mainApp", []); mainApp.controller('studentController', function...Read More
AngularJS Sample Application AngularJS Sample Application Reviewed by Bhaumik Patel on 10:29 AM Rating: 5

Welcome AngularJS World!

Bhaumik Patel 7:45 AM
Simple AngularJS Example angular.module("myapp", []) .controller("HelloController", function ($scope) { $s...Read More
Welcome AngularJS World! Welcome AngularJS World! Reviewed by Bhaumik Patel on 7:45 AM Rating: 5

ng-model bind input value AngularJS

Bhaumik Patel 7:53 AM
ng-model − This directive binds the values of AngularJS application data to HTML input controls. <div ng-app=""> <...Read More
ng-model bind input value AngularJS ng-model bind input value AngularJS Reviewed by Bhaumik Patel on 7:53 AM Rating: 5

Shadow Blink Using CSS

Bhaumik Patel 8:53 PM
How to create flashing/glowing div box using CSS3? @keyframes blink { 0% { box-shadow: 0 0 20px #EC7A44; } 50% { ...Read More
Shadow Blink Using CSS Shadow Blink Using CSS Reviewed by Bhaumik Patel on 8:53 PM Rating: 5

Simple CSS Menu

Bhaumik Patel 8:21 PM
Simple Horizontal Menu nav ul ul { display: none; } nav ul li:hover > ul { display: block; } nav ul { background: linear...Read More
Simple CSS Menu Simple CSS Menu Reviewed by Bhaumik Patel on 8:21 PM Rating: 5
Todo Using Knockout.js Todo Using Knockout.js Reviewed by Bhaumik Patel on 8:11 AM Rating: 5

Simple Single Page Template

Bhaumik Patel 8:25 AM
Simple One Page HTML Templates $('nav a').on('click', function () { var scrollAnchor = $(this).attr('data-scr...Read More
Simple Single Page Template Simple Single Page Template Reviewed by Bhaumik Patel on 8:25 AM Rating: 5
Find latitude and longitude with Google Maps IE9 Find latitude and longitude with Google Maps IE9 Reviewed by Bhaumik Patel on 8:16 AM Rating: 5

Remove a string in a string in C#

Bhaumik Patel 7:49 PM
Remove a string in a string in C# using System; public class Program { public static void Main() { Console.WriteLine(...Read More
Remove a string in a string in C# Remove a string in a string in C# Reviewed by Bhaumik Patel on 7:49 PM Rating: 5
Searching a string inside a string in C# Searching a string inside a string in C# Reviewed by Bhaumik Patel on 7:35 PM Rating: 5

Convert a JSON date to System.DateTime

Bhaumik Patel 8:18 AM
.Net Convert a JSON date to System.DateTime. using System; using Newtonsoft.Json; using Newtonsoft.Json.Converters; namespace JsonDa...Read More
Convert a JSON date to System.DateTime Convert a JSON date to System.DateTime Reviewed by Bhaumik Patel on 8:18 AM Rating: 5

EndsWith() in C#

Bhaumik Patel 8:48 PM
EndsWith() in C# using System; public class Program { public static void Main() { Console.WriteLine("EndsWith() ...Read More
EndsWith() in C# EndsWith() in C# Reviewed by Bhaumik Patel on 8:48 PM Rating: 5
Concat - Concatenate Two Strings in C# Concat - Concatenate Two Strings in C# Reviewed by Bhaumik Patel on 4:01 AM Rating: 5

Remove Duplicates Extension

Bhaumik Patel 8:00 AM
Remove Duplicates Extension From List C# using System.Collections.Generic; using System.Linq; using System; public class Program { ...Read More
Remove Duplicates Extension Remove Duplicates Extension Reviewed by Bhaumik Patel on 8:00 AM Rating: 5

Replace a string in a string in C#

Bhaumik Patel 8:14 AM
Replace a string in a string in C# using System; public class Program { public static void Main() { Console.WriteLine(&q...Read More
Replace a string in a string in C# Replace a string in a string in C# Reviewed by Bhaumik Patel on 8:14 AM Rating: 5

Reverse a string in C#

Bhaumik Patel 8:24 AM
Reverse a string in C# using System; public class Program { public static void Main() { Console.WriteLine("Hello Wo...Read More
Reverse a string in C# Reverse a string in C# Reviewed by Bhaumik Patel on 8:24 AM Rating: 5
Building a Hamburger Menu in UWP app using SplitView Building a Hamburger Menu in UWP app using SplitView Reviewed by Bhaumik Patel on 8:20 AM Rating: 5

Palindrome check in C#

Bhaumik Patel 7:15 AM
Palindrome checks in C# using System; public class Program { public static void Main() { Console.WriteLine("Palindr...Read More
Palindrome check in C# Palindrome check in C# Reviewed by Bhaumik Patel on 7:15 AM Rating: 5

Message Content Dialog in UWP app

Bhaumik Patel 7:47 AM
Different type of message dialog box in UWP 1. Show Message Dialog without title 2. Show Message Dialog with 3 Buttons (Yes,No,Cance...Read More
Message Content Dialog in UWP app Message Content Dialog in UWP app Reviewed by Bhaumik Patel on 7:47 AM Rating: 5

ODD or EVEN check in C#

Bhaumik Patel 8:13 AM
ODD or EVEN check in C# using System; public class Program { public static void Main() { Console.WriteLine("ODD or ...Read More
ODD or EVEN check in C# ODD or EVEN check in C# Reviewed by Bhaumik Patel on 8:13 AM Rating: 5
Sending WhatsApp Message using Dot Net CSharp Sending WhatsApp Message using Dot Net CSharp Reviewed by Bhaumik Patel on 10:34 PM Rating: 5