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> | |
num_iterations = 1*1000*1000; | |
start_time = getTickCount(); | |
for(i=1; i<=num_iterations; i++) test(); | |
end_time = getTickCount(); | |
tot_time = end_time - start_time; | |
writeOutput("#tot_time#ms"); |
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> | |
max=10000; | |
persons = queryNew( | |
"lastname, firstname", | |
"cf_sql_varchar, cf_sql_varchar", | |
[ | |
[ "Lebowski", "Jeffrey" ], | |
[ "Lebowski", "Bunny" ], | |
[ "Lebowski", "Maude" ], |
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
user nginx; | |
# one(1) worker or equal the number of _real_ cpu cores. 4=4 core cpu | |
worker_processes 4; | |
# renice workers to reduce priority compared to system processes for | |
# machine health. worst case nginx will get ~25% system resources at nice=15 | |
worker_priority -5; |
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> | |
cftimer(label = "UnScoped", type = "outline"){ | |
for (i = 1; i LTE 1000000; i++){ | |
_site.foo = ""; | |
} | |
} | |
cftimer(label = "Scoped", type = "outline"){ |
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> | |
function prettyPrintJSON (inputJSON) { | |
var engine = createObject("java","javax.script.ScriptEngineManager").init().getEngineByName("nashorn"); | |
engine.eval(" | |
function prettyPrintJSON (data) { | |
return JSON.stringify(JSON.parse(data), null, '\t'); | |
} | |
"); | |
return engine.invokeFunction("prettyPrintJSON", [inputJSON]); | |
} |
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> | |
people = QueryNew( "name,dob,age", "varchar,date,int", [ | |
[ "Susi", CreateDate( 1970, 1, 1 ), 0 ], | |
[ "Urs" , CreateDate( 1995, 1, 1 ), 0 ], | |
[ "Fred", CreateDate( 1960, 1, 1 ), 0 ], | |
[ "Jim" , CreateDate( 1988, 1, 1 ), 0 ] | |
]); | |
Dump( var=people, label="people - origional query" ); |
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> | |
people = queryNew( | |
"id, firstName, lastName, email, country, ip_address", | |
"integer, varchar, varchar, varchar, varchar, varchar", | |
[{ | |
"id": 1, | |
"firstName": "Christopher", | |
"lastName": "Burton", | |
"email": "[email protected]", | |
"country": "Poland", |
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
component output="false" displayname="SimplePGP" { | |
public SimplePGP function init(Required String config="PDS") { | |
variables.logger = application.logbox.getLogger(this); | |
switch(arguments.config) { | |
default: { | |
variables.publicKeyPath = expandPath('/path/to/key.pub'); |
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
import time | |
import logging | |
try: | |
import serial | |
except ImportError: | |
print('Python serial library required, on Ubuntu/Debian: ' + | |
'apt-get install python-serial python3-serial') | |
raise |
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
<!--- https://commons.apache.org/proper/commons-csv/apidocs/org/apache/commons/csv/package-summary.html ---> | |
<cfset oCSV = createobject( "java", "org.apache.commons.csv.CSVFormat" )> | |
<cfset oParserObj = createobject( "java", "org.apache.commons.csv.CSVParser" )> | |
<cfdump var="#oParserObj#" expand="false"> | |
<cfset oIOFile = createobject( "java", "java.io.File" ).init( expandpath( "./CLIENTIMPORT.csv" ) )> | |
<cfset oCharset = createobject( "java", "java.nio.charset.StandardCharsets" )> | |
<cfset oFormat = oCSV.EXCEL.withDelimiter( "|").withFirstRecordAsHeader().withQuote(javacast("char","")).withRecordSeparator("\r\n")> | |
<cfdump var="#oIOFile#" expand="false"> |