This may be shown in Latex, PDF and HTML
This may be shown in presentation
| #!/bin/bash | |
| FORMAT=$1 | |
| DOCUMENT=$2 | |
| livereload "$DOCUMENT.html" -d -w 200 & | |
| LIVERELOAD=$! | |
| http-server . & | |
| HTTP_SERVER=$! |
I hereby claim:
To claim this, I am signing this object:
| public class OAuth2ServiceRequestInterceptor implements RequestInterceptor { | |
| OAuth2AccessToken token; | |
| OAuth2RestTemplate serviceTemplate; | |
| public void setServiceTemplate(OAuth2RestTemplate serviceTemplate) { | |
| this.serviceTemplate = serviceTemplate; | |
| } | |
| @Override public void apply(RequestTemplate template) { |
| // ==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/* |
| #!/bin/bash | |
| ################################################################################ | |
| # | |
| # Handle Spring Boot maven modules like daemons | |
| # Relies on ApplicationPidFileWriter: | |
| # | |
| # @SpringBootApplication public class GodApp { | |
| # | |
| # // [...] | |
| # |
| 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, |