Skip to content

Instantly share code, notes, and snippets.

View jhoughtelin's full-sized avatar
💭
Breathing Oxygen

Josh Houghtelin jhoughtelin

💭
Breathing Oxygen
View GitHub Profile
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDZlbdhHUydYCiP0gBSZDtNQq4k4wzy2WHCb0ItV2uSlR8wCumPTsTJ7Obj7MnpaM04upEsvUZ+IIKkmcvyYXbkOmN4543lHAasvDtWy8f7cnXv1ga0RDr4Peen8/UBh4AjWiK1kmoj3R9DFTArNEg1GQmCtfwQembT2JioxfdMkjfjk5505khJbLdfrJ9rd2Gq7ufK3aUrIWqBHPb9wf1nEyZrURK5BftuJ+mNyrZkXUz9dQ3Bfl7FyQzXtA4lInZbNbL1c28kG49jY2D4ey8lJzIGjrqtm+oGE9dIKD8EBYcekp1wmcb3dHY+T9thGdphL3sBPU/3sNiI8E/w18+OEpk+32GA2a2JK+J5C/rFBr0mniuDSUo56WoLF2HvE09ScK5Ywpj2A7CHY1f6YVFDwD9n+fdr0TKzznfVzl+ue8SVBfoC5gOEzcDKnp886MY1fG/Oceuu7sFTE230SbCv9wio//fe9/CiN/T0Y28CMJNtkWQ5QCXlERkU3tXdA00= houghtelin@Haqd-M1.local
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Email Standard</title>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
@jhoughtelin
jhoughtelin / .gitignore
Last active November 22, 2016 17:43
Wordpress site .gitignore
# Config
wp-config.php
local-config.php
# IDE
.idea
# OS Files
.DS_Store
cgi-bin
@jhoughtelin
jhoughtelin / book now button example on result list
Created May 7, 2015 16:48
Book Now Button on Results List
<?php if(isset($_GET['search']['arrival']) && isset($_GET['search']['departure'])) : ?>
<a href="<?php echo site_url() . "/vrp/book/step1?obj[Arrival]=".$_GET['search']['arrival']."&obj[Departure]=".$_GET['search']['departure']."&obj[PropID]=".$a_unit->id;?>"
data-unit="<?php echo $a_unit->id; ?>"
class="button small">
<i class="fa fa-fw fa-lg fa-calendar"></i>
Reserve now
</a>
<?php endif; ?>
@jhoughtelin
jhoughtelin / jQuery UI Date Selector Disabled Dates
Last active August 29, 2015 14:20
jQuery UI Date Selector Disabled Dates
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<link type="text/css" href="https://code.jquery.com/ui/1.11.4/themes/black-tie/jquery-ui.css" rel="stylesheet">
<script type="text/javascript">
@jhoughtelin
jhoughtelin / gitlab.sh
Last active January 2, 2016 11:48 — forked from aortmannm/gitlab.sh
# Some Minor changes to un-break the script for...
#
# Joyent Instance (Base64 13.3.0)
## Install necessary packages
pkgin up
pkgin -y in \
bash \
coreutils \