- Go to your Shopify
admin/settings/filespage - Open your browser Dev tools, go to the console
Then, depending on the option you choose:
- Make sure your browser is set to download files automatically and doesn't ask for the download location every time
admin/settings/files pageThen, depending on the option you choose:
| #!/usr/bin/env bash | |
| set -o xtrace -o errexit -o pipefail -o nounset | |
| ######################################################################################## | |
| # CircleCI's current recommendation for roughly serializing a subset | |
| # of build commands for a given branch | |
| # | |
| # circle discussion thread - https://discuss.circleci.com/t/serializing-deployments/153 | |
| # Code from - https://github.com/bellkev/circle-lock-test |
These rules are adopted from the AngularJS commit conventions.
| require "spec_helper" | |
| describe ExampleController do | |
| context "GET #index" do | |
| let(:resources) { FactoryGirl.create_list(:resource) } | |
| before do | |
| get :index | |
| end |
| # download latest libevent2 and tmux sources, and extract them somewhere | |
| # (thx bluejedi for tip on latest tmux URL) | |
| # | |
| # at the time of writing: | |
| # https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz | |
| # http://sourceforge.net/projects/tmux/files/latest/download?source=files | |
| # | |
| # install deps | |
| yum install gcc kernel-devel make ncurses-devel |
| Regex for matching ALL Japanese common & uncommon Kanji (4e00 β 9fcf) ~ The Big Kahuna! | |
| ([δΈ-ιΎ―]) | |
| Regex for matching Hirgana or Katakana | |
| ([γ-γγ‘-γ³]) | |
| Regex for matching Non-Hirgana or Non-Katakana | |
| ([^γ-γγ‘-γ³]) | |
| Regex for matching Hirgana or Katakana or basic punctuation (γγβ) |