This file has been truncated, but you can view the full file.
This file contains 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
A | |
a | |
aa | |
aal | |
aalii | |
aam | |
Aani | |
aardvark | |
aardwolf | |
Aaron |
This file contains 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
#!/usr/bin/env python3 | |
"""Script for Tkinter GUI chat client.""" | |
from socket import AF_INET, socket, SOCK_STREAM | |
from threading import Thread | |
import tkinter | |
def receive(): | |
"""Handles receiving of messages.""" | |
while True: |
This file contains 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
#!/usr/bin/python | |
# -*-coding=utf-8 -*- | |
#----------------------------------------------------------------- | |
# PyPac v1.2 | |
# Created by: Abner Matheus | |
# E-mail: [email protected] | |
# Github: http://github.com/picoledelimao | |
#----------------------------------------------------------------- | |
import time, os, platform, sys, select, math | |
from random import randint |
This file contains 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
class Entity | |
constructor: (@context, @cw, @ch) -> | |
# any setup here... | |
update: -> | |
# do per-frame updates | |
draw: -> | |
# draw using '@context' | |
@context.fillStyle = 'rgba(0,128,255,0.8)' |