This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# smspython.py | |
# Sends sms message to any cell phone using gmail smtp gateway | |
# Written by Alex Le (http://alexanderle.com) | |
import smtplib, base64, sys, re | |
from email.MIMEMultipart import MIMEMultipart | |
from email.MIMEText import MIMEText | |
from email.MIMEImage import MIMEImage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;; tictactoe.lisp | |
;;;; | |
;;;; Andrew Levenson | |
;;;; 10/27/10 | |
;;;; | |
;;;; Simple two player ASCII Tic Tac Toe Game | |
;;; First player is X, so initialize the marker to X | |
(setf *marker* :X) | |
(setf *player* "Player 1") |