Code Master - A reference guide for programmer's

Programming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!

Tuesday, October 28, 2014

How to delete duplicate rows in SQL Server 2008

›
Imagine that you have a table like: create table T ( id int identity , colA varchar ( 30 ) not null , colB varchar ( 3...

Random Number Between 2 Double Numbers

›
public double GetRandomNumber(double minimum, double maximum) { Random random = new Random(); return random.NextDouble() * ...

Get the time difference between two datetimes [Solved]

›
var now = "04/09/2013 15:00:00"; var then = "04/09/2013 14:20:30"; moment.utc(moment(now,"DD/MM/YYYY HH:m...

JavaScript to change the opacity for an element

›
<html> <body> <p id="p1">Select a value from the list below, to change this element's opacity!</...
‹
›
Home
View web version
Powered by Blogger.