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
# AWS Lambda `ldconfig -p`, region `us-east-1`, nodejs 4.3 runtime, 26 October 2016 | |
# See https://github.com/claudiajs/lambda-vm-info for how this was generated and to create an updated version | |
242 libs found in cache `/etc/ld.so.cache' | |
libz.so.1 (libc6,x86-64) => /lib64/libz.so.1 | |
libxtables.so.10 (libc6,x86-64) => /lib64/libxtables.so.10 | |
libxslt.so.1 (libc6,x86-64) => /usr/lib64/libxslt.so.1 | |
libxml2.so.2 (libc6,x86-64) => /usr/lib64/libxml2.so.2 | |
libxcb.so.1 (libc6,x86-64) => /usr/lib64/libxcb.so.1 |
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
# ported from http://www.gizma.com/easing/ | |
# by http://th0ma5w.github.io | |
# | |
# untested :P | |
import math | |
linearTween = lambda t, b, c, d : c*t/d + b |
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
/* ---------------------------------------------------------- */ | |
/* */ | |
/* A media query that captures: */ | |
/* */ | |
/* - Retina iOS devices */ | |
/* - Retina Macs running Safari */ | |
/* - High DPI Windows PCs running IE 8 and above */ | |
/* - Low DPI Windows PCs running IE, zoomed in */ | |
/* - Low DPI Windows PCs and Macs running Firefox, zoomed in */ | |
/* - Android hdpi devices and above */ |