Listing a gist via gh
# GitHub CLI api
# https://cli.github.com/manual/gh_api
gh api \
-H "Accept: application/vnd.github+json" \
# Setup Preferred editor for local and remote sessions | |
if [[ -n $SSH_CONNECTION ]]; then | |
export EDITOR='vim' | |
else | |
export EDITOR='nvim' | |
fi | |
# Setup fnm | |
eval "$(fnm env)" |
-- original code: https://github.com/ericelliott/cuid | |
-- Add the "plv8" extension | |
create extension if not exists "plv8"; | |
-- Add the "pgcrypto" extension | |
create extension if not exists "pgcrypto"; | |
\dx | |
-- Connect a database |
At Keen IO, we build a highly flexible and customizable analytics platform that can quickly make teams and projects smarter and more successful. We collect and process billions of events from (and return query results to) anything that can connect to the internet.
Our customers are in nearly every field including media, advertising, gaming, SaaS, and hardware. Their business needs are diverse, but the challenges of their data requirements are similar. Whether they want to provide internal reports, feed data into core systems, or provide highly valuable insights directly to their own customers - we can help!
Solutions Architect at Keen IO is a bit different than some companies. There are now numerous options for analytics that make strong assumptions on behalf of the user. Because our analytics platform provides general purpose building blocks to solve such a wide variety of challenges, we rely heavily on discovery and a deep level of analytics expertise to help ou
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# Note: PS1 and umask are already set in /etc/profile. You should not | |
# need this unless you want different defaults for root. | |
# PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ ' | |
# umask 022 | |
# You may uncomment the following lines if you want `ls' to be colorized: | |
# export LS_OPTIONS='--color=auto' | |
# eval "`dircolors`" |
syntax = "proto3"; | |
package proto; | |
//Server Interface | |
service MsgRingListener { | |
rpc SendMsg(RingMsg) returns (Valid) {}; | |
} | |
message RingMsg { |
#!/usr/bin/env python | |
import sys | |
import urllib2 | |
import json | |
from optparse import OptionParser | |
parser = OptionParser() | |
parser.add_option("-u", "--url", default=None, help="Graphite URL") | |
parser.add_option("-s", "--short-name", default=None, |
I hereby claim:
To claim this, I am signing this object:
if has("gui_running") | |
colorscheme flat2 | |
else | |
colorscheme desert | |
endif | |
call pathogen#runtime_append_all_bundles() | |
filetype off | |
let g:neocomplcache_enable_at_startup = 1 | |
set nocompatible | |
filetype plugin indent on |