*HISSSSSSSS*

Posted by DesertFox on Jan. 30, 2008, 12:48 a.m.

Yeah - Python is an easy language, and its awesome. Especially if you use the PyGame module for game development. Its really high-level and has wierd syntax, but once you get used to it its really easy. I ditched GM a long long time ago, and finally, after a long wait, Python has lodged itself as a suitable replacement.

Today's bit of code?

from socket import *

sock=socket(AF_INET, SOCK_STREAM)

sock.connect(("irc.astrolink.org", 6667))

while 1:

…..sock.send('SPAM')

Theoretically that would send the IRC server packets containing 'SPAM', indefinitely. Quick and easy :D (the 5 dots represent a tab, cause of whitespace removal >_>)

On my physics midterm, the class average was around 55%. My score? 87%! Yeah - I pwn - ph34r my 1337 physics skillz! Etc… I also made an anthill simulator for another class for midterm project.

Also, my roommate is continuously playing Odin Sphere - an interesting looking game.

Comments

ludamad 16 years, 8 months ago

Python seems cool.

DesertFox 16 years, 8 months ago

@Onii - :P Mine was just an example. I know my way around IRC traffic syntax.

bendodge 16 years, 8 months ago

LOL @ PY

I think I need to learn Python, if for no other reason than to get on the increasingly large bandwagon.

WaleedAmer 16 years, 8 months ago

On my Algebra midterms, I got a 97%. Lol. Easy as hell. Yes, I know… -.-

gtvg 16 years, 8 months ago

Mmmmmm py. Tasty!

shad0w 16 years, 8 months ago
F1u 16 years, 8 months ago

You're an interesting game.

[deleted user] 16 years, 8 months ago

Quote:
@Onii - :P Mine was just an example. I know my way around IRC traffic syntax.
but it's so useless D:

Acid 16 years, 8 months ago

That syntax might bother me a little.

Nighthawk 16 years, 8 months ago

PyGame huh? I'll have to try that sometime.