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
// @title itmap(bytes32 => address) | |
// @author Pascal van Kooten <[email protected]> | |
// 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; |
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
(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))))) |
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
# 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 |
NewerOlder