Makes little scrolly text jiffs in Flywheel colors.
- imagemagick
brew install imagemagick
- gifsicle
brew install gifsicle
Heartwell 1.2.otf
font installed- u r on a mac
// get all routing objects | |
$patterns = $app['routes']->getIterator(); // seems to be changed in Silex 1.1.0 !!! ... ->current()->all(); | |
// walk through the routing objects | |
foreach ($patterns as $pattern) { | |
$match = $pattern->getPattern(); | |
echo "$match<br />"; | |
} |
// Add on element with overflow | |
-webkit-mask-image: -webkit-radial-gradient(white, black); |
const publicPath = 'public'; | |
// Node os module | |
// The os module provides a number of operating system-related utility methods. | |
// It can be accessed using: | |
const os = require('os'); | |
// Using a single monolithic configuration file impacts comprehension and | |
// removes any potential for reusability. | |
// As the needs of your project grow, you have to figure out the means to manage | |
// webpack configuration more effectively. |
var funcSerialized = (name) => `function ${name}() { [native code] }`; | |
var nativeObjects = [Array, Boolean, Date, Function, JSON, Object, Promise, RegExp]; | |
var ignoreList = ['length', 'constructor', '__proto__', 'caller', 'callee', 'arguments', 'source', 'toGMTString']; | |
var test = (nativeObject) => { | |
const proto = nativeObject.prototype || nativeObject; | |
Object.getOwnPropertyNames(proto) | |
.filter(name => !ignoreList.includes(name)) | |
.filter(name => proto[name]) | |
.map(name => ({ | |
name, |