I hereby claim:
- I am mokagio on github.
- I am mokagio (https://keybase.io/mokagio) on keybase.
- I have a public key whose fingerprint is CE02 FC0E 27F5 15A8 F469 F293 BD68 D621 217B 303A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Note: the following UX is from the Mac app only
_ italic _
, ** bold **
, and code
can be used#!/bin/sh | |
# | |
# An example hook script to verify what is about to be committed. | |
# Called by "git commit" with no arguments. The hook should | |
# exit with non-zero status after issuing an appropriate message if | |
# it wants to stop the commit. | |
# | |
# Purposes: | |
# Add an empty line at the end of the file. | |
# Remove trailing spaces at the end of a line. |
# #!/bin/bash | |
# | |
# git hook script to find and fix trailing whitespace | |
# in your commits. Bypass it with the --no-verify option | |
# to git-commit | |
# | |
# usage: make a soft link to this file, e.g., ln -s ~/config/pre-commit.git.sh ~/some_project/.git/hooks/pre-commit | |
# | |
# credits: https://github.com/imoldman/config/blob/master/pre-commit.git.sh |
“Yes, brisingr. ” The fire flared, and a shiver ran through Eragon. Something about the word made him feel incredibly alive. “I thought so. Brisingr is from an ancient language that all living things used to speak. However, it was forgotten over time and went unspoken for eons in Alagaësia, until the elves brought it back over the sea. They taught it to the other races, who used it for making and doing powerful things. The language has a name for everything, if you can find it.” “But what does that have to do with magic?” interrupted Eragon. “Everything! It is the basis for all power. The language describes the true nature of things, not the superficial aspects that everyone sees. For example, fire is called brisingr . Not only is that a name for fire, it is the name for fire. If you are strong enough, you can use brisingr to direct fire to do whatever you will.
From Eragon by Christopher Paolini
cross = "\u2718" # => ✘ | |
love = "\u2665" # => ♥ | |
tick = "\u2714" # => ✔ | |
warning = "\u26A0" # => ⚠ |
# OSX stuff | |
.DS_Store | |
# Xcode | |
build/* | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 |
#import <QuartzCore/QuartzCore.h> | |
@interface MCSpriteLayer : CALayer { | |
unsigned int sampleIndex; | |
} | |
@property (readwrite, nonatomic) unsigned int sampleIndex; |
guard :shell do | |
watch(%r{-hd\.png$}) do |m| | |
input = m[0] | |
output = input.gsub(/-hd.png$/,'.png') | |
puts "Downsizing #{input} to #{output}" | |
`convert #{input} -resize 50% #{output}` | |
end | |
end |
// | |
// IPInsetLabel.h | |
// Instapaper | |
// | |
// Created by Marco Arment on 7/23/11. | |
// Copyright 2011 Instapaper LLC, released to the public domain. | |
// | |
#import <UIKit/UIKit.h> |