I hereby claim:
- I am alexeypegov on github.
- I am alexeypegov (https://keybase.io/alexeypegov) on keybase.
- I have a public key ASAcmSzYgSkiqw5hl9Ds9WDHcs6x8uwswa2oAtEZ6sTB-go
To claim this, I am signing this object:
BEGIN MESSAGE. | |
0mXN3EAcfT5U9Fe GrbfP3WBCGlo1eT 2bXnkb59eHGco6b QXN7SwofdKVXePJ | |
yvk7WEvQH7J7avu jQer9yGlOOJTCKq 6Xr2MZHgg6tMd0T uqTha0axH2WqLw0 | |
n9LiwTSniN6RaJL K6DEFuA4Ac9bZdv 2gxWNnhBKKsDwlp lzjZaQuPTufUpEL | |
5lLjUZ88Gio5Fkj bIbefot81GFgvEf bg4hF0aLMzWSiL. | |
END MESSAGE. |
{ | |
"binary_file_patterns": | |
[ | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", |
#!/usr/bin/env inlein | |
'{:dependencies [[org.clojure/clojure "1.9.0"]]} | |
(require '[clojure.string :as s] | |
'[clojure.java.io :as io]) | |
(def filename (first *command-line-args*)) | |
(when-not filename |
(ns ini.core | |
(:use [clojure.string :only [index-of last-index-of trim split-lines]] | |
[slingshot.slingshot :only [throw+]])) | |
(defn- section? | |
"Whatever the given string is a section or not" | |
[s] | |
(and | |
(= (first s) \[) | |
(= (last s) \]))) |
I hereby claim:
To claim this, I am signing this object:
// jshint esnext:true | |
// noprotect | |
const ALPHABET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; | |
function init(el, width, height) { | |
const _el = el ? el : document.createElement('canvas'); | |
if (!el) { | |
$('body').append(_el); | |
} | |
// | |
// SheetView.swift | |
// wrkts | |
// | |
// Created by Alexey Pegov on 28.10.14. | |
// Copyright (c) 2014 alexeypegov. All rights reserved. | |
// | |
import UIKit |
/* <canvas id="c" width="200" height="200"></canvas> */ | |
function retina(canvas, context) { | |
var ratio = window.devicePixelRatio || 1, | |
width = canvas.width, | |
height = canvas.height; | |
if (ratio > 1) { | |
canvas.width = width * ratio; | |
canvas.height = height * ratio; | |
canvas.style.width = width + "px"; |
key:"string value" | |
int_key:22 |
#!/bin/sh | |
if [ -n "$1" ]; then | |
git checkout -b $1 | |
git push --set-upstream origin $1 | |
else | |
echo "Usage: git rbr branch-name" | |
fi |