Skip to content

Instantly share code, notes, and snippets.

View stvnrynlds's full-sized avatar
🤖
beep boop bop

Steven Reynolds stvnrynlds

🤖
beep boop bop
View GitHub Profile
{% assign other_tracking_url = "https://www.google.com/=" %}
{% if billing_address.name %}
<p>Dear {{ billing_address.name }},</p>
<p></p>
{% endif %}
<p>{% if fulfillment.item_count == item_count %}All{% elsif fulfillment_status == 'fulfilled' %}The last{% else %}Some{% endif %} of the items from order {{ name }} have now been shipped:</p>
<p>{% for line in fulfillment.fulfillment_line_items %}<img src="{{ line.line_item | img_url: 'small' }}" />{{ line.quantity }}x {{ line.line_item.title }}<br>
{% endfor %}</p>
<p>{% if requires_shipping %}They are being shipped {% if fulfillment.tracking_company %}via {{ fulfillment.tracking_company }} {% endif %}to the following address: </p>
@stvnrynlds
stvnrynlds / linklist.liquid
Created April 15, 2019 13:58 — forked from Bat-Chat/linklist.liquid
getting linklist json in shopify through liquid
@stvnrynlds
stvnrynlds / README.md
Last active November 5, 2018 22:01 — forked from DirtyF/README.md
Setup ruby with brew and rbenv

First, make sure you have command line tools installed:

xcode-select --install

Then open Terminal.app and type:

curl https://gist.githubusercontent.com/stvnrynlds/ce4999d3175bf41ff083d5e4665ab382/raw/085b17e1fb8bc00bbc408a4ccb2b808a5e3b0f15/setup-rbenv.sh | bash
@stvnrynlds
stvnrynlds / the-canon-chapters.json
Last active January 30, 2017 18:51 — forked from russianryebread/bible_books.json
Books of the biblical canon with chapters
{
"OT": {
"Genesis" : 50,
"Exodus" : 40,
"Leviticus" : 27,
"Numbers" : 36,
"Deuteronomy" : 34,
"Joshua" : 24,
"Judges" : 21,
"Ruth" : 4,
@stvnrynlds
stvnrynlds / uri.js
Created November 28, 2016 21:33 — forked from jlong/uri.js
URI Parsing with Javascript
var parser = document.createElement('a');
parser.href = "http://example.com:3000/pathname/?search=test#hash";
parser.protocol; // => "http:"
parser.hostname; // => "example.com"
parser.port; // => "3000"
parser.pathname; // => "/pathname/"
parser.search; // => "?search=test"
parser.hash; // => "#hash"
parser.host; // => "example.com:3000"