Skip to content

Instantly share code, notes, and snippets.

Avatar

Frederic Peschanski fredokun

View GitHub Profile
@fredokun
fredokun / MPClient.py
Created August 30, 2017 11:42
Python 3 Client/server using multiprocessing with asynchronous pipes
View MPClient.py
import multiprocessing as mp
import time
import MPServer
if __name__ == "__main__":
#mp.set_start_method('fork')
print("[Client] start")
@fredokun
fredokun / gist:20440707c465664c547cd25681dbdc6e
Created June 16, 2016 15:02
pygmentize to pdf via latex
View gist:20440707c465664c547cd25681dbdc6e
pygmentize -f latex -O full -o mylisting.tex mylisting.src
pdflatex mylisting.tex
@fredokun
fredokun / oddeven.clj
Created June 9, 2016 10:11
Mutually recursive specs in clojure.spec
View oddeven.clj
;;; Clojure 1.9 spec : an example of a mutually-recursive spec
(ns oddeven
(:require [clojure.spec :as s]))
(s/def ::zero #{:zero})
(s/def ::one #{:one})
(s/def ::succ #{:succ})
(s/def ::odd nil)
(s/def ::even (s/or :zero ::zero
@fredokun
fredokun / gist:2c7a2d66035bb36f9f85
Created July 3, 2014 12:58
pdfjam command line for printing 2 pages per sheet in landscape mode
View gist:2c7a2d66035bb36f9f85
pdfjam --nup 2x1 --landscape input.pdf --outfile output.pdf