I hereby claim:
- I am grk on github.
- I am grk (https://keybase.io/grk) on keybase.
- I have a public key whose fingerprint is B77C 9105 1DFD 0CF4 7401 FD15 14C6 DB7E EFF5 4934
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# config/deploy/shelly/before_restart | |
set -e | |
# link nested directory public/system to persistent disk/system | |
mkdir -p disk/public/images | |
ln -s ../disk/public/images public/images |
➜ ~ heroku help | grep account | |
account # manage heroku account options | |
members # manage membership in organization accounts | |
orgs # manage organization accounts | |
➜ ~ heroku account | |
! `account` is not a heroku command. | |
! See `heroku help` for a list of available commands. | |
➜ ~ heroku help account | |
! account is not a heroku command. See `heroku help`. | |
➜ ~ |
source "https://rubygems.org" | |
gem 'faraday' | |
gem 'faraday_middleware' | |
gem 'active_support' |
@import "bootstrap/reset"; | |
@import "bootstrap/variables"; | |
// overwrite variables here | |
@import "bootstrap/mixins"; | |
@import "bootstrap/scaffolding"; |
#ifndef __semaphore_t_h__ | |
#define __semaphore_t_h__ | |
#ifdef __APPLE__ | |
#include <mach/mach_init.h> | |
#include <mach/task.h> | |
#include <mach/semaphore.h> | |
class semaph_t |
Sass::Engine::DEFAULT_OPTIONS[:load_paths].tap do |load_paths| | |
load_paths << "#{Rails.root}/app/assets/stylesheets" | |
load_paths << "#{Gem.loaded_specs['compass'].full_gem_path}/frameworks/compass/stylesheets" | |
load_paths << "#{Gem.loaded_specs['html5-boilerplate'].full_gem_path}/stylesheets" | |
load_paths << "#{Gem.loaded_specs['fancy-buttons'].full_gem_path}/lib/stylesheets" | |
end |
photos.each do |photo| | |
photo.position = params[:photo].index(photo.id.to_s) | |
end |
require 'octokit' | |
module Jekyll | |
class ProjectsIndex < Page | |
def initialize(site, base, projects_dir) | |
@site = site | |
@base = base | |
@dir = projects_dir | |
@name = 'index.html' |
#ifndef __fine_linked_list_hpp__ | |
#define __fine_linked_list_hpp__ | |
#include "linked_list.hpp" | |
using namespace std; | |
template <typename T> | |
class fine_linked_list : public linked_list<T> | |
{ |