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
<!-- Grab Google CDN's jQuery. fall back to local if necessary --> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | |
<script>!window.jQuery && document.write('<script src="js/jquery-1.4.2.min.js"><\/script>')</script> |
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
<cfoutput> | |
<cfset temp = createUUID() /> | |
<div> | |
UUID: #temp# | |
</div> | |
<div> | |
Size of UUID: #sizeOf(temp)# | |
</div> |
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
<cfcomponent output="false"> | |
<cffunction name="testing" access="public" returntype="string" output="false"> | |
<cfargument name="value" type="string" required="true" /> | |
<cfreturn '<strong>' & arguments.value & '</strong>' /> | |
</cffunction> | |
</cfcomponent> |
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
<cfset source = 'https://github.com/seancorfield/fw1/tarball/v1.2' /> | |
<cfset downloadPath = './' /> | |
<cfset downloadFile = 'test.tar.gz' /> | |
<cfhttp url="#source#" method="get" file="#downloadFile#" path="#downloadPath#" getAsBinary="true" /> |
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
* { | |
margin: 0; | |
padding: 0; | |
} | |
ul, | |
ol { | |
list-style: none; | |
} |
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
<cfcomponent output="false"> | |
<cfscript> | |
public component function init() { | |
variables.columns = []; | |
variables.extend = createObject('component', 'extend').init(); | |
return this; | |
} | |
public void function addColumn(struct options = {}) { |
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> | |
<title>External Links Example</title> | |
</head> | |
<body> | |
<h1>External Links Example</h1> | |
<div class="newWindow"> | |
<p> |
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
find . -name ".svn" -exec rm -rf {} \; |
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
<cfscript> | |
index action="purge" collection="test"; | |
testQuery = queryNew('key,body,title,something'); | |
for(i = 1; i < 15; i++) { | |
queryAddRow(testQuery); | |
querySetCell(testQuery, 'key', i); | |
querySetCell(testQuery, 'body', 'Testing: ' & i); |
OlderNewer