Create a new SSH key: ssh-keygen -t rsa
Accept default location, enter a password.
Enter file in which to save the key (/c/Users/user.name/.ssh/id_rsa):
<!--- Child CFC, extends Parent ---> | |
<cfcomponent displayName="ChildTag" output="false" accessors="true" extends="ParentTag"> | |
<cfproperty name="wibble" type="string" required="true" /> | |
<cffunction name="setData" output="false" returntype="void"> | |
<cfargument name="data" type="string" required="true" /> | |
<cfset super.setData(arguments.data & " via Child.") /> | |
</cffunction> |
function finish { | |
/Applications/ColdFusion11/cfusion/bin/coldfusion stop | |
} | |
trap finish 2 | |
/Applications/ColdFusion11/cfusion/bin/coldfusion start | |
tail -f /Applications/ColdFusion11/cfusion/logs/coldfusion-out.log |
NameSpace.moduleName = function($) { | |
// Private variable, global to the module. | |
var _foo; | |
// Private variable, global to the module. | |
// Will represent a jQuery object. | |
var $_bar; | |
// Constructor | |
var init = function() { |
function finish { | |
/Applications/ColdFusion2016/cfusion/bin/coldfusion stop | |
} | |
trap finish 2 | |
/Applications/ColdFusion2016/cfusion/bin/coldfusion start | |
tail -f /Applications/ColdFusion2016/cfusion/logs/coldfusion-out.log |
{ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"font_face": "Hack", | |
"font_size": 14, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"trim_trailing_white_space_on_save": true |
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"AdvancedNewFile", | |
"BracketHighlighter", | |
"CFML", |
<cfcomponent output="false" displayname="Spreadsheet Service"> | |
<cffunction name="init" access="public" output="false" returntype="SpreadsheetService"> | |
<cfreturn this /> | |
</cffunction> | |
<cffunction name="createFromQuery" access="public" output="false" returntype="void"> | |
<cfargument name="data" type="query" required="true" /> | |
<cfargument name="xlsx" type="boolean" required="false" default="false" hint="File extension is xlsx (true) or xls (false)." /> | |
<cfargument name="fileName" type="string" required="false" default="" hint="Final file name sent to the browser." /> | |
<cfset var config = { |
{ | |
"name":"Test", | |
"debug":true, | |
"console":true, | |
"web":{ | |
"host":"test.localhost", | |
"webroot":"wwwroot", | |
"directoryBrowsing":false, | |
"welcomeFiles":"index.cfm", | |
"http":{ |
While updating my cfquery-to-json repoistory to use the latest ColdFusiuon 2016 functions, I was amazed at how much less code it takes to return the same data structures.
/**
* Convert n query object to an array of structs.
* @param required query data Query Object
* @return array
*/