View gist:2d73ae2834d1aa9944b221032dcb673b
This file contains 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
<cffunction name="createFavicon" access="public" returntype="void"> | |
<cfargument name="letter" type="string" required="true"> | |
<cfargument name="saveLocation" type="string" required="true"> | |
<!--- Set image dimensions (16x16 pixels) ---> | |
<cfset width = 16> | |
<cfset height = 16> | |
<!--- Create a buffered image with transparency ---> | |
<cfset BufferedImage = createObject("java", "java.awt.image.BufferedImage")> |
View winSCP.cfm
This file contains 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
<!--- | |
<cf_WinSCP action ="listdir" | |
username ="" | |
password ="" | |
host ="" | |
name ="qryDirectory" | |
directory ="" /> | |
<cf_WinSCP action="exists" | |
username ="" |
View coldfusion cert
This file contains 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
keytool -import -storepass [password] -noprompt -alias www.xxxxxxxx.com -keystore C:\ColdFusion8\runtime\jre\lib\security\cacerts -trustcacerts -file C:\ColdFusion8\runtime\jre\lib\security\xxx.cer |
View gist:b4c6921021530985d9a2
This file contains 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
<cffunction name="testCidrRange" output="false" returntype="boolean"> | |
<cfargument name="CIDR" required="true" type="string"> | |
<cfargument name="TestIP" required="true" type="string"> | |
<cfset var CIDRParts = ListToArray(arguments.CIDR, "/")> | |
<cfset var CIDRAddress = ListToArray(CIDRParts[1], ".")> | |
<cfset var CIDRMask = CIDRParts[2]> | |
<cfset var TestIPAddress = ListToArray(arguments.TestIP, ".")> | |
<cfset var CIDRRealAddress = 0> | |
<cfset var CIDRRealMask = 0> |
View gist:c7dc42b546c62e3c6110
This file contains 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
keytool -import -storepass changeit -noprompt -keystore C:\ColdFusion8\runtime\jre\lib\security\cacerts -trustcacerts -alias isecurus -file C:\inetpub\isecurus.cer |
View gist:c30f3d4ab46aa4362062
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Untitled Document</title> | |
</head> | |
<style> | |
.error {color:red} | |
</style> | |
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script> |
View spreadsheet.cfm
This file contains 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
<cfparam name="attributes.src" default="0"> | |
<cfparam name="attributes.query" default="q"> | |
<cfswitch expression="#thisTag.ExecutionMode#"> | |
<cfcase value="start"> | |
<cfset inputStream = CreateObject("java", "java.io.FileInputStream").init(JavaCast("string", attributes.src )) /> | |
<cfset XSSFWorkbook = CreateObject("java", "org.apache.poi.xssf.usermodel.XSSFWorkbook").init(inputStream) /> | |
<cfset DataFormatter = CreateObject("java", "org.apache.poi.ss.usermodel.DataFormatter") /> | |
<cfset Evaluator = CreateObject("java", "org.apache.poi.xssf.usermodel.XSSFFormulaEvaluator").init(XSSFWorkbook) /> |
View jquery.html
This file contains 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<script src="js/jquery-1.11.2.min.js"></script> | |
</head> | |
<body> |
View js-cfm.cfm
This file contains 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
<!--- 1 ************************************************************************ ---> | |
<cfset DateToday = now() /> | |
<cfdump var = "#DateToday#" /> | |
<script type="text/javascript"> | |
var d = new Date(); | |
console.log( d ) | |
</script> | |
<!--- 2 ************************************************************************ ---> |
NewerOlder