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.
Messages - Spyro543
Pages: 1 ... 40 41 [42] 43 44 ... 81
616
« on: November 13, 2011, 02:10:57 pm »
I've looked on eBay and Amazon, but I just cannot find the TI-62 Galaxy and the TI-95 Procalc for a "buy it now" reasonable price.
Anyone know a (American) website that sells these calculators?
617
« on: November 12, 2011, 05:18:34 pm »
What is this Graph3D?
618
« on: November 12, 2011, 04:12:59 pm »
I only have one calc  I need more!
619
« on: November 11, 2011, 08:57:09 pm »
Hm...when I was 6 I was interested in programming... When I was 10, I learned GML... When I was 11, I learned Python... Now, I'm 12, I learned TI-BASIC and am currently learning C++
620
« on: November 11, 2011, 05:29:15 pm »
I just use the plain old US qwerty keyboard 
Me too
621
« on: November 11, 2011, 06:49:52 am »
Timeline: Spongyfan7 to Spyro_987 to spongyfan7 to epic7 to epicbzc to epic7 to spyro_987 to epic7 
Epic7 came from epic, which I for some reason said a lot In 6th grade. I eventually used it as my username.
Spyro ? We have a lot of Spyros here 
Yay!
622
« on: November 10, 2011, 05:53:41 pm »
Alright, I am making my own home-made chat protocol!!  I'm having problems with the Client GUI: import socket import sys s = socket.socket()
from Tkinter import *
def GetUsername(): global username username = usrnam.get() s.connect(("anova.57o9.org", 5000)) s.send("!!!JOIN " + username) UsrBox.destroy()
def SendMessage(messagetosend): s.send("<%s> %s" % (username, messagetosend))
def Disconnect(): s.send("!!!QUIT " + username) s.shutdown() s.close() sys.exit()
UsrBox = Tk()
UsrBox.title("")
title = Label(UsrBox, text="Please enter a username.") title.pack()
usrnam = Entry(UsrBox) usrnam.pack()
b = Button(UsrBox, text="Connect", width=10, command=GetUsername) b.pack()
UsrBox.mainloop()
master = Tk() master.title("chat5000")
titlelbl = Label(master, text="Connected. Username is " + username) titlelbl.pack()
msg = Text(master) msg.pack()
e = Entry(master) e.pack() e.insert(END, "Enter message here")
send = Button(master, text="Send Message", command=SendMessage(e.get())) send.pack()
disconbtn = Button(master, text="Disconnect", command=Disconnect) disconbtn.pack()
while True: data = s.recv(2048) if data != "" or data != None: msg.insert(END, "\n" + data)
master.mainloop()
I click Run, and the first window shows up fine. I type in a username, and click Connect. I'm pretty sure it connects, then the window goes away cuz of UsrBox.destroy(). The main client window should come up, right? If it's not supposed to, how can I make it come up? (the server program is running on the server while I tested this, btw)
623
« on: November 09, 2011, 03:42:36 pm »
My mom: "WHERE'D IT GO!?!??!?!" when I minimized a window "Don't delete it!" when I clicked Save "I can't get on the Internet!" when IE is open "How can I access this document?" when the link couldn't be clearer "Will the server go down?" if IE is closed when she's on Facebook "How do I turn off the computer?" when there is a large red power symbol button in the lower right corner Me: *talking about my IRC projects* Mom: What's IRC? Me: It's an online chat system where you can talk to people all over the world. Mom: Do you talk to strangers? Really Mom?... Well, by now, Juju and friends aren't strangers anymore XP
624
« on: November 07, 2011, 06:10:07 pm »
UPDATE!!! (v2)Awesome updates!!! - Particles are now 1 pixel big instead of 6*6 pixels
- Different control scheme
- New particle addition: Sand
Here's the new controls: - Left click draws walls
- Right click erases whatever is under the mouse
- "W" button creates water
- "S" button creates sand
- Enter creates a water pump
- Delete erases entire board
Here's a video for your enjoyment: Source file: http://anova.57o9.org/junk/fluid.gm81If anyone with GM 8.1 Pro could compile this, that would be great!
625
« on: November 06, 2011, 05:20:14 pm »
Cool! Got any example code so I can make a console for my site?
626
« on: November 06, 2011, 07:16:54 am »
Horray for submitting my own messages!!! [07:12] <+Spyro543> Juju are you here? [07:14] * Spyro543 wants to convey a string of bits across the IRC protocol to Juju
627
« on: November 06, 2011, 06:29:38 am »
I've been trying to learn C++, but with an IDE/Compiler that is refusing to work (or maybe I'm too n00bish to figure it out  ) it's kinda hard. I set the default compiler to Cygwin GCC, set all the toolchain executables (C compiler -> gcc.exe, C++ compiler -> g++.exe), and typed in some code in my current project. It's just a very simple program: #include <iostream> using namespace std; int main() { int a = 5; int b = 6; a = a + 5; int result = a + b; cout << "The result is " << result; return 0; } (Also I think the numbering is broken on the code tags) When I click Build and Run, I get a command prompt window with the following: 4 [main] ? 2488 handle_exceptions: Exception: STATUS_ACCESS_VIOLATION Exception: STATUS_ACCESS_VIOLATION at eip=77AA47E5 eax=00000000 ebx=00000000 ecx=00000000 edx=7EFDD000 esi=00000000 edi=00400000 ebp=0028EEA4 esp=0028EE70 program=, pid 0, thread main cs=0023 ds=002B es=002B fs=0053 gs=002B ss=002B Stack trace: Frame Function Args 0028EEA4 77AA47E5 (00400000, 00000000, 00000000, 0028EEE8) 0028EEB8 77AA2C54 (00400000, 00000001, 0028EFC0, 6104F4A6) 0028EEE8 6109A582 (00400000, FFFFFFFE, 0028EEE4, 77AA317F) 0028EFA8 61004A78 (0028EFC0, FFFFFFFF, 0000EEEE, 0028F8B8) 0028FF58 6100594F (00000000, 00000000, 00000000, 00000000) End of stack trace
Process returned -1073741819 (0xC0000005) execution time : 10.676 s Press any key to continue. And in the build log I get: Checking for existence: C:\Users\Owner\Documents\C++Proj\C++ Experiments\bin\Release\C++ Experiments.exe Executing: "C:\Program Files (x86)\CodeBlocks/cb_console_runner.exe" "C:\Users\Owner\Documents\C++Proj\C++ Experiments\bin\Release\C++ Experiments.exe" (in C:\Users\Owner\Documents\C++Proj\C++ Experiments\.) Process terminated with status -1073741819 (0 minutes, 52 seconds)
Anyone know what's wrong here? Any way I can fix it?
628
« on: November 05, 2011, 11:06:51 am »
My quit message was "Beware of programmers who carry screwdrivers." [11:00] <+Spyro543> I couldn't help but watch my bot logs and see what you would say about that quit message  [11:01] * Fishbot still has that screwdriver [11:01] <+Spyro543> O-o [11:01] * Spyro543 carries a set of really tiny screwdrivers [11:02] <+Fishbot> Screwdrivers are actually quite handy when you need to suddenly disassemble a calc84maniac [11:03] * Spyro543 disassembles Fishbot [11:03] <+Spyro543> oh look a microprocessor *munch* [11:03] * Fishbot helps [11:03] <+OmnomIRC> (O)<calc84maniac> no don't take up my backup battery! [11:04] <+Spyro543> oh look a backup battery *munch* *gzzzzzzt* [11:04] <+OmnomIRC> (O)<calc84maniac> take up wut [11:04] <+Fishbot> *bzzt* You just killed my Curiosity core. [11:04] <+Fishbot> Releasing the nerve gas. [11:04] <+Fishbot> You have five minutes. [11:04] <+Spyro543> Nuu~! [11:04] <+Spyro543> *boom* [11:04] <+Spyro543> *shatter*
629
« on: November 03, 2011, 06:50:35 pm »
Followed. And I also found many other Omnimaga members  and followed them.
630
« on: November 03, 2011, 06:36:05 pm »
I'm just wondering who has a Twitter account because I just made a Twitter account and I need some people to follow.  Here I am, by the way: http://twitter.com/Spyro543
Pages: 1 ... 40 41 [42] 43 44 ... 81
|