This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fromAddress = new MailAddress("[email protected]", "Balaji Iyengar"); | |
var toAddress = new MailAddress("[email protected]", "c# balaji"); | |
const string fromPassword = "xyz"; | |
const string subject = "My First c# mail"; | |
const string body = "Yay,it worked."; | |
var smtp = new SmtpClient | |
{ | |
Host = "smtp.gmail.com", | |
Port = 587, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Create procedure sp_createInstallment | |
( | |
@studentId int, | |
@installmentNo int, | |
@monthlyPattern int, | |
@preferredDate date, | |
@perferredAmount money | |
) | |
AS | |
Begin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.arungudelli.com/javascript/most-useful-javascript-tips-and-tricks/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://lynckia.com/licode/install.html | |
http://dev.w3.org/2011/webrtc/editor/webrtc.html | |
http://www.html5rocks.com/en/tutorials/webrtc/basics/ | |
MediaStream --> Get Access To Devices; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 | |
http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.gordondickens.sample</groupId> | |
<artifactId>sample-parent</artifactId> | |
<version>1.0.0</version> | |
<packaging>pom</packaging> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For Iteration(Fastest) | |
for (int i = Object.size(); i > 0; i--) { | |
Object.get(i); | |
} | |
spring jdbc mapper | |
/** | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ajax: | |
$$.ajax( | |
url:"", | |
type:"", | |
data:"", | |
success:function(data) | |
{ | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Files in A Commit | |
git show --pretty="format:" --name-only commitRSA (To see th list of files in the commit) | |
git ls-tree --name-only -r <commit-ish> (Files in a commit) | |
git diff HEAD~1 --name-only | |
Removing Files From a Commit | |
git reset --soft HEAD~1(could be Head~2 in case you've resolved conflicts or are in between merge) | |