Skip to content

Instantly share code, notes, and snippets.

@elpete
elpete / Lucee Extensions in Docker on Startup.txt
Last active February 17, 2017 15:09 — forked from anonymous/docker-log.txt
Lucee Extensions in Docker on Startup
2017-02-17T09:37:44Z @guustnieuwenhuis @ are the lucee environment variables implemented in the docker images?
2017-02-17T09:38:07Z @bdw429s @guustnieuwenhuis Can you explain what you mean?
2017-02-17T09:38:59Z @guustnieuwenhuis lucee has environment vraiebles like `lucee.preserve.case` %28full list: <https://docs.google.com/spreadsheets/d/10s-nn_FsoSD_RiLwjYZICacCoC386SjkEGT3pOfBJVU/edit#gid=0>%29
2017-02-17T09:39:36Z @guustnieuwenhuis I’m wondering if I can set `lucee.preserve.case` in my docker compose file
2017-02-17T09:40:05Z @guustnieuwenhuis like with `SMTP_SERVER` for example
2017-02-17T09:40:22Z @bdw429s Funny, I was about to post about a few of those. I don%27t know enough about Docker, but I assume you can set whatever props you want when starting the container.
2017-02-17T09:47:09Z @bdw429s So a quick note to everyone who was talking to me about how to install Extensions the other day. Micha reminded me of some java system properties that managed to not make it into the docs anywhere. One of th
@elpete
elpete / nest.cfm
Created August 26, 2016 14:46 — forked from anonymous/trycf-gist.cfm
Convert Flat to Nested Data Structure
<cfscript>
function groupBy( collection, callback ) {
var grouping = {};
for ( var item in collection ) {
var key = callback( item );
if ( ! grouping.keyExists( key ) ) {
grouping[ key ] = [];
}
grouping[ key ].append( item );
@elpete
elpete / index.html
Created February 24, 2016 19:44 — forked from anonymous/index.html
JS Bin Quick Selection Box // source http://jsbin.com/nigaki
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Quick Selection Box">
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
@elpete
elpete / cfml-general-log.md
Last active January 23, 2016 18:06 — forked from anonymous/cfml-general-log.txt
Slack Chat about OOP in CFML

OOP in CFML Discussion

CFML Slack

January 14, 2016

Unrelated messages omitted for brevity.

Punctuation and spelling not touched.

tbrown [11:14 AM]