2015-02-27
Caution: these (.reg) files change a registry entry of your PC and will affect its behavior. You should not apply them unless you understand the consequence.
| # Makefile to build OpenSSL DLLs / static libs for MS Windows. | |
| !IFDEF OPENSSL | |
| INSTALL_DIR = $(OPENSSL) | |
| !ELSE IFNDEF INSTALL_DIR | |
| INSTALL_DIR = C:\OpenSSL | |
| !ENDIF | |
| !IFNDEF SRC_DIR | |
| SRC_DIR = openssl |
| # event.py (improved) | |
| class Event(object): | |
| def __init__(self, doc=None): | |
| self.__doc__ = doc | |
| def __get__(self, obj, objtype=None): | |
| if obj is None: | |
| return self |
| #!/usr/bin/env python | |
| """Sample script which uses event.py (simple). """ | |
| import event | |
| class Publisher(object): | |
| def __init__(self): |
| # event.py (simple) | |
| class Event(object): | |
| def __init__(self): | |
| self.handlers = [] | |
| def add(self, handler): | |
| self.handlers.append(handler) | |
| return self |
| # Makefile to build wxWidgets for MS Windows. | |
| !IFDEF WX | |
| INSTALL_DIR = $(WX) | |
| !ELSE IFNDEF INSTALL_DIR | |
| INSTALL_DIR = C:\wxWidgets | |
| !ENDIF | |
| !IFNDEF SRC_DIR | |
| SRC_DIR = wxWidgets |
| # Makefile to build FreeType 2 DLLs / static libs for MS Windows. | |
| VER_NAME = freetype-2.5.5 | |
| GIT_TAG = VER-2-5-5 | |
| PLATFORMTOOLSET = v$(VISUALSTUDIOVERSION:.=) | |
| SRC_DIR = freetype2 | |
| CD_SRC_DIR = cd $(SRC_DIR) | |
| DIST_BASE = $(VER_NAME)-win32-$(PLATFORMTOOLSET) |
| # This file must be used with "source bin/activate.csh" *from csh*. | |
| # You cannot run it directly. | |
| # Created by Davide Di Blasi <davidedb@gmail.com>. | |
| alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; test $?_OLD_PYTHONHOME != 0 && setenv PYTHONHOME "$_OLD_PYTHONHOME" && unset _OLD_PYTHONHOME;unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate && unalias pydoc' | |
| # Unset irrelevant variables. | |
| deactivate nondestructive | |
| setenv VIRTUAL_ENV "/path/to/your/venv" |
| def iterlines_backword(s): | |
| """ Iterate lines of `s` from its tail to its top. | |
| >>> list(iterlines_backword('a')) | |
| ['a'] | |
| >>> list(iterlines_backword('a\\n')) | |
| ['a\\n'] | |
| >>> list(iterlines_backword('a\\nb')) | |
| ['b', 'a\\n'] |
| #!/usr/bin/env python | |
| from __future__ import (absolute_import, | |
| division, | |
| print_function, | |
| unicode_literals) | |
| import math | |
| import time | |
| import wx |