Skip to content

Instantly share code, notes, and snippets.

View underdown's full-sized avatar

Ryan Underdown underdown

  • Classy Closets
  • Phoenix, AZ
View GitHub Profile
@underdown
underdown / index.html
Created July 14, 2020 20:31
playing with overlays
<div ID="container">
<div class="highlight hidden"></div
</div>
@underdown
underdown / index.html
Created July 14, 2020 17:54
Pricing Guide Alternate Mobile
<div class="container sixforty">
<h2 class="pricing-headings"> DESIGN TO
YOUR BUDGET</h2>
<p style="text-align:center">The cost of your home storage solution is
driven by the complexity of the design and the
materials you choose. Consider the options for
a reach-in closet below, to see how your
design consultant will guide you in your
selections based on your budget.</p>
<p style="text-align:center">*Prices and materials will vary by location.</p>
@underdown
underdown / index.html
Created July 14, 2020 17:05
Pricing Guide Alternate Mobile
<div class="container sixforty">
<h2 class="pricing-headings"> DESIGN TO
YOUR BUDGET</h2>
<p style="text-align:center">The cost of your home storage solution is
driven by the complexity of the design and the
materials you choose. Consider the options for
a reach-in closet below, to see how your
design consultant will guide you in your
selections based on your budget.</p>
<p style="text-align:center">*Prices and materials will vary by location.</p>
@underdown
underdown / index.html
Created July 14, 2020 13:14
Pricing Guide Alternate Mobile
<div class="container sixforty">
<h2 class="pricing-headings"> DESIGN TO
YOUR BUDGET</h2>
<p style="text-align:center">The cost of your home storage solution is
driven by the complexity of the design and the
materials you choose. Consider the options for
a reach-in closet below, to see how your
design consultant will guide you in your
selections based on your budget.</p>
<p style="text-align:center">*Prices and materials will vary by location.</p>
@underdown
underdown / wp-post-revisions.sql
Created December 12, 2019 18:13
Grab revisions from a wordpress post/page
# Find the initial post id by looking at a revision and then seeing what the post parent is. CHandler is 814
SELECT * FROM `wp_posts` WHERE `post_parent` = "814" ORDER BY ID DESC
@underdown
underdown / cloudflare-letsencrypt-ubuntu-16.04.sh
Created February 13, 2019 18:39
set up auto renewing lets encrypt cert on a website behind cloudflare on ubuntu 16.04
sudo apt-get update
sudo apt-get install software-properties-common
sudo add-apt-repository universe
sudo add-apt-repository ppa:certbot/certbot
sudo apt-get update
sudo apt-get install certbot python-certbot-apache
sudo apt install python3-pip
sudo pip3 install certbot-dns-cloudflare
sudo touch ~/cloudflare.txt
sudo printf 'dns_cloudflare_email = user@mail.com \n
@underdown
underdown / sendy.sql
Last active November 14, 2018 00:37
some queries
INSERT INTO subscribers (email, name, list, confirmed)
SELECT email, name, "1", "1" FROM tmp1;
UPDATE `subscribers` SET `list`=3, `confirmed`=1 WHERE 1
INSERT INTO subscribers (email, name, list, confirmed)
SELECT email, name, "1", "1" FROM tmp1
@underdown
underdown / oc-orders-products.sql
Created November 8, 2018 23:26
Add product details to orders data in opencart
SELECT
*
FROM
oc_order o
LEFT JOIN
oc_order_product op
ON (o.order_id = op.order_id)
WHERE EXISTS (
SELECT
*
@underdown
underdown / queryCustomers.php
Created October 19, 2018 19:39
OpenCart query select all orders
SELECT
*
FROM
oc_order o
LEFT JOIN
oc_customer oc
ON (o.customer_id = oc.customer_id)
WHERE EXISTS (
SELECT
*
@underdown
underdown / affiliate-tracking.php
Created October 19, 2018 15:02
Affiliate tracking
<?php
foreach($_GET as $k=>$v)
$affline=$affline."&".urlencode($k)."=".urlencode($v);
$affline=substr($affline,1);
?>
//place this at the very top of the page
//decorate links with: <a href="http://mydomain.com/?<?php echo $affline; ?>">link</a>