Skip to content

Instantly share code, notes, and snippets.

View mgirouard's full-sized avatar
🤘

Michael Girouard mgirouard

🤘
View GitHub Profile
@mgirouard
mgirouard / generate-cert.sh
Created March 20, 2014 06:36
Self-signed certificate generator: expects $1 to be a hostname
#!/bin/bash
openssl req -new -newkey rsa:2048 -nodes -keyout $1.key -out $1.csr
openssl x509 -req -days 366 -in $1.csr -signkey $1.key -out $1.crt
# git project init
# What would you like to use as a branch prefix? [FOO]
# What deployment remotes would you like to define? [test prod stage]
# git project topic
# git project deploy
@mgirouard
mgirouard / jira-rest-enpoints.md
Created January 11, 2015 19:41
Useful JIRA Rest Endpoints

List all Agile boards

/rest/greenhopper/1.0/rapidview

The full web URL may be constructed by setting the rapidView query paramater to the /secure/RapidBoard.jspa endpoint. For example /secure/RapidBoard.jspa?rapidView=69.

Keybase proof

I hereby claim:

  • I am mgirouard on github.
  • I am mgirouard (https://keybase.io/mgirouard) on keybase.
  • I have a public key whose fingerprint is D5E3 AA4C C622 4D7D 4547 1CA6 1554 2317 50AB D834

To claim this, I am signing this object:

sc() {
sudo systemctl "$@.service";
}
curl http://beyondgrep.com/ack-2.14-single-file > ~/bin/ack && chmod 0755 !#:3
#!/bin/bash
t() {
if $(tmux list-sessions &> /dev/null); then
tmux attach
else
[[ $1 == "" ]] && SESSION_NAME='MISC' || SESSION_NAME=$1
tmux new-session -s $SESSION_NAME
fi
}
Verifying I am +mgirouard on my passcard. https://onename.com/mgirouard
Issue Type:

Documentation Report

Ansible Version:

1.9.2

Ansible Configuration:
<?php
/*
Plugin Name: Show Server Time
Description: Shows the current server time when scheduling posts. This is helpful when there is a time difference between your local computer and the remote server
Version: 0
Author: Michael Girouard
Author URI: http://www.lovemikeg.com/
*/