This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global | |
lua-load '/servers/haproxy/superserver.lua' | |
frontend tailon-frontend | |
bind :9090 | |
tcp-request content set-var(txn.service_dir) str("/s6-supervised-servers/tailon") | |
tcp-request content lua.extend-life | |
default_backend tailon-backend | |
backend tailon-backend |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns keyword-reader-macro.core | |
(:import [clojure.lang LispReader LispReader$StringReader])) | |
(defn field [] | |
(.getDeclaredField LispReader "dispatchMacros")) | |
(defn dispatch-macros [] | |
(.get (field) LispReader)) | |
(defn dispatch-reader! |
OlderNewer