Skip to content

Instantly share code, notes, and snippets.

@youcoldfusion
youcoldfusion / animesh-dutta.html
Created December 14, 2017 13:19
Moved to a New GitHub Account
Moved to New GitHub Account:
Gist URL:
1)https://gist.github.com/animesh-dutta
GitHub URL:
2)https://github.com/animesh-dutta
@youcoldfusion
youcoldfusion / Building-Deployment-Automation.html
Created December 11, 2017 14:00
Building,Deployment and Automation
<!--The below web site is useful to support building, deploying and automating any project -->
https://jenkins-ci.org/
@youcoldfusion
youcoldfusion / CFMLFrameWorkMachIIVideos.html
Created December 11, 2017 13:49
Watch the videos for CFML MVC framework Mach-II (Shared by Animesh Dutta)
<!-- CFML Framework Mach-II:Video Tutorials by Animesh Dutta Follow the below links: -->
1)https://www.youtube.com/watch?v=KuGu5Q7OTDc
2)https://www.youtube.com/watch?v=85S_SQcAxVo
3)https://www.youtube.com/watch?v=1wqX1meXjxM
@youcoldfusion
youcoldfusion / mach-ii.html
Last active December 11, 2017 13:42
Download CFML MVC framework from the below link
<!-- You can download the CFML mvc framework mach-ii from the below link -->
http://mach-ii.com/
@youcoldfusion
youcoldfusion / SampleJSFile.html
Created December 11, 2017 13:34
A Sample Javascript file with HTML5
<!DOCTYPE html>
<html>
<body>
<h2>A Sample Javascript File</h2>
<p id="demo">It is a text from a paragraph</p>
<button type="button" onclick="myFunction()">Animesh:Click on the button</button>
@youcoldfusion
youcoldfusion / AppleDeveloper.html
Created December 11, 2017 13:28
Apple Developer Guide
https://developer.apple.com/library/content/navigation/
@youcoldfusion
youcoldfusion / Android.html
Created December 11, 2017 13:26
Android Developer Guide
https://developer.android.com/guide/index.html
@youcoldfusion
youcoldfusion / print.html
Created December 11, 2017 13:24
Print the current page
<!-- Print the current page -->
<!DOCTYPE html>
<html>
<body>
<p> Click the button and print the current page </p>
<button onclick="PrintIt()">Print</button>
@youcoldfusion
youcoldfusion / Party.java
Created December 11, 2017 13:18
A Sample Java Party Class
//Author:Animesh Dutta
class Party{
int id;
String name;
public static void main(String args[]){
Party s1=new Party();
System.out.println(s1.id);
System.out.println(s1.name);
}
@youcoldfusion
youcoldfusion / EmployeeDetailsPDF.cfm
Created December 11, 2017 13:12
Get Employee Details in pdf format
<!--- EmployeeDetails.cfm --->
<cfhtmltopdf>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
text-align: left;