Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opusThe use of __main__.py to create executables
myprojectfolder/
    |_ __main__.py
    |_ __init__.py
Being __main__.py:
print("Hello")
| archim@monitoring:/etc/smokeping$ cat watch.sh | |
| #!/bin/bash | |
| cd /etc/smokeping/config.d | |
| while :; do | |
| inotifywait -e CLOSE_WRITE /etc/smokeping/config.d/* | |
| for f in *config.txt; do | |
| python /etc/smokeping/convert.py $f > `basename $f .txt`_converted.txt | |
| done | |
| invoke-rc.d smokeping restart | |
| done | 
Branch A has commits (X,Y) that also need to be in Branch B. The cherry-pick operations should be done in the same chronological order that the commits appear in Branch A.
cherry-pick does support a range of commits, but if you have merge commits in that range, it gets really complicated
git checkout branch-B
git cherry-pick X
git cherry-pick Y
| # -*- coding: utf-8 -*- | |
| import base64 | |
| from items import EmailItem, EmailLabelItem | |
| from loader import JSONItemLoader | |
| from oauth2spider import OAuth2Spider | |
| class GmailSpider(OAuth2Spider): | |
| name = "gmail" | 
| # author: tmwhere.com | |
| # --- third party dependencies | |
| PIXI = require('pixi.dev') | |
| _ = require('lodash') | |
| noise = require('perlin').noise | |
| Quadtree = require('quadtree').Quadtree | |
| seedrandom = require('seedrandom') | |
| # --- | 
Так получилось, что мы открываем сейчас достаточно много чатов в [Gitter.im][1]: часто это совсем новые для нас сообщества (как [PHP-чат][2], например), а часто - это уже существующие чаты, которые мы создали и администрировали в Skype (например, [Frontend-UA][3]). Не зависимо от того, новый ли это чат или "переезжающий", нам раз за разом задают одни и те же вопросы. Здесь мы собрали их и подготовили несколько ответов.
# emerge -pvq sssd openldap sudo openssh
[ebuild   R   ] net-nds/openldap-2.4.38-r2  USE="berkdb crypt gnutls ipv6 minimal sasl ssl syslog tcpd -cxx -debug -experimental -icu -iodbc -kerberos -odbc -overlays -perl -samba (-selinux) -slp -smbkrb5passwd" ABI_X86="(64) -32 (-x32)" 
[ebuild   R   ] net-misc/openssh-6.7_p1  USE="hpn pam pie -X -X509 -bindist -kerberos -ldap -ldns -libedit -sctp (-selinux) -skey -static" 
[ebuild   R   ] sys-auth/sssd-1.12.1  USE="ssh sudo -acl -augeas -autofs -locator -manpages -netlink -nfsv4 -nls -python (-selinux) {-test}" PYTHON_TARGETS="python2_7" 
[ebuild   R   ] app-admin/sudo-1.8.12  USE="ldap nls pam sendmail -offensive (-selinux) -skey" # < /etc/sssd/sssd.conf# Prerequisites: netcat-openbsd (BSD version of netcat)
$ ssh -fND 127.0.0.1:8081 user@<your-vps>
$ git config --global url."https://github".insteadOf git://github
$ git config --global http.proxy 'socks5://127.0.0.1:8081'
$ echo -e 'Host github.com\nProxyCommand nc -x 127.0.0.1:8081 %h %p' >> ~/.ssh/configAlternative solutions: