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
-----BEGIN WEBFACTION INSTALL SCRIPT----- | |
#!/usr/local/bin/python2.4 | |
""" | |
MediaWiki 1.15.4 | |
Notes: | |
- The database will be named after your application, | |
e.g. username_application. |
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
{- | |
Engine-mod.hs is an attempt to add missing functionality to Engine.hs | |
* ^ and $ anchor support | |
* Multiline compile option to affect . | |
* case sensitive compile option for characters (just downcase everything?) | |
* substring matching? (libTRE papers?) | |
Anchors are "boundary" matchers, not character matchers. So I need to | |
generalize the concept of the branching. And boundaries can coincide. |
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
all: | |
pandoc --filter pandoc-citeproc --variable="linestretch=2" --include-after-body=afterbody.tex -o minimal.pdf minimal.md |
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
+ 9646f0b... 06/29/14 13:07 public Pandoc Citeproc | |
1371055 11/16/11 14:25 public haskell regex.dfa engine | |
479954 07/17/10 19:56 public |
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
INPUT = minimal.md | |
OUTPUT = minimal.pdf | |
TEMPLATE = template.tex | |
all: | |
pandoc \ | |
--filter pandoc-citeproc \ | |
--standalone \ | |
--variable="linestretch=2" \ | |
--template=$(TEMPLATE) \ |
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
module.exports = function(grunt) { | |
grunt.loadNpmTasks('grunt-contrib-connect'); | |
grunt.loadNpmTasks('grunt-contrib-copy'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
connect: { |
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
class LLRB(object): | |
class Node(object): | |
RED = True | |
BLACK = False | |
__slots__ = ['value', 'left', 'right', 'color'] | |
def __init__(self, value): |
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
50 4 - 6 75 - 100 + 25 * + | |
50 4 - 6 75 100 - - 25 * + | |
50 4 6 75 - 100 + 25 * - - | |
50 4 6 75 100 - - 25 * - - | |
75 4 - 6 50 100 25 - + * + | |
75 4 - 6 50 100 + 25 - * + | |
75 4 6 50 100 25 - + * - - | |
75 4 6 50 100 + 25 - * - - | |
50 4 75 6 100 + - 25 * + - | |
50 4 75 6 - 100 - 25 * + - |
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
const ERROR = 2; | |
module.exports = { | |
extends: [], | |
parserOptions: { | |
ecmaVersion: 6, | |
sourceType: 'script', | |
}, |
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 RemoveOpenSearch | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Prevent Chrome from automatically adding search engines. | |
// @author Joe Schafer | |
// @match http://*/* | |
// @grant none | |
// ==/UserScript== |
OlderNewer