I hereby claim:
- I am minikomi on github.
- I am minikomi (https://keybase.io/minikomi) on keybase.
- I have a public key ASAwYgq8nFEK2pJUzhTjhxk8yvoI-rqrOZwUlD4nPJn_wAo
To claim this, I am signing this object:
| (progn (deftheme cool-stream "Refreshing summer theme") | |
| (put | |
| (quote cool-stream) | |
| (quote theme-immediate) t) | |
| (custom-theme-set-faces | |
| (quote cool-stream) | |
| (quote (font-lock-string-face ((t (:foreground "#2880c5" :background "#f2f2f2"))))) | |
| (quote (font-lock-variable-name-face ((t (:foreground "#8a8a8a"))))) | |
| (quote (font-lock-type-face ((t (:foreground "#2880c5"))))) | |
| (quote (font-lock-function-name-face ((t (:foreground "#a40000"))))) |
| (defn strongwrap [s] (str "<strong>" s "</strong>")) | |
| (defn strongify-keywords [s] | |
| (s/replace s #":[a-z0-9-]+" strongwrap)) | |
| (defn pprinter [v] | |
| [:pre | |
| [:code {:dangerouslySetInnerHTML | |
| {:__html (->> (with-out-str (pp/pprint v)) |
| fzbz: {$[0=(15!x) ; "fizzbuzz"; | |
| 0=(3!x) ; "fizz" ; | |
| 0=(5!x) ; "buzz" ; | |
| $x]} | |
| fizzbuzz: {[n] fzbz ' ( 1 + !n)} |
I hereby claim:
To claim this, I am signing this object:
| ;;; blue-theme.el --- Emacs theme with a light background. | |
| ;; Copyright (C) 2014 , adam | |
| ;; Author: adam | |
| ;; | |
| ;; Version: 0.1 | |
| ;; Package-Requires: ((emacs "24")) | |
| ;; Created with emacs-theme-generator, https://github.com/mswift42/theme-creator. |
| (ns fractal.core | |
| (:require [arcadia.core :as a] | |
| [arcadia.linear :as l]) | |
| (:import | |
| [UnityEngine Mesh | |
| Material Time MeshFilter WaitForSeconds | |
| MonoBehaviour | |
| Color | |
| MeshRenderer Shader] | |
| [System.Collections IEnumerator] |
| ((1,(,/@(2 ({:~:}:)\]))) <;.1 ]) '12234334444' | |
| βββ¬βββ¬ββ¬ββ¬βββ¬βββββ | |
| β1β22β3β4β33β4444β | |
| βββ΄βββ΄ββ΄ββ΄βββ΄βββββ |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import glob | |
| from tempfile import mkstemp | |
| from shutil import move | |
| from os import remove, close | |
| import re | |
| def replace(file_path, pattern, subst): | |
| fh, abs_path = mkstemp() |
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { | |
| if (p < 0.5) | |
| return 0.5 * pow(2*p, g); |