I hereby claim:
- I am phdd on github.
- I am phdd (https://keybase.io/phdd) on keybase.
- I have a public key ASCZSc5bClUqt31sel_w105DlKivTmKUZw7nULW8NHZp2go
To claim this, I am signing this object:
| SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; | |
| CREATE TABLE IF NOT EXISTS `comprot_entity_ref` ( | |
| `id` varchar(255) COLLATE latin1_german2_ci NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci; | |
| CREATE TABLE IF NOT EXISTS `comprot_user` ( | |
| `id` bigint(20) NOT NULL AUTO_INCREMENT, | |
| `displayName` varchar(255) COLLATE latin1_german2_ci NOT NULL, |
| #!/bin/bash | |
| ################################################################################ | |
| # | |
| # Handle Spring Boot maven modules like daemons | |
| # Relies on ApplicationPidFileWriter: | |
| # | |
| # @SpringBootApplication public class GodApp { | |
| # | |
| # // [...] | |
| # |
| // ==UserScript== | |
| // @name Trello Card Enhancer | |
| // @namespace https://gist.github.com/phdd/f3e8cf831c1c0b6fe324 | |
| // @description Enhance cards with markdown based description | |
| // @copyright 2015+, Peter Heisig | |
| // @version 1.3 | |
| // @updateURL https://gist.githubusercontent.com/raw/f3e8cf831c1c0b6fe324/trello-card-enhancer.js | |
| // | |
| // @match https://trello.com/* | |
| // @match https://*.trello.com/* |
| public class OAuth2ServiceRequestInterceptor implements RequestInterceptor { | |
| OAuth2AccessToken token; | |
| OAuth2RestTemplate serviceTemplate; | |
| public void setServiceTemplate(OAuth2RestTemplate serviceTemplate) { | |
| this.serviceTemplate = serviceTemplate; | |
| } | |
| @Override public void apply(RequestTemplate template) { |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| FORMAT=$1 | |
| DOCUMENT=$2 | |
| livereload "$DOCUMENT.html" -d -w 200 & | |
| LIVERELOAD=$! | |
| http-server . & | |
| HTTP_SERVER=$! |
| #!/usr/bin/env python | |
| """ | |
| Include contents from other files, even recursively. | |
| Examples: | |
| - Include first chaper from markdown file | |
| [](chapter1.md){.include .markdown} |
| 'use latest'; | |
| import rp from 'request-promise'; | |
| import express from 'express'; | |
| import bodyParser from 'body-parser'; | |
| import { fromExpress } from 'webtask-tools'; | |
| const app = express(); | |
| app.use(bodyParser.json()); |
| .reveal section img { | |
| border: none; | |
| } |