This file contains hidden or 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
{ | |
"hash": "0023-fe0f-20e3.png", | |
"keycap_star": "002a-fe0f-20e3.png", | |
"zero": "0030-fe0f-20e3.png", | |
"one": "0031-fe0f-20e3.png", | |
"two": "0032-fe0f-20e3.png", | |
"three": "0033-fe0f-20e3.png", | |
"four": "0034-fe0f-20e3.png", | |
"five": "0035-fe0f-20e3.png", | |
"six": "0036-fe0f-20e3.png", |
This file contains hidden or 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
openapi: 3.0.2 | |
info: | |
description: >- | |
This great API aims to provide endpoints to notify blablacar user or anonymous | |
user devices (email, sms, viber, push). | |
version: 0.0.1 | |
title: Blablacar Communication Service | |
termsOfService: '' | |
contact: | |
email: [email protected] |
This file contains hidden or 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
#!/bin/bash | |
# Install | |
# This script need a API key from TinyPNG. See this page: https://tinypng.com/developers | |
# It also need jq library, which can be install thanks to: `brew install jq` | |
# Usage | |
# cd to your folder. This script will compress all PNG or JPG files recursively. | |
API_KEY="CHANGE_ME" |
This file contains hidden or 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
/** | |
* Just for fun™: Flickr spinner in pure CSS | |
*/ | |
@keyframes move { | |
to { left: 50%; } | |
} | |
@keyframes cover { | |
from,49.9% { z-index: 1 } |