Promise.props({ a: 1, b: Promise.resolve(14) }).then(function (a) {
console.log('resolved:::', a);
});
/// resolved::: { a: 1, b: 14 }
Promise.props({ a: 1, b: Promise.reject(14) }).catch(function (err) {
console.log('rejected:::', err);
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
time_namelookup: %{time_namelookup}\n | |
time_connect: %{time_connect}\n | |
time_appconnect: %{time_appconnect}\n | |
time_pretransfer: %{time_pretransfer}\n | |
time_redirect: %{time_redirect}\n | |
time_starttransfer: %{time_starttransfer}\n | |
----------\n | |
time_total: %{time_total}\n |
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
$tiny = array('ни', 'не', 'и', 'но', 'а', 'или', 'да', 'как', | |
'из-за', 'про', 'по', 'за', 'для', 'на', | |
'до', 'при', 'меж', 'о', 'у', 'в', 'во', | |
'с', 'со', 'от', 'ото', 'из', 'без', 'безо', | |
'к', 'ко', 'об', 'обо', 'под', 'подо', | |
'над', 'перед', 'передо'); | |
$text = preg_replace('~(\s)«~', | |
' <span class="hpquote">«</span>', $text); | |
$text = preg_replace('~[^>]«~', '<span class="hpquote">«</span>', $text); |
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
node1: | |
image: hauptmedia/mariadb:10.1 | |
hostname: node1 | |
ports: | |
- 13306:3306 | |
environment: | |
- MYSQL_ROOT_PASSWORD=test | |
- REPLICATION_PASSWORD=test | |
- MYSQL_DATABASE=maria | |
- MYSQL_USER=maria |
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
ProductID Database | |
106 GeoIP.dat | |
111 GeoIPOrg.dat | |
112/115 GeoIPRegion.dat | |
117 GeoIPASNum.dat | |
119 GeoIPUserType.dat | |
121/122 GeoIPISP.dat | |
132/133 GeoIPCity.dat | |
135 GeoIPAreaCode.dat | |
137 GeoIPDMACode.dat |
On mac:
- Download the latest release.
- Extract the binary and place it in
/usr/local/bin
.
by alexander white ©
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
#!/bin/bash | |
rm -fr /tmp/ffmpeg2.2-experiment | |
mkdir /tmp/ffmpeg2.2-experiment | |
ffmpeg -ss 00:01:09 -i mp4.mp4 -vframes 1 /tmp/ffmpeg2.2-experiment/screencap-01.jpg | |
ffmpeg -ss 00:02:19 -i mp4.mp4 -vframes 1 /tmp/ffmpeg2.2-experiment/screencap-02.jpg | |
ffmpeg -ss 00:03:29 -i mp4.mp4 -vframes 1 /tmp/ffmpeg2.2-experiment/screencap-03.jpg | |
ffmpeg -ss 00:04:39 -i mp4.mp4 -vframes 1 /tmp/ffmpeg2.2-experiment/screencap-04.jpg | |
ffmpeg -ss 00:05:49 -i mp4.mp4 -vframes 1 /tmp/ffmpeg2.2-experiment/screencap-05.jpg |
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
#!/bin/bash | |
echo "=============================================" | |
echo "== Telegram Script Installer v 0.1 ==" | |
echo "== ==" | |
echo "== by Jalcaldea ==" | |
echo "=============================================" | |
echo "Downloading necesary files..." |
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
import json | |
MIN_STARS = 700 | |
with open('{}.json'.format(MIN_STARS)) as json_file: | |
repos = json.load(json_file) | |
repos_by_language = {} | |
by_top = {} | |
for repo in repos: |