Skip to content

Instantly share code, notes, and snippets.

View xboston's full-sized avatar

Nikolay Kirsh xboston

View GitHub Profile
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
@vorvulev
vorvulev / php-punctuation.php
Created January 11, 2016 20:03
Висячая пунктуация PHP
$tiny = array('ни', 'не', 'и', 'но', 'а', 'или', 'да', 'как',
'из-за', 'про', 'по', 'за', 'для', 'на',
'до', 'при', 'меж', 'о', 'у', 'в', 'во',
'с', 'со', 'от', 'ото', 'из', 'без', 'безо',
'к', 'ко', 'об', 'обо', 'под', 'подо',
'над', 'перед', 'передо');
$text = preg_replace('~(\s)«~',
' <span class="hpquote">«</span>', $text);
$text = preg_replace('~[^&gt;]«~', '<span class="hpquote">«</span>', $text);
@lucidfrontier45
lucidfrontier45 / galera_cluster.yml
Last active May 17, 2024 13:15
docker-compose file for mariadb galera cluster
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
@saadtazi
saadtazi / Promise.props without bluebird.md
Last active July 20, 2023 12:02
buebird inspired Promise.props using native Promise.all()

Usage

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);
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
@jaydenseric
jaydenseric / ffmpeg-web-video-guide.md
Last active March 18, 2025 17:57
A quick guide to using FFmpeg to create cross-device web videos.

Video conversion with FFmpeg

Install

On mac:

  1. Download the latest release.
  2. Extract the binary and place it in /usr/local/bin.

Command basics

@honkskillet
honkskillet / byte-sizetuts.md
Last active August 22, 2024 14:19
A series of golang tutorials with youtube videos.
#!/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
@jalcaldea
jalcaldea / telegram-installer.sh
Last active April 5, 2020 15:06
Small script that simplifies Telegram installation in ubuntu.
#!/bin/bash
echo "============================================="
echo "== Telegram Script Installer v 0.1 =="
echo "== =="
echo "== by Jalcaldea =="
echo "============================================="
echo "Downloading necesary files..."
@leventov
leventov / analyze.py
Created September 4, 2014 23:53
См. http://habrahabr.ru/post/235689/. Инструкция по применению в первом комментарии
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: