Skip to content

Instantly share code, notes, and snippets.

View telepenin's full-sized avatar
🎯
Focusing

Telepenin Nikolay telepenin

🎯
Focusing
  • Lisbon, Portugal
View GitHub Profile
@telepenin
telepenin / hack.sh
Created March 31, 2012 13:59 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@telepenin
telepenin / gc_and_weakref.ipynb
Created August 6, 2013 17:38
gc and weakref
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Телепенин Николай Владимирович

О себе

Телепенин
Николай
Владимирович
Год рождения 1986
Место жительства г. Казань, Российская Федерация

Люблю писать хороший, качественный код. Так же люблю стабильность и тесты, много тестов. Трепетно отношусь к хорошо настроенному CI и деплою на продакшен.

I've been doing web development in Python more than 5 years. The last two years I have been working on the position team lead / tech lead. I am well versed in algorithms, data structures, design patterns. Know how to write fast, clean and well maintained code. I am a server-side guy but I also know how client-side stuff works. I am one of the founders and organizers of DevDay IT community in Kazan city.

Also:

  • continuous self-improving
  • curiosity with scepticism
  • reasonable pragmatism

Skills

@telepenin
telepenin / CV.md
Last active August 29, 2015 14:20 — forked from xottabich34/CV.md

Калачев Андрей Александрович

Четырехлетний опыт работы в роли разработчика над крупными веб системами уровня enterprise. В качестве инструментов люблю и использую python (django, spyne, lxml, django-cryipy-forms, celery) и js (extjs, jquery, underscore.js). В качестве хобби нравится писать проекты для себя на таких языках как java, groovy и haskell. Пропагандист pep-8 и pep-247.

О себе

Калачев
Андрей
Александрович
Год рождения 1989
@telepenin
telepenin / asyncio_ssl_example.py
Created July 5, 2016 09:10 — forked from messa/asyncio_ssl_example.py
Python asyncio + SSL TCP client/server example
#!/usr/bin/env python3
import asyncio
import multiprocessing
import os
import ssl
from time import sleep
port = 9000
@telepenin
telepenin / pysyslog.py
Last active July 11, 2016 09:00 — forked from marcelom/pysyslog.py
Tiny Python Syslog Server
#!/usr/bin/env python
LOG_FILE = 'syslogd.log'
HOST, PORT = "0.0.0.0", 514
import logging
import SocketServer
logging.basicConfig(level=logging.INFO, format='%(message)s', datefmt='', filename=LOG_FILE, filemode='a')
@telepenin
telepenin / pg_extract.sh
Last active May 27, 2021 11:06 — forked from brock/pg_extract.sh
Extract single database (one by name) from a sql file created by pg_dumpall
#!/bin/bash
# extract all postgres databases from a sql file created by pg_dumpall
# this script outputs one .sql file for each database in the original .sql file
# unless you pass the name of a database in the dump
if [ $# -lt 1 ]
then
echo "Usage: $0 <postgresql sql dump> [dbname]" >&2
exit 1
fi