Skip to content

Instantly share code, notes, and snippets.

@amvtek
amvtek / pushstream_problem.conf
Last active August 29, 2015 14:01
nginx pushstream config with non working push_stream_padding_by_user_agent
# This file is included in main nginx config file
# push-stream module configuration
push_stream_shared_memory_size 256M;
push_stream_message_ttl 60s;
push_stream_max_messages_stored_per_channel 32;
server {
listen 80;
@amvtek
amvtek / coiterate_01.py
Last active March 28, 2018 05:38
Making use of twisted coiterate...
# -*- coding: utf-8 -*-
"""
Making use of twisted coiterate
example 01
"""
from twisted.internet import reactor
from twisted.internet.task import coiterate
def make_iterator_to_sum_all_integers_until(N):