Skip to content

Instantly share code, notes, and snippets.

@stevereich
stevereich / application.cfc
Last active December 10, 2023 04:58
Commented Custom Application.cfc Template Boilerplate - Coldfusion
component output="false" {
/* **************************** APPLICATION VARIABLES **************************** */
// The application name. If you do not set this variable, or set it to the empty string,
// your CFC applies to the unnamed application scope, which is the ColdFusion J2EE servlet
// context.
THIS.name = "foo";
// Life span, as a real number of days, of the application, including all Application scope variables.
THIS.applicationTimeout = createTimeSpan(0, 1, 0, 0);
@stevereich
stevereich / bosskey.ahk
Created December 14, 2015 23:04
Boss Key Autohotkey Script - Minimize or Lock Windows with one click on tray icon
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Auto Execute Section Starts Here;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;Allow only one instance to run
#SingleInstance force
#Persistent
;Set tray tip and tray menu
@stevereich
stevereich / shuffle.cfm
Created October 13, 2012 01:50
Shuffle Array with Coldfusion
<cfscript>
CreateObject( "java", "java.util.Collections" ).Shuffle(variables.badwordArray);
</cfscript>
@stevereich
stevereich / pwGenerator.js
Created January 25, 2019 05:32
Javascript Random Password / String Generator Script
generatePassword = function(args){
// alpha array
var chars = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'],
// numeric array
numArr = [0,1,2,3,4,5,6,7,8,9],
// special character array
sChars = ['!','@','#','$','%','^','&','*','?'];
// set default values of args
var defaults = {};
defaults['len'] = 16;
@stevereich
stevereich / googleURL.cfc
Created September 27, 2012 05:43
Coldfusion Functions for Google URL Shortener API
<cfscript>
component output="false" {
public googleURL function init(apiKey)
description="Initialize this CFC as an object"
{
variables.apiKey = arguments.apiKey;
return this;
}
public string function ShortenURL(required string url)
@stevereich
stevereich / Mobile Router.md
Last active March 5, 2017 17:44
This is a component that will do simple regex check and seamlessly route user to an alternate mobile url. URL parameters can be passed to force back and forth and return to the default view.

Coldfusion Mobile Page Router

This is a small component that does a simple regex check of the user agent string, then routes to the specified mobile url. There are parameters you can set in the send() function.

@stevereich
stevereich / wordFilter.cfm
Created October 13, 2012 01:42
Form to demonstrate the bad word filter.cfc
<html>
<head>
<title>Bad Word Filter</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script language="JavaScript" type="text/javascript">
$(function(){
$filterBox = $('#filterBox');
$frmWords = $('#frmWords');
$thewords = $('#thewords');
$buttonCheck = $('#buttonCheck').click(function(){
@stevereich
stevereich / 0_reuse_code.js
Created May 22, 2016 00:35
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@stevereich
stevereich / EventMonitor.js
Created April 8, 2016 21:28 — forked from livingston/EventMonitor.js
Element event monitor, similar to Web Inspector's `monitorEvents`
(function (global) {
if ( !global.Event && !('keys' in Object) && !('bind' in Function) ) { return }
var eventProto = Event.prototype,
EVENTS = {
'mouse': [ 'click', 'dblclick', 'contextmenu', 'mousedown', 'mouseup', 'mouseover', 'mousemove', 'mouseout', 'drag', 'dragend', 'dragenter', 'dragleave', 'dragover', 'drop'],
'key': [ 'keydown', 'keypress', 'keyup', 'input'],
'res': [ 'load', 'unload', 'beforeunload', 'abort', 'error', 'resize', 'scroll', 'readystatechange' ],
'form': [ 'select', 'change', 'submit', 'reset', 'focus', 'blur' ],
'ui': [ 'DOMFocusIn', 'DOMFocusOut', 'DOMActivate', 'DOMCharacterDataModified', 'DOMNodeInserted', 'DOMNodeRemoved', 'DOMSubtreeModified' ],
@stevereich
stevereich / rt.cfm
Created January 26, 2016 13:39
Responsive Text CSS with Coldfusion
<cfscript>
// serve content as mime type css
getPageContext().getResponse().setcontenttype('text/css;charset=utf-8');
// supress whitespace with cfoutputonly
setting enablecfoutputonly="true";
// example of url varialbe call: /rt.cfm?height=1.25&weight=bold
// structure of default values, if not received in url
variables.baseSize = {
lineHeight = (structkeyexists(url,'size')) ? url.height : 1.5,
fontWeight = (structkeyexists(url,'size')) ? url.weight : 'normal'