Another one experiment with CSS3 3d transforms. Click image to flip it and see description
Forked from Ilya K.'s Pen Responsive flip menu. Pure CSS..
A Pen by cliff xuan on CodePen.
| import sys | |
| import threading | |
| import Queue | |
| import wx | |
| _noTimeoutDefault = object() | |
| def defer( | |
| returnToFunction, | |
| function, |
| import io | |
| class CoroutineIO(io.TextIOBase): | |
| """ | |
| Creates an writable IO interface to a coroutine. | |
| """ | |
| def __init__(self, coroutine): | |
| """ | |
| Creates a new IO object with a coroutine. The | |
| coroutine should take no arguments. |
| import unittest | |
| import itertools | |
| import sqlalchemy as sa | |
| from sqlalchemy import Table, Column, String, ForeignKey | |
| from newman.schema.branch import tables | |
| class Introspector(object): | |
| def __init__(self, metadata): | |
| self.metadata = metadata |
| import unittest | |
| import sys | |
| code_map = { | |
| 'a' : '2', | |
| 'b' : '22', | |
| 'c' : '222', | |
| 'd' : '3', | |
| 'e' : '33', | |
| 'f' : '333', |
| #!/bin/sh | |
| BASE_DIR=$(cd "$(dirname "$0")"; pwd) | |
| echo "checkout submodules" | |
| git submodule init | |
| git submodule update | |
| echo "symlink .vim" | |
| if [ -d "$HOME/.vim" ] | |
| then |
| A | |
| a | |
| aa | |
| aal | |
| aalii | |
| aam | |
| Aani | |
| aardvark | |
| aardwolf |
| AB1 0AA | |
| AB1 0AB | |
| AB1 0AD | |
| AB1 0AE | |
| AB1 0AF | |
| AB1 0AG | |
| AB1 0AJ | |
| AB1 0AL | |
| AB1 0AN | |
| AB1 0AP |
| import logging | |
| from contextlib import ContextDecorator | |
| format = '%(asctime)s - %(levelname)s - %(message)s' | |
| ch = logging.StreamHandler() | |
| ch.setFormatter(logging.Formatter(format)) | |
| logger = logging.getLogger() | |
| logger.setLevel(logging.DEBUG) | |
| logger.addHandler(ch) |