Skip to content

Instantly share code, notes, and snippets.

View Emantor's full-sized avatar

Rouven Czerwinski Emantor

View GitHub Profile
@yorickvP
yorickvP / wl-clipboard.el
Created March 14, 2019 11:02
teach emacs to use wl-copy
(setq wl-copy-process nil)
(defun wl-copy (text)
(setq wl-copy-process (make-process :name "wl-copy"
:buffer nil
:command '("wl-copy" "-f" "-n")
:connection-type 'pipe))
(process-send-string wl-copy-process text)
(process-send-eof wl-copy-process))
(defun wl-paste ()
(if (and wl-copy-process (process-live-p wl-copy-process))
#!/usr/bin/env python2
# Minion in the corner of the @stratum0 mensa board
#
# Author Tux <tux@netz39.de> @plappertux
#
# Disclaimer: Derrived from first python program. Do not expect good stlye or
# sufficient commentry. The code is Minion stlye. ;)
# (Better code can be shown on request.)
#
@penguineer
penguineer / walking_minion.py
Created December 29, 2014 01:18
Minion for the @stratum0 mensa board
#!/usr/bin/env python2
# Walking Minion on the @stratum0 mensa board
#
# Author Tux <tux@netz39.de> @plappertux
#
# Disclaimer: First python program. Do not expect good stlye or sufficient
# commentry. The code is Minion stlye. ;)
# (Better code can be shown on request.)
#