Skip to content

Instantly share code, notes, and snippets.

View maojr's full-sized avatar
🎯
Focusing

maojr

🎯
Focusing
View GitHub Profile
@littlepea
littlepea / crud-test.md
Created October 28, 2015 02:58
This test is for a simple Django CRUD views to add, edit and display tour leaders.

Tour Lead CRUD Test

Overview

This test is for a simple Django CRUD views to add, edit and display tour leaders.

UI mockup is in crud-test.html.

Just implement as much functionality as you can in a time-box of 2 hours focusing fist on quality rather than quantity.

@kykyev
kykyev / tcpserver_epoll_lt_greenlets.py
Created July 19, 2012 16:10
Simple tcp server based directly on epoll event loop (level triggered). Uses greenlets.
# -*- coding: utf-8 -*-
"""Simple echo server for educational purposes.
Based directly on python interface to Linux epoll mechanism.
Uses greenlets.
"""
import socket
import select
import errno
from greenlet import greenlet