Based on the timeless TextMate theme.
Foreground: #FEFFD3
Background: #141414
| To remove a submodule you need to: | |
| Delete the relevant line from the .gitmodules file. | |
| Delete the relevant section from .git/config. | |
| Run git rm --cached path_to_submodule (no trailing slash). | |
| Commit and delete the now untracked submodule files. |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| from jinja2 import BytecodeCache | |
| class RedisTemplateBytecodeCache(BytecodeCache): | |
| '''Implements a Jinja2 bytecode cache on top of a pyredis.StrictRedis | |
| connection | |
| See: http://jinja.pocoo.org/docs/2.10/api/#bytecode-cache | |
| ''' | |
| def __init__(self, redis_cnx, template_cache_key_prefix=None, ttl=86400): |
The HearSay P2P File Sharer; a response to The Copyright Alert System, as well as several other internet regulation attempts. The goal of this project is to prove the viability of semi-anonymous and confidential file sharing. Consists of several proofs of concepts such as the formation of ad-hoc mix networks and routing throughout them while maintaining anonymity and semantic security.
However, lets be honest with ourselves for a second. Don't use this to fight an oppressive regime. I can not (and will not try) to 'prove' its security, and I
| function normalise(nodes) { | |
| return nodes.reduce(function(rv, e) { | |
| return rv.concat(Array.isArray(e) | |
| ? normalise(e) | |
| : e.nodeType | |
| ? [e] | |
| : [document.createTextNode(e)]); | |
| }, []); | |
| } |