Skip to content

Instantly share code, notes, and snippets.

View pkpp1233's full-sized avatar

Paul Katsen pkpp1233

View GitHub Profile
@pkpp1233
pkpp1233 / _.md
Created March 1, 2014 06:25
this
<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
stroke: #000;
fill-opacity: .8;
}
</style>
# install the blockspring command line tool gem. if you don't have ruby, visit here: https://www.ruby-lang.org/en/installation/
$ gem install blockspring-cli
# log in to blockspring. if you don't have a blockspring account, visit here: https://api.blockspring.com/users/sign_up
$ blockspring login
@pkpp1233
pkpp1233 / gist:50331ad12dca5661f11c
Created November 5, 2014 07:57
Ruby CLI deploy
# create a new ruby function based on the sample template.
$ blockspring new rb "My new Ruby block"
# enter into our new function's directory.
$ cd my-new-ruby-block
# deploy our sample function to blockspring.
$ blockspring push
# open up our function's homepage on blockspring.
# create a new python function based on the sample template.
$ blockspring new py "My new Python block"
# enter into our new function's directory.
$ cd my-new-python-block
# deploy our sample function to blockspring.
$ blockspring push
# open up our function's homepage on blockspring.
# create a new javascript function based on the sample template.
$ blockspring new js "My new Javascript block"
# enter into our new function's directory.
$ cd my-new-javascript-block
# deploy our sample function to blockspring.
$ blockspring push
# open up our function's homepage on blockspring.
# create a new php function based on the sample template.
$ blockspring new php "My new PHP block"
# enter into our new function's directory.
$ cd my-new-php-block
# deploy our sample function to blockspring.
$ blockspring push
# open up our function's homepage on blockspring.
# create a new R function based on the sample template.
$ blockspring new R "My new R block"
# enter into our new function's directory.
$ cd my-new-r-block
# deploy our sample function to blockspring.
$ blockspring push
# open up our function's homepage on blockspring.
@pkpp1233
pkpp1233 / gist:7ec49bdf686809bef340
Last active August 29, 2015 14:08
ruby lib install
# make sure you have ruby installed on your local machine!
$ gem install blockspring
@pkpp1233
pkpp1233 / gist:048f498618b7428a8e3f
Last active August 29, 2015 14:08
python library
# make sure you have python and pip installed on your local machine!
$ pip install blockspring