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
| From self[at]sungpae.com Mon Nov 8 16:59:48 2021 | |
| Date: Mon, 8 Nov 2021 16:59:48 -0600 | |
| From: Sung Pae <self[at]sungpae.com> | |
| To: security@docker.com | |
| Subject: Permissive forwarding rule leads to unintentional exposure of | |
| containers to external hosts | |
| Message-ID: <YYmr4l1isfH9VQCn@SHANGRILA> | |
| MIME-Version: 1.0 | |
| Content-Type: multipart/signed; micalg=pgp-sha256; | |
| protocol="application/pgp-signature"; boundary="QR1yLfEBO/zgxYVA" |
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
| " Require fireplace.vim | |
| function! s:ClojureSlamHound(file) | |
| if &modified | |
| echom "Buffer contains unsaved changes!" | |
| return 1 | |
| endif | |
| call fireplace#session_eval( | |
| \ '(clojure.core/require (quote slam.hound) (quote clojure.pprint))' | |
| \ . '(let [file (clojure.java.io/file "' . a:file . '")]' | |
| \ . ' (binding [clojure.pprint/*print-right-margin* ' . &textwidth . ']' |
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 bar | |
| (:refer-clojure :exclude [defn])) | |
| (defmacro defn [& _]) |
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 minimum-edit-distance | |
| "A naive implementation of minimum edit distance in Clojure. | |
| From: https://www.stanford.edu/class/cs124/lec/med.pdf | |
| Initialization: | |
| D(i,0) = i | |
| D(0,j) = j |
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
| diff --git a/gherkin b/gherkin | |
| index 2567adf..aeb97e6 100755 | |
| --- a/gherkin | |
| +++ b/gherkin | |
| @@ -37,15 +37,12 @@ pb_get="^$" | |
| pb_unget="^$" | |
| readline() { | |
| - IFS=$'\n\b' | |
| + local IFS=$'\n\b' |
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
| # Encrypt mail only to recipients with public keys | |
| set my_cryptlist=`gpg --list-keys | ruby -e '\ | |
| puts $stdin.read.scan(/<(.*?)>/)\ | |
| .map { |(e)| "\\\\\\\\<%s\\\\\\\\>" % Regexp.escape(Regexp.escape(Regexp.escape(e))) }\ | |
| .join("\\\\|")'` | |
| send-hook ~A "set crypt_autoencrypt=no" | |
| send-hook "~t ($my_cryptlist)" "set crypt_autoencrypt=yes" |
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
| On Sun 25 Aug 2013 at 09:05:15PM -0500, gaz jones wrote: | |
| > Hey, i am the current maintainer of tools.cli - i have very little | |
| > time to make any changes to it at the moment (kids :) ). I'm not sure | |
| > what the process is for adding you as a developer or transferring | |
| > ownership etc but if I'm happy to do so as I have no further plans for | |
| > working on it. | |
| Hello Gareth, |
technomancy, from technomancy/slamhound#19:
“I’ve thought a bit about trying to walk all defmacro bodies in the namespace and check for symbols with a namespace, but that would almost positively result in false positives.”
“I’d rather not handle this than handle this in a way that would have edge cases which could make it go looking for vars that don’t exist.”
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 com.metablu.www.ggs | |
| "Joni Korpi's Golden Grid System. | |
| http://goldengridsystem.com/" | |
| (:require [garden.def :refer [defstyles]] | |
| [garden.stylesheet :refer [at-media]] | |
| [garden.units :refer [em percent percent*]])) | |
| (def line 24.0) | |
| (def column (percent (/ 100.0 18.0))) | |
| (def font-size 16.0) |
NewerOlder