Skip to content

Instantly share code, notes, and snippets.

View baden's full-sized avatar
🏠
Working from home

Денис baden

🏠
Working from home
  • бездельник и лоботряс
  • Каменское
View GitHub Profile
@ryneches
ryneches / pH.ino
Created August 3, 2012 08:06
pH sketch with PROGMEM
#include <SoftwareSerial.h>
#include <avr/pgmspace.h>
#define USBbaud 9600
#define GSMbaud 9600
#define pHbaud 38400
#define pHrxPin 11
#define pHtxPin 3
@kachayev
kachayev / tic-tac-toe.py
Created November 22, 2011 23:50
Tornado demo application: TCP server to tic-tac-toe multiplayer game
"""Simple TCP server for playing Tic-Tac-Toe game.
Use Player-to-Player game mode based on naming auth.
No thoughts about distribution or pub/sub mode
(for monitoring or something like this). Just
basic functionality.
"""
import time
import logging