Registry Entries to Customize Keyboard Layout
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 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 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 |
# 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 |
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.
@echo off | |
setlocal enabledelayedexpansion | |
set TemplateDir=new-templates | |
REM # If no args are given, show help (and exit). | |
if "%1"=="" goto HELP | |
REM # Options | |
if /i "%1" == "/?" goto HELP |
#!/usr/bin/env python | |
# | |
# Create hard links / junctions to the system-installed packages in | |
# a given virtualenv ("site-packages") directory. | |
# | |
# | |
# Background | |
# ========== | |
# | |
# Some libraries such as wxPython do not support pip installation yet. |
#!/usr/bin/env python | |
import binascii | |
import socket | |
PORT_DEFAULT = 9 | |
IPADDR_DEFAULT = '<broadcast>' | |
_USAGE = """Usage: | |
python wol.py [options] <MAC address>... |