CMD A VALA B VALB
0000 0000 0000 0000 0000 0000 0000 0000
\ / \ / \ / \ / \ / \ /
SET DIO 5 VAR 4 ignored
- A,B are one of DIO, AO, PWM, TMR, user variable, value
Just do something, doesn't matters what | |
Book == blog archives. Feel free to scram | |
We are creatures of habits (but don't condition habits with identity/ego). Have deliberate habits | |
Stopping alcohol | |
Unpack causes | |
- availability | |
- desire | |
Availability => Early morning sport. Force to not go out at night too much. | |
Desire |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
import socket | |
if __name__ == "__main__": | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
sock.connect(("localhost", 9000)) | |
data = "some data" | |
sock.sendall(data) | |
result = sock.recv(1024) | |
print result | |
sock.close() |