Skip to content

Instantly share code, notes, and snippets.

@roryl
roryl / closure.cfm
Last active January 14, 2017 16:31
Lucee 5 Lambda Examples
<cfscript>
myclosure = function(){
return "foo"
}
echo(myClosure());
</cfscript>
@roryl
roryl / server_scope.cfm
Created November 23, 2016 20:38
Lucee Server Scope
<cfscript>
writeDump(server);
</cfscript>
@roryl
roryl / bigInt.cfc
Last active October 27, 2016 13:58
Lucee Numeric Type
component {
public function init(){
}
function checkValue(){
}
@roryl
roryl / Application.cfc
Created October 22, 2016 12:42
Basic Application Settings
component {
this.name = "myapp";
this.timezone = "America/New_York";
}
@roryl
roryl / Application.cfc
Created October 22, 2016 12:35
Application.cfc Name
component {
this.name = "myapp";
}
@roryl
roryl / Application.cfc
Created October 22, 2016 12:21
Basic Lucee Application
component {
}
@roryl
roryl / Application.cfc
Created August 8, 2016 11:37
Application.cfc Extension Sample
component extends="baseApp" {
}
@roryl
roryl / Application.cfc
Last active August 8, 2016 11:18
Lucee Parallel Functions Example
component {
}
@roryl
roryl / Application.cfc
Last active June 6, 2016 12:54
Lucee Concurrency Examples
component {
}
@roryl
roryl / Application.cfc
Last active May 3, 2016 13:09
Lucee onMissingMethod Examples
component {
this.triggerDataMember=true;
}