Skip to content

Instantly share code, notes, and snippets.

View asabaylus's full-sized avatar

Asa Baylus asabaylus

View GitHub Profile
@asabaylus
asabaylus / vsync-monitor.sh
Last active October 28, 2016 20:27
vsync-monitor
#!/bin/bash
# print last timestampe from last two log files
# "2016-10-28T14:21:28.022-04:00"
# compare the date to now and return if > 5 min
# convert date to unix epoch
if [ $# = 1 ]; then
now=$(date +"%F %T");
if [[ $(date -d `cat $(ls -1tr /syslog/vsynch/app*.log*) | grep "pushing changes" | cut -c1-19 | tail -1` +%s ) > `date -d "$1 secs ago" +%s` ]];
then echo "$now: VSYNC UP" >> /syslog/vsynch/vsync-monitor.log;
else mail -s "vsync down!" asa@baylus.com,cprocunier@gmail.com,parmstrong@ifthen.com < /dev/null;
@asabaylus
asabaylus / gist:5831604
Last active December 18, 2015 19:18 — forked from jdorrance/gist:5826119
#GLOBAL
HTTPRESPONSE="json"
SUCCESS="success"
#TEST
#UIARTFCT="org.acs.cq-code-476"
#UILOC="/appl/bamboo-home/xml-data/build-dir/393217/CQ5-MASTER-JOB1/ui/target/"
#AUTHORHOST="cmsautdev.acs.org"
#AUTHORPORT="443"
#AUTHORPROTOCOL="https://"
@asabaylus
asabaylus / gist:5489088
Last active December 16, 2015 19:59 — forked from joannaho/gist:5454699
Updated URLs for Production
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>International Center Search</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<!-- Search Engine Verify for Home Page -->
<meta name="msvalidate.01" content="3D92C0EE929BE04567ECFDE4F390DC96" />
<meta name="google-site-verification" content="xL7RtAlI13QtadjUtrjw9-TnDxGRYmO6ysBvEd9_xwQ" />
<meta name="y_key" content="1940ff70ba0e0bee" />
@asabaylus
asabaylus / gist:4334372
Last active December 9, 2015 21:59
CQ5 Preview Bookmarklet, remove the content frame and runs a page in the author instance with wcmmode=disabled; copy and paster into a bookmark
// paste the following into a new bookmark called CQ5 Preview
javascript:(function(){
function updateQueryStringParameter(uri, key, value) {
var re = new RegExp("([?|&])" + key + "=.*?(&|$)", "i");
separator = uri.indexOf('?') !== -1 ? "&" : "?";
if (uri.match(re)) {
return uri.replace(re, '$1' + key + "=" + value + '$2');
}
else {
return uri + separator + key + "=" + value;
@asabaylus
asabaylus / email-mamangement.html
Created September 5, 2012 20:44
Email App HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1"><title>
ACS Email Management
</title><meta id="storemsg" name="storemsg" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="application" content="Giving"/>
<!-- Search Engine Verify for Home Page -->
<meta name="msvalidate.01" content="3D92C0EE929BE04567ECFDE4F390DC96" />
<meta name="google-site-verification" content="xL7RtAlI13QtadjUtrjw9-TnDxGRYmO6ysBvEd9_xwQ" />
@asabaylus
asabaylus / gist:3310929
Created August 10, 2012 03:59
Load TypeKit using jQuery
(function() {
var config = {
kitId: "XXXXXXX",
scriptTimeout: 3000
}
, l = "wf-loading"
, d = "wf-inactive"
, h = $("html").addClass(l)
, t = setTimeout(function(){
h.removeClass(l).addClass(d);
@asabaylus
asabaylus / grunt.js
Created July 6, 2012 12:26
Jasmine Junit Reporter Scafolding
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: '<json:jquery.sessiontimeout.js.jquery.json>',
meta: {
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\n" : "" %>' +
@asabaylus
asabaylus / getGuidByName
Created November 18, 2011 02:43
Get GUID from User Name
var users = {
"a54bca8764-13bx5-8nln8s-0ga7d" : {
"name" : "Louise Voress",
"type" : "Committee",
"primarynominator" : "Dorrie Hutchison",
"reviewer1" : {"name" : "Tom Jones", "grade" : "A", "comments" : "", "status" : "Saved"},
"reviewer2" : {"name" : "Lucy Young", "grade" : "A", "comments" : "", "status" : "Saved"},
"adjudicator" : {"name" : "Steven Taylor", "recommendation" : "Yes", "comments" : "", "status" : "Saved"},
"os" : [
{"name" : "Kevin Joseph", "vote" : "Yes", "comments" : "", "status" : "Saved"},
@asabaylus
asabaylus / nginx
Created September 9, 2011 01:06
nginx init.d for v1.0.6
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemin
#
# chkconfig: - 85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
# proxy and IMAP/POP3 proxy server
# processname: nginx
# config: /usr/local/nginx/conf/nginx.conf
# pidfile: /usr/local/nginx/logs/nginx.pid
@asabaylus
asabaylus / gist:53378907a336cbbbce8b
Created July 2, 2015 14:49
Scrub HTML from input
'use strict';
var tagBody = '(?:[^"\'>]|"[^"]*"|\'[^\']*\')*',
tagOrComment = new RegExp(
'<(?:' +
// Comment body.
'!--(?:(?:-*[^->])*--+|-?)' +
// Special "raw text" elements whose content should be elided.
'|script\\b' + tagBody + '>[\\s\\S]*?</script\\s*' +