Skip to content

Instantly share code, notes, and snippets.

@evolve2k
evolve2k / stripe_migration_plan.md
Last active April 20, 2023 06:02
Stripe Migration Plan

Undertaking a full account migration from one stripe account to another.

1. Stripe Supported Migration

The Stripe team can help with an import. Current (2023) they only help move the following models: Whether you ask the Stripe Team to do it for you (no cost) or you do it with their beta tool, what can be copied remains the same.

  • Customers (All or as specified)
  • Payment Method (Basically the credit card data)
name: publish
on: [workflow_dispatch, repository_dispatch]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
date > published.txt
git config user.name github-actions
@evolve2k
evolve2k / setting-up-email.md
Last active June 28, 2020 04:34
Setting up Email Accounts

Setting up Email

When you start a new organisation there are common useful email accounts. This article outlines what's useful to have and why.

Core Accounts

hello@example.com - Main public email address

Definitive guide to getting Postgres Running on MacOS

Background

In 2012 I posted a question on Stackoverflow that has since had over 180,000 views. When postgres stops running it has always felt like vodoo arts to get it back online and to this day has felt like mindless googling until the issue hopefully resolved.

This guide aims to pull together all the common issues in one place and create a definitive guide and workflow to getting postgres up and running on your Mac.

Why this mess?

YMCA Adelaide Hills • Sportspower • Hemp Hemp Hooray • Wu Tao • Bounce Inc • Sunflower Clinic • Jakem Farm • Pauls Farm • Strength From Within • The Aligned Body • Mt Barker-Hahndorf Golf Club • As Sweet as Honey • Red Cacao Chocolatier • Grounds for Coffee • Spirit Spa Body & Beauty • Wakefield Grange • Neutrog • Head Heart and Hands • Go Vita Health Store • The Seasonal Garden Café • Yvonne Ctercteko – Bowen Therapy • Ink Pot Arts Inc • All Seasons Organic Wholefoods • The Barker Hotel • Sun Protection Oz • Dale Gray • It’s It Solutions in Time • Jurlique • Remedy Bliss • Listening Hands Therapy • Adelaide Football Club • Farrago • Adelaide Hills Farmers Market • Miss Perez • Thermomix Magic Cooking Pot • Howards Vineyard • Unfold Yoga • Anita Seiler • Strength From Within • The Aligned Body • Camping World • River Pisces • Parous Wines • Mariana Mezic • IKON • Godfreys • Banner Mitre 10 • Weleda • Ngeringa Winery • Body Talk • Mt Barker Fodder Store • Indu Yoga • The Good Box Organics • Flight Centre • YM

@evolve2k
evolve2k / layout.yml
Created July 30, 2015 01:46
Squib example
Title:
extends: title # from hand.yml
font: FiraSans Regular 58 # Im currently doing this
color: '#F3EFE3'
align: center
spacing: -15
Art:
extends: art
@evolve2k
evolve2k / git_prompt.txt
Created October 21, 2014 06:40
Git color prompt
autoload colors && colors
# cheers, @ehrenmurdick
# http://github.com/ehrenmurdick/config/blob/master/zsh/prompt.zsh
if (( $+commands[git] ))
then
git="$commands[git]"
else
git="/usr/bin/git"
fi
@evolve2k
evolve2k / importer.rb
Last active August 29, 2015 14:02
Import without errors - when you ask for nested things.
# Actually Id also move all the rubbish out of the middle and make variables so it hurts your brain less.
# call the variables what you like, but see how it's like, sigh of releif.
# Make your brain pass the least amount of crap as possible.
# Encapsulation lets you hide ugly things inside nice little packages :)
require 'rubygems'
require 'nokogiri'
require 'open-uri'
domain_url = "http://prod3.agileticketing.net/websales/pages/"