Skip to content

Instantly share code, notes, and snippets.

View jlamoree's full-sized avatar
💭
Really impressed with Microsoft® GitHub™

Joseph Lamoree jlamoree

💭
Really impressed with Microsoft® GitHub™
View GitHub Profile
component implements="coldbox.system.ioc.dsl.IDSLBuilder" {
/**
* This custom DSL will return whatever exists at the path specified within the ColdBox settings.
* Consider the following chunk of config.Coldbox [sic]:
* ```
* variables.settings = {
* search = {
* classfied = {
* solr_host = "classified.sneakybastard.com:8993",
@jlamoree
jlamoree / lucee-admin-password.sh
Last active July 19, 2021 01:10
A shell script to generate a Lucee Admin password hash using an input string and salt. Suitable for pasting into lucee-*.xml.*
#!/bin/bash
SHA_ALGORITHM=256
SHA_COUNT=5
LUCEE_PASSWORD=${1:-"_"}
LUCEE_SALT=${2:-"_"}
if [ $LUCEE_PASSWORD == "_" ]; then
LUCEE_PASSWORD=topsecret

Video Training

There is a video course on Pluralsight called Hands-on Ansible. It's pretty good, and includes a bit of content on Vagrant, since that's a nice way to spin up several disposable servers locally.

Ansible (the company) has a few introductory videos on their Ansible Resources page. Requires submitting an email address and a browser that allows Flash.

Books

I started with Mastering Ansible from Pack Publishing first, since it was at the top of the search results in Safari Books Online. It pretty good, but didn't seem remarkably different than the Ansible Documentation

I bough a bunch of eBooks from Amazon. I started with Ansible: Up and Running from O'Reilly. It's a solid book, and differed from Maste

@jlamoree
jlamoree / keybase.md
Created May 6, 2015 05:49
Keybase Proof

Keybase proof

I hereby claim:

  • I am jlamoree on github.
  • I am jlamoree (https://keybase.io/jlamoree) on keybase.
  • I have a public key whose fingerprint is A45A 2591 F326 0D90 CE92 E003 5F60 BC80 8C33 9808

To claim this, I am signing this object:

@jlamoree
jlamoree / users.csv
Created February 19, 2015 16:59
A sample CSV of user data
name email streetAddress city state zipCode
Reese Sauer Rhoda.Lemke@kenton.net 388 Josefa Trail Jamiehaven NH 41721-1975
Seamus Becker Zane@hugh.net 54840 Beryl Ridge Katelinshire NV 72054-8454
Keith McLaughlin Schuyler@nils.io 5320 Elmira Run East Isaias GU 40591-5539
Cathryn Carter Geraldine_Mayer@kariane.net 09575 Kamille Brooks West Olinchester ID 05530
Mekhi Reichert Mireille@myles.net 85405 Prudence Avenue West Trevor MA 31841-4822
Blair Bradtke Vincent_Jewess@elda.io 7393 Franz Village Carterland AL 55621-3168
Neoma Cronin Colton.Grady@shanna.io 4436 Laverne Springs Reichertfurt UT 58711
Mrs. Earnestine Stracke Junior.Treutel@angel.tv 56232 Shields Viaduct Ellatown IA 83064
London Harris Hipolito.Schumm@maximilian.ca 3113 Pollich Plains Estellaview CA 23011
@jlamoree
jlamoree / index.md
Last active August 29, 2015 14:13
Grants Management Glossary

GAO - Government Accountability Office

GPO - Government Publishing Office (http://www.gpo.gov/)

CFR - Code of Federal Regulations

FAR - Federal Acquisition Regulations

CCR - Central Contractor Registry (now part of SAM)

@jlamoree
jlamoree / index.md
Created June 20, 2014 15:58
Mach-II Questions for an Interviewee

Which versions of Mach-II have you used?

How do you like to install Mach-II? In the webroot or elsewhere? How do you like to configure mapping?

How do you organize your Mach-II XML files? Do you use modules?

At what point do you consider creating a subroutine to prevent duplication of event handler

How do you deal with the White Screen of Death? What is typically the cause?

@jlamoree
jlamoree / _.md
Created May 19, 2014 23:19
New and Updated Email Query Execution
@jlamoree
jlamoree / _.md
Created May 15, 2014 23:24
Time Diffs
@jlamoree
jlamoree / ckeditor-test.js
Last active January 12, 2021 21:04
Nightwatch.js test for CKEditor components
module.exports = {
test: function (browser) {
var ckeditor = "editor1",
testtime = new Date();
browser
.url("http://ckeditor.com/demo#standard")
.resizeWindow(1024, 820)
.waitForElementVisible("#cke_" + ckeditor, 5000)
.execute(