![Twitter Follow][twitter]
A shady game master approaches...
Hey there! You look like you would enjoy a good game of chance.
import { TweenMax } from 'gsap' | |
import 'gsap/ColorPropsPlugin' | |
const g = new Graphics() | |
g.beginFill(color, alpha) | |
g.drawRect(x, y, width, height) | |
g.endFill() | |
container.addChild(g) | |
TweenMax.to(g, 0.5, {colorProps: {tint: 0x00aaff, format: 'number'}}) |
#!/bin/sh | |
alias dm='docker-machine' | |
alias dmx='docker-machine ssh' | |
alias dk='docker' | |
alias dki='docker images' | |
alias dks='docker service' | |
alias dkrm='docker rm' | |
alias dkl='docker logs' | |
alias dklf='docker logs -f' |
local present, feline = pcall(require, "feline") | |
if not present then return end | |
-- Customizations {{{ | |
local theme = { | |
aqua = "#7AB0DF", | |
bg = "#1C212A", | |
blue = "#5FB0FC", | |
cyan = "#70C0BA", | |
darkred = "#FB7373", |
""" | |
Regular expressions for matching emoji sequences. | |
For parsing single emoji, use either | |
re.match(EMOJI_SEQUENCE, string) | |
# or | |
EMOJI_REGEXP.match(string) | |
To match multiple emojis or custom patterns, insert `EMOJI_SEQUENCE` into pattern: |
I've updated the doc to reflect fixes in the following patches: