Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - igimo1

Pages: [1] 2
1
Trash Can / Re: Microsoft Surface Parody
« on: July 18, 2007, 05:48:35 pm »
Does that really pass for humor?

2
Botdev / [Python] Packetbuffer
« on: May 23, 2006, 08:13:28 pm »
Quote
#packet buffer

__author__ = 'topaz'
__copyright = 'BSD License'

import string
import struct
import main

class pBuffer:

    def __init__(self):
        self.buffer = list()
        #declares self.buffer as a list
   
    def insertData(self, data):
        self.buffer.append(data)

    def insertInteger(self, data):
        if string.isdigit(data) == false:
            return
        else:
            data = struct.pack('I', data)
                #converts data into unsigned int and adds it into the buffer
                #converting integers into dwords/words is unnecessary, so we
                #simply pack it and append it
            self.buffer.append(data)

    def insertIntegerList(self, data):
        if string.isdigit(data) == false:
            return
        else:
            self.buffer.append('%s' %data)
            #adds a list of integers into the buffer

    def insertString(self, data):
        self.buffer.append(data)

    def insertNTString(self, data):
        self.buffer.append('%s.' % data)
        #adds string into buffer with a null terminator

    def makeInteger(self, data):
        data = struct.pack('I', data)

        return data
   
    def strToHex(self, data):
        data = data.encode('hex')

        return data
       
    def makeLong(self, data):
        data = struct.pack('L', data)
        #convert data into a Long and return it

        return data
   
    def hexToStr(self, data):
        data = data.decode('hex')
        #decodes data back into string and returns it

        return data

    def GetDWORD(self, data):
        #transform data into an integer and return it
        data = int(data)

        return data
       
    def GetWORD(self, data):
        data = int(data)

        return data

    def insertBYTE(self, data):
        data = Chr(data)
        #convert data into byte format and return it

        self.buffer.append(data)
   
    def sendPacket(self, packetID):
        main.transport.write(self.buffer)

        clear()

    def clear(self):
        #clears the buffer
        self.buffer[:] = []

Updated code.

3
Trash Can / Re: Interesting Ben Franklin quote..
« on: May 12, 2006, 01:19:53 am »
REelect better congressmen?...Elect better congressmen maybe? ;)

I hope you're not talking to me.

4
Trash Can / Re: Intel so creative
« on: May 12, 2006, 01:19:26 am »
Along with other extremely sloppy coding habits.  Look at Joe's code for examples.

Seeing as you have a relatively weak background in programming, I don't understand why you're making such harsh judgements.  His Java examples seemed OK to me.

Sloppy programming is still programming, deadly.  Despite these efforts, you've not convinced me in the least to disregard Visual Basic as a programming language.

He only does it because the cool kids do it.

5
Trash Can / Re: Who is your hero?
« on: May 11, 2006, 08:35:15 pm »
After having to read the book "Dresden", it was pretty clear in my mind that Germany could have easily dominated the modern world as it is today.

If it wasn't for the U.S. stepping in, Germany would have taken over all of Europe and probably Russia.

They were forced in if I rember. If it wasent for the Japenses are their retarded act to bomb peral harbor I think Hitler could have easily taken over half the world.

My teacher was reading us something on the internet that came from Hitlers own mouth while he was talking to one of his SS men. He stated that He envyed Canada and The US for the econmy and their way of life. Iam sure if the stupid Japs didnt attack us, hell Hitler and bush could probally be having lunch right now for all we know.

you...

...

...

ugh...

retarded...


6
Trash Can / Continuation of topic
« on: May 03, 2006, 10:57:46 pm »
My thoughts exactly. Please don't disrespect my fellow clan members in our home, especially for lame and quite hypocritical reasons. If you continue to take the attitude you have displayed in the thread thus far, you will find yourself banned from these forums rather quickly.

Rofl... I'll take that as an apology, since you failed to defend yourself and chose to condescend to me (yet again, it seems). Telling me that I am 'lame and quite hypocritical' doesn't work, since you have no evidence to back it up after you pay attention to some of my posts. Instead of playing the righteous protector of x86, why don't you let your members defend themselves instead? Pathetic scumbag.

Don't tell members to "learn their place" when you're a guest on OUR forums.  Go learn your place.

Why do you even bother to post when this doesn't concern you, not at all? Shut the fuck up you piece of shit, let Quik defend himself instead of you two playing a two-man offensive.

Unless you're suffering from some sort of self-delusion, you haven't joined x86. Quit playing the suckup - it's not coincidence that you only have the balls to insult me after Quik posts.

7
Trash Can / Re: $25 to Barnes and Noble
« on: May 03, 2006, 12:41:16 am »
Holy Blood, Holy Grail looks untouched, and Angels and Demons looks like it was read once and sold (spinal crease)
Joe, there are probibally good reasons for those books to never be read, let alone touched.

Idiotic judgements of the titles are probably one of the reasons why your vote failed.

8
Entertainment District / Hohoho, Rabbit!
« on: April 27, 2006, 03:53:31 am »

9
Trash Can / Re: Welcome CrAz3D to x86!
« on: April 25, 2006, 01:41:48 am »
Quote
topic title

Do i HAVE to?

10
General Discussion / Problem with SATA...
« on: April 21, 2006, 04:10:08 am »
It seems I need SP2 installed to be able to read my SATA harddrive. However, as I have an illegitimate copy of WinXP, and I don't intend to reinstall Windows, I'm left with no options. If you know of a way to get SP2 through a different source (see: the old sp2torrent.com) or tweak Windows to read it, please help me out.

11
Trash Can / Re: What are some good anti-abortion/abortion points?
« on: April 19, 2006, 09:10:32 pm »
Against: hitler was born
For: the fact that hitlers mom was talked out of having an abortion


Why're you posting in a topic where you don't and wouldn't contribute, as well as filling the thread with flamebait?

12
Trash Can / Re: Are *you* faster than Linksys?
« on: April 13, 2006, 11:29:02 pm »
AREEBA

AREEBA



FAST LIKE SPEEDY GONZALES

13
Botdev / [VB6] I need help!
« on: April 06, 2006, 10:41:13 pm »
So I'm writing a moderation bot that supports multiple sockets. Once loaded, the bots are expected to act as a single entity; instead of three bots responding to a command, only one would - on the next command, the next bot would respond to that command, and so on. The problem I'm having is, I've been thus far unable to force only one bot to respond, and I'm not sure as to how to do so. The socket receives the Talk event from 0x0F, passes it to an instance-specific class, and acts on it. How would I go about getting it to work?

14
I'd like to join! / Application for Topaz
« on: March 22, 2006, 03:09:38 am »
Can you _not delete my application this time around? I actually want to join!


Believe it (or not), I'm actually easy to get along with - provided you aren't hopelessly incompetent and stubborn. I think I'd make a great addition to x86!

15
Trash Can / Re: Steve.....LOL
« on: March 20, 2006, 10:16:40 pm »
Jesus. CopyRight Infringment off the Ying-Yang. 

...

You can't copyright an idea. Just because you add a feature to enhance your users' experience isn't thieving - it's more like improving services for the consumer. You're retarded.

Pages: [1] 2