Skip to content

Instantly share code, notes, and snippets.

View spacekitcat's full-sized avatar
👋

Lisa Burton spacekitcat

👋
View GitHub Profile
@spacekitcat
spacekitcat / deploy_cloud_formation.sh
Created October 13, 2018 20:12
Deletes, packages and redeploys a CloudFormation stack. Convenience for scripts for debugging automatic deploys.
#!/bin/bash
# October 2018.
# Written by Lisa Burton.
# Provided under the terms of the MIT license.
STACK_NAME='<<< YOUR_CLOUD_FORMATION_STACK_NAME >>>'
SAM_INPUT_TEMPLATE='<<< YOUR_SAM_FILE_HERE >>>'
SAM_OUTPUT_TEMPLATE='outputSamTemplate.yaml'
SAM_S3_BUCKET='<<< YOUR_S3_BUCKET_NAME >>>'
@spacekitcat
spacekitcat / motion-mailer-d
Created February 25, 2018 16:11
Initd script to bootstrap the watch command when the system starts up. The watch command periodically runs a bash script.
#!/bin/bash
screen -d -m sudo watch -n5 'bash /opt/bin/pop_motion_queue.sh'
@spacekitcat
spacekitcat / pop_motion_queue.sh
Created February 25, 2018 16:00
Find an email the latest output image from the motion service
#!/bin/bash
MOTION_TMP=/tmp/motion
TARGET_EMAIL=$TARGET_EMAIL_HERE
which motion
if [ ! $? -eq 0 ]
then
echo "Cannot find motion service in PATH, is it installed?"
exit 1
describe("ClientsideTextReplace 'doReplace' function", function() {
beforeEach(function() {
});
var createTestDocument = function() {
return document.implementation.createHTMLDocument("test doc");
}
describe("Is able to replace the core targets", function() {
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner v2.5.2</title>
<link rel="shortcut icon" type="image/png" href="lib/jasmine-2.5.2/jasmine_favicon.png">
<link rel="stylesheet" href="lib/jasmine-2.5.2/jasmine.css">
<script src="lib/jasmine-2.5.2/jasmine.js"></script>