Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
{"data":[2594238,6527661,9805753,8724102,5187101,1374470,6228819,4185554,9760253,603040,7300361,7089279,6608108,1855764,8552556,8664462,6787463,3316993,4947370,9060879,6522986,851819,3617958,1073604,9982885,1586238,3937570,9440834,2829290,4186748,3416218,108919,4219141,1890879,4330660,7790368,1065463,8745838,1543025,2752645,3371215,5646710,5330773,7997746,6388360,2844310,2654733,8727544,9338163,9854496,8048101,1959875,3782696,7022844,6760473,9695724,7437076,6306373,3083980,2734993,1246951,5033750,178465,6872462,692876,1950852,4959340,8176170,7825888,1273949,8814643,2547838,2298915,7093859,6961699,8637611,2774039,7169183,34523,4698856,4527376,1473384,6574297,4936262,6602992,2156,8720013,929223,2881307,7970005,8243097,5770001,2091812,8974615,1017882,5876206,1976433,6464873,9020960,2446630,5741727,2790998,4095912,5855232,3945854,2460882,5897855,2889116,1972125,6217994,3256127,392992,3676759,9756435,2826271,3385612,1661237,3196365,508918,1897928,5599486,9828476,9391787,7647564,8518250,6407316,265818,8550446,97300
This file has been truncated, but you can view the full file.

Keybase proof

I hereby claim:

  • I am ryaan-anthony on github.
  • I am ryaan_anthony (https://keybase.io/ryaan_anthony) on keybase.
  • I have a public key ASDWX02IUy4nC9BoECOJM5D4C9F5jYdijPhEKpuv6DtApQo

To claim this, I am signing this object:

set -e
cp -vR #{config_dir}/config/* #{artifact_name}/config
cd #{artifact_name}
DEPLOY=$(date +"%Y%m%d%H%M%S")
rvm use ruby-2.1.6
rvm default do bundle install --local
mkdir -p /rails/apps/deploy/shared
mkdir -p /rails/apps/deploy/releases
mkdir -p /rails/apps/deploy/shared/log
mkdir -p /rails/apps/deploy/shared/tmp/pids
black=$(tput setaf 0)
red=$(tput setaf 1)
green=$(tput setaf 2)
yellow=$(tput setaf 3)
blue=$(tput setaf 4)
magenta=$(tput setaf 5)
cyan=$(tput setaf 6)
white=$(tput setaf 7)
term_reset=$(tput sgr0)
git_branch() {
#!/bin/bash
if [ -z $1 ]
then
echo 'Sitemap must be provided as first argument.';exit 2
fi
# Helper function to read xml
read_dom () {
local IFS=\>
#!/bin/bash
while read -p "> " line; do
if [[ $line == "log" ]]; then
exec >>log 2>&1
fi
echo $line
exec &>$(tty)
done
<script type="text/javascript">
class Parameters
{
constructor()
{
return new Proxy(Object.assign(this, arguments[0]), {
get: function(target, name) {
return name in target ? target[name] : undefined;
}
});
class BaseObject
def initialize(params = {})
params.each { |key,value| instance_variable_set("@#{key}", value) }
end
end
class ModelObject < BaseObject
def say
@model
end