Skip to content

Instantly share code, notes, and snippets.

PA SPORTS - NEBEN DIR
PA SPORTS - BULLETPROOF
ctrl+B
Двойное нажатие Shift
(default)root@precise64:/usr/lib/ckan/default/src/ckan# ckan celeryd --config=/etc/ckan/default/development.ini
/usr/lib/ckan/default/local/lib/python2.7/site-packages/celery/platforms.py:812: RuntimeWarning: You are running the worker with superuser privileges, which is
absolutely not recommended!
Please specify a different user using the -u option.
User information: uid=0 euid=0 gid=0 egid=0
uid=uid, euid=euid, gid=gid, egid=egid,
Traceback (most recent call last):
@yanik-ai
yanik-ai / .bashrc
Created April 24, 2017 11:31 — forked from vsouza/.bashrc
Golang 1.5 setup in Mac OSX with HomeBrew. Set `GOPATH` and `GOROOT` variables in zshell or bash.
# Set variables in .bashrc file
# don't forget to change your path correctly!
export GOPATH=$HOME/golang
export GOROOT=/usr/local/opt/go/libexec
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin
MLN_ABI = {
"contracts": {
"FundInterface.sol:FundInterface": {
"abi": [
{
"constant": False,
"inputs": [],
"name": "enableInvestment",
"outputs": [],
"payable": False,
@yanik-ai
yanik-ai / Dockerfile.centos7.python36.pipenv
Created March 9, 2019 23:39 — forked from pvergain/Dockerfile.centos7.python36.pipenv
Dockerfile based on centos:7 Python3.6 and pipenv
# Use an official centos7 image
FROM centos:7
RUN localedef -i fr_FR -c -f UTF-8 -A /usr/share/locale/locale.alias fr_FR.UTF-8
ENV LANG fr_FR.utf8
# gcc because we need regex and pyldap
# openldap-devel because we need pyldap
RUN yum update -y \
&& yum install -y https://centos7.iuscommunity.org/ius-release.rpm \