Instantiate with a path to the directory containing the SSL certificate and key (issued by Yandex.Direct).
from directmanager import DirectManager
manager = DirectManager('~/.certificates')
manager.set_cid(2139432)
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion | |
fi | |
if [ -f /usr/share/git-core/git-completion.bash ]; then | |
. /usr/share/git-core/git-completion.bash | |
fi | |
if [ -f /usr/share/git-core/git-prompt.sh ]; then | |
. /usr/share/git-core/git-prompt.sh |
/** | |
* Usage: | |
* | |
* animate(document.querySelector('#animatedElement'), { | |
* styles: { | |
* height: { | |
* start : 100 | |
* end : 300, | |
* units : 'px' | |
* } |
String.prototype.template = function (obj) { | |
return this.replace( | |
/{{(.+?)}}/g, | |
function (_, key) { return obj[key] } | |
) | |
} |
var Observer = (function () { | |
'use strict'; | |
return { | |
on: function (event, fn) { | |
if (!this.handlers) { this.handlers = {}; } | |
var handlers = this.handlers[event]; | |
if (!handlers) { | |
handlers = this.handlers[event] = []; |
set encoding=utf-8 fileencodings=utf-8 | |
syntax on | |
"syntax sync fromstart | |
let no_buffers_menu=1 | |
set backspace=indent,eol,start | |
set history=50 | |
set hlsearch | |
set incsearch |