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.
{"data":[576828,520955,994922,218113,311317,645188,532914,954997,547222,23298,867901,963680,104413,115192,446314,67367,644065,887145,134581,993368,852004,964088,702048,526947,306533,955112,183027,287603,26014,920606,237619,145668,841149,941057,710168,116388,212224,428918,465061,688584,108857,116178,419961,722500,666865,90767,77513,616499,500551,169443,425056,596579,841697,993991,889195,697960,478526,126767,676711,236547,128266,737872,111738,529623,42917,878564,790352,673367,225294,510239,426049,981154,630777,633655,952652,549863,110798,978842,386171,604943,121395,745331,826453,473877,38337,930382,886229,894613,40204,952001,872435,909111,797769,365027,690162,864286,341006,606361,860238,523715,635771,36056,104416,997293,444614,776497,175258,569697,935750,879398,877064,59989,32587,776740,188157,490436,449398,343371,793785,803608,615717,495966,711980,581414,509999,62998,50075,862134,99604,61752,487044,377889,885266,480378,72913,111707,613215,187649,792914,458589,896488,643421,894386,565751,231710,52869,204141,713

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