Skip to content

Instantly share code, notes, and snippets.

View kootenpv's full-sized avatar

Pascal van Kooten kootenpv

  • Van Kooten AI Solutions / ex-mgnr
  • Utrecht, Netherlands
View GitHub Profile
// @title itmap(bytes32 => address)
// @author Pascal van Kooten <kootenpv@gmail.com>
// credits to:
// broken origin: https://github.com/ethereum/dapp-bin/blob/master/library/iterable_mapping.sol
// Nick "Arachnid" Johnson's new version: https://gist.github.com/Arachnid/59159497f124fdbff14bc2ca960b77ba
library itmap {
struct entry {
// Equal to the index of the key of this item in keys, plus 1.
uint keyIndex;
(defun toggle-trans ()
(interactive)
(let* ((pair (or (frame-parameter nil 'alpha) '(100 100)))
(alpha (apply '+ pair)))
(set-frame-parameter nil 'alpha
(if (or (null alpha) (eq alpha 200) (eq alpha 2.0))
'(85 60) '(100 100)))))
# Code review of McKenna/Alex https://gist.github.com/awhit012/13ccc026089c2c48d50c by kootenpv
# This makes it easy to create a reddit bot that
# A. Grabs comments from subreddits of your choice
# B. Searches for a keyword
# C. Replies to comments with that keyword from a list of responses on a CSV file
# This bot attempt to reply with a relevant response by searching for the words in the comment in the responses.
# I plan to improve upon this feature