This file contains hidden or 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 ="" |
This file contains hidden or 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")> |
This file contains hidden or 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
| <cfexecute name="aws" arguments="configure set aws_access_key_id xxx"></cfexecute> | |
| <cfexecute name="aws" arguments="configure set aws_secret_access_key xxx"></cfexecute> | |
| <cfexecute name="aws" arguments="configure set region us-east-1"></cfexecute> | |
| <cfexecute name="aws" arguments="configure set output json"></cfexecute> |
This file contains hidden or 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
| CREATE OR REPLACE FUNCTION isNull(value_to_check ANYELEMENT, replacement_value ANYELEMENT) | |
| RETURNS ANYELEMENT AS $$ | |
| BEGIN | |
| RETURN COALESCE(value_to_check, replacement_value); | |
| END; | |
| $$ LANGUAGE plpgsql IMMUTABLE; |
OlderNewer