Skip to content

Instantly share code, notes, and snippets.

Easyship Open API for Shopmatic

This documentation comes in addition to the main Easyship API documentation to offer additional functionality.

The API endpoints dedicated to Shopmatic can be used to create users and stores, create stores for existing users, get rates and get categories.

For any questions related to the Easyship API, please contact api-support@easyship.com

POST Create and link a new Shopmatic user

@alChaCC
alChaCC / brew-java-and-jenv.md
Last active July 23, 2020 09:17 — forked from tomysmile/brew-java-and-jenv.md
How To Install Java 8 on Mac

Install HomeBrew first

brew update
brew tap caskroom/cask
brew install brew-cask

If you get the error "already installed", follow the instructions to unlink it, then install again:

@alChaCC
alChaCC / MongoDB Mongoid 5.0.0.beta Teardown
Last active August 29, 2015 14:27 — forked from stuartmackey/MongoDB Mongoid Teardown
Teardown script to remove MongoDB collections after each test run in Rails
teardown :clean_mongodb
def clean_mongodb
Mongoid::Clients.default.database.collections.each do |collection|
unless collection.name =~ /^system\./
collection.remove
end
end
end
#!/usr/bin/env bash
# Pre-requisites
sudo apt-get -y update
sudo apt-get --no-install-recommends -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev libgdbm-dev ncurses-dev automake libtool bison subversion pkg-config libffi-dev vim git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties
# Download and compile Ruby 2.1.2
cd /tmp
wget ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz
tar -xvzf ruby-2.1.2.tar.gz
cd ruby-2.1.2