Skip to content

Instantly share code, notes, and snippets.

View matiascarranza's full-sized avatar

Matias Carranza matiascarranza

View GitHub Profile
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
root = true
[*]
# Change these settings to your own preference

Templating engines and React.js

I want to make a shopify theme using react.

How shopify theming works

You have a bunch of template files that have access to global server-side variables with liquid e.g. {{ product.title }}. Think wordpress or any other theme-based system.

 /theme
@matiascarranza
matiascarranza / auth.sh
Created November 30, 2020 14:07 — forked from miguelmota/auth.sh
Auth0 Impersonate user API bash cURL script
# Auth0 Impersonate
USER_ID_TO_IMPERSONATE="auth0|57dc84..."
ADMIN_USER_ID="auth0|572b9..."
CLIENT_ID="uoKEkF5..."
CLIENT_SECRET="aMgJisByYhrLkV5..."
BEARER="xovAuOGGBKeJh..."
URL=`curl --request POST \