Skip to content

Instantly share code, notes, and snippets.

View rynobot's full-sized avatar

Ryan Ott rynobot

View GitHub Profile
@curtismchale
curtismchale / Three Wise Monkeys.md
Last active November 12, 2021 20:15
The NDA I use.

Date: [date]

Between us [company name] and you [customer name].

Summary:

In short; neither of us will share any confidential information about each-other, by any means, with anyone else.

What’s confidential information?

@srikat
srikat / style.css
Last active January 8, 2016 14:51
Sample CSS for styling Gravity Forms in Genesis. http://sridharkatakam.com/sample-css-styling-gravity-forms-genesis/
.entry .gform_wrapper {
max-width: 100%;
margin-bottom: 28px;
}
.gform_wrapper ul li.gfield {
margin-bottom: 20px;
}
.entry .gform_wrapper input[type=text],
@rynobot
rynobot / gist:9e8da8953f1d0016f702
Created March 6, 2015 00:48
Add Expires Header to WordPress
# Add the following to your htaccess file
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType image/x-icon "access 1 year"