This file contains 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
#![feature(unboxed_closures)] | |
#![feature(fn_traits)] | |
#[derive(Clone)] | |
struct Foo (i32); | |
type Bar = i32; | |
impl Foo { | |
fn go(&self, _: &i32) { } |
This file contains 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
#[derive(Debug)] | |
struct I(i32); | |
macro_rules! p { | |
($e:expr) => (println!("{:30}: {:?}", stringify!($e), $e)); | |
} | |
trait PrefixStuff { |
This file contains 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 collections import defaultdict | |
def get_dir(c): | |
# return 1 if c == '[' else -1 if c == ']' else 0 | |
dirs = {'[':1, ']': -1} | |
return dirs[c] if c in dirs else 0 | |
class Code: | |
code = "" | |
pc = 0 |
This file contains 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
def get_dir(c): | |
# return 1 if c == '[' else -1 if c == ']' else 0 | |
dirs = {'[':1, ']': -1} | |
return dirs[c] if c in dirs else 0 | |
class Code: | |
code = "" | |
pc = 0 | |
def __init__(self, code): | |
self.code = code |
This file contains 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
// My settings: | |
if (window.location.origin === "https://www.duckduckgo.com") { | |
unmap('h'); | |
unmap('j'); | |
unmap('k'); | |
unmap('l'); | |
} |
This file contains 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
// an example to create a new mapping `ctrl-y` | |
/* | |
mapkey('<Ctrl-y>', 'Show me the money', function() { | |
Front.showPopup('a well-known phrase uttered by characters in the 1996 film Jerry Maguire (Escape to close).'); | |
}); | |
*/ | |
// an example to replace `u` with `?`, click `Default mappings` to see how `u` works. | |
map('?', 'u'); |
This file contains 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
// ==UserScript== | |
// @name Copy LOL item-set | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Adds a button for copying the item set. | |
// @author You | |
// @match http://lol.item-set.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
This file contains 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
{-# LANGUAGE RankNTypes #-} | |
import qualified Data.IntMap as M | |
import Control.Monad.Trans.Free | |
import Control.Monad.Trans | |
{- | |
The phantom parameter s protects labels from escaping an invocation of runGotoT. | |
For example, this program: | |
invalid = runGotoT label >>= runGotoT . goto | |
is rejected at compile time with this version, but crashes |
This file contains 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
{- | | |
This module gives a direct representation of concrete functions as | |
algebraic data structures. | |
> show not | |
>>> (False => True) :++: (True => False) | |
> show (&&) | |
>>> (False => ((False => False) :++: (True => False))) |