I hereby claim:
- I am zanea on github.
- I am zanea (https://keybase.io/zanea) on keybase.
- I have a public key whose fingerprint is D8B5 59D4 FC8E A187 6445 E156 D4F7 0856 356B F1B1
To claim this, I am signing this object:
| #!/bin/sh | |
| curl -X POST -d '[{"name": "events", "columns": ["title", "tags", "text"], "points": [["Title", "one|two", "Text"]]}]' 'http://localhost:8086/db/events/series?u=admin&p=admin' |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| IFS=',' read -ra REMOTES <<< "$1" | |
| shift | |
| for REMOTE in "${REMOTES[@]}"; do | |
| echo git push $REMOTE $* | |
| git push $REMOTE $* | |
| done |
| app.filter('escape', function () { | |
| return function (text) { | |
| if (!text) return ''; | |
| return text.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>'); | |
| }; | |
| }); | |
| app.filter('linkify', function () { | |
| var domainRegexp = /(https?|ftp):\/\/(.*)/; |
| ;;; simple-mode-line.el --- Simplified Mode Line for Emacs 24 | |
| ;; Author: Daehyub Kim <lateau at gmail.com> | |
| ;; URL: https://gist.github.com/4511988 | |
| ;; Version: 0.1 | |
| ;; Keywords: mode-line, color | |
| ;;; Commentary: | |
| ;; This simplified mode line is adjusted to *white* themes. |
| # Specify compiler flags for the YouCompleteMe plugin in Vim. | |
| def FlagsForFile(filename): | |
| return { | |
| 'flags': open('.clang_complete', 'r').readlines(), | |
| 'do_cache': True | |
| } |
| overlay : main.c | |
| gcc -o liboverlay.so -shared -fPIC main.c -lGL -I/usr/include/freetype2 -lftgl |