Skip to content

Instantly share code, notes, and snippets.

View drteresavasquez's full-sized avatar
:octocat:
BUILDING

Dr. Teresa Vasquez drteresavasquez

:octocat:
BUILDING
View GitHub Profile
@drteresavasquez
drteresavasquez / DesignSystemsTemplate.md
Last active July 9, 2025 17:59
Design Systems Template [/tokens/...]

Usage Examples (SCSS)

.card {
  background-color: var(--surface);
  color: var(--text);
  border: $border-width $border-style var(--border);
  border-radius: $border-radius-md;
  padding: $spacing-md;
 box-shadow: $elevation-1;
@ericdfields
ericdfields / gist:3d4ed9c7f7b559289a102207facd61a7
Created February 3, 2017 15:30
Add multiple items to an Amazon Cart with a single button
I've seen links around the web for a list of items and a single 'add to amazon cart' button.
I don't know how to do this more easily through an amazon-provided UI, but it seems that you can hack it together through URL params easy enough, like so:
https://www.amazon.com/gp/aws/cart/add.html?AssociateTag=your_tag&tag=your_tagQ&ASIN.1=B012NH05UW&Quantity.1=1&ASIN.2=B012M8LXQW&Quantity.2=1
* ASINs are the string after /dp/ in amazon URLs. (amazon.com/dp/string_is_here)
* Add as URL params w/ incrementing identifiers and quantity couplets (ASIN.1, Quantity.1, ASIN.2, Quantity.2…)