--> Show Posts - Spyro543 --> -->

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.


Messages - Spyro543

Pages: 1 ... 52 53 [54] 55 56 ... 81
796
TI-Nspire / Re: [Lua] BigNumNum Cruncher
« on: August 21, 2011, 08:53:46 pm »
Awesome looking! (Why would you even need to calculate numbers this big anyways? :P)

797
Other Calculators / Project DreamCalc Revived
« on: August 21, 2011, 03:09:18 pm »
Some people here might remember Project DreamCalc, right? Well, I never wanted it to die, in fact, I want to keep working on it.

I lost my notebook, so I lost all my ideas and concepts, so I have to start over on that.  :banghead:

Question:
I would want some help from you guys: What is a good, small screen for BeagleBoard-xM? and what about the keyboard? It would have to have graphing calculator keys, and it would have to be able to plug into a BeagleBoard-xM.

I also have a poll question.

798
TI Z80 / Re: PaintPad - On-Calc Paint and Text Editing
« on: August 21, 2011, 02:37:08 pm »
If I knew Axe I would try to make this :P

799
Computer Programming / Re: Defined function running before it is called
« on: August 21, 2011, 02:08:51 pm »
So if fopen() has arguments, I place a "lambda: " infront of it? And if it doesn't, I don't put the () after fopen?

EDIT: One more problem: I get <open file u'C:/Users/Aaron/Downloads/stuff.cpp', mode 'r' at 0x01F85EE8> instead of C:/Users/Aaron/Downloads/stuff.cpp.

800
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: August 21, 2011, 08:19:36 am »
1930s: You're tempted to go out and buy another calculator despite the poor conditions of the current economy.

I has to get a TI-3x for school and it's going to be a TI-36x Pro :D

801
Miscellaneous / Re: Do you know what Duplo blocks are?
« on: August 21, 2011, 08:16:29 am »
<?php
     $NormalLegos = 0 ;
     $Duplos = 0 ;

     $NormalLegos ++ ;
     $Duplos -- ;
 ?>

Spoiler For Spoiler:
I'm learning PHP. :P

802
Computer Programming / Re: Defined function running before it is called
« on: August 21, 2011, 08:09:54 am »
Bump. Still needing help. >:P

803
Miscellaneous / Re: Birthday Posts
« on: August 20, 2011, 11:41:20 am »
Here's a userbar from me to Juju:



Look at the scanline pattern :D JUJUJUJUJUJUJUJU...
Spoiler For Spoiler:
[img]http://www.userbars.com/36030/636083/23-4632-ubd2808.png[/img]

804
Miscellaneous / Re: What is your avatar?
« on: August 20, 2011, 11:12:15 am »
Yes, Sammy your dog...cute!

Take a good look at my avatar...try to guess what it is...

805
TI Z80 / Re: On-the-fly screenshots (homescreen only)
« on: August 20, 2011, 10:38:19 am »
Homer is a cool little toy, but is it useful?

Yes. Yes it is.

Bug report: When there's a character in the last two columns, in the pic, there will be an extra newline added...picture explanation:
Here's what I enter in Homer:
Saying stuff yay
This is text!!!
W00t


As you see, no extra newlines.
Here's the picture:

Extra newlines after "Saying stuff yay" and "This is text!!!" because there are characters in the last two columns of the pic.

806
Miscellaneous / Re: Userbars: Do you make any?
« on: August 20, 2011, 08:44:54 am »
Ok here are all my userbars:

I will keep the list updated.








807
Computer Programming / Re: Game Development with wxPython
« on: August 19, 2011, 05:10:02 pm »
Sounds cool, will have to look at it.

808
Computer Programming / Defined function running before it is called
« on: August 19, 2011, 05:09:04 pm »
This program is nowhere near finished, just warning you!

I'm working on a GUI for g++ because I'm bored. I'm having strange problems with it.

Code: (entire source) [Select]
from Tkinter import *
import os
import tkFileDialog

root = Tk()

tn = Label(root, text="gcc C++ Compiler GUI")
tn.grid(row=0, column=1, columnspan=3, sticky=N+S+E+W)

pathn = Label(root, text="Path to source:")
pathn.grid(row=1, column=1, sticky=N+S+E+W)

namen = Label(root, text="Name of compiled file:")
namen.grid(row=2, column=1, sticky=N+S+E+W)

path = Entry(root)
path.grid(row=1, column=2, columnspan=2, sticky=N+S+E+W)
path.delete(0, END)
path.insert(0, "")

name = Entry(root)
name.grid(row=2, column=2, columnspan=3, sticky=N+S+E+W)
name.delete(0, END)
name.insert(0, "")

quitbtn = Button(root, text="Exit", fg="red", command=exit)
quitbtn.grid(row=3, column=3, sticky=N+S+E+W)

compilebtn = Button(root, text="Compile!", fg="blue", command=quit)
compilebtn.grid(row=3, column=2, sticky=N+S+E+W)

spyro = Label(root, text="By Spyro543")
spyro.grid(row=3, column=1, sticky=N+S+E+W)

def fopen():
    cformats = [('C++ source file','*.cpp'),('Plain text file','*.txt'),('Any File','*.*')]
    filenm = tkFileDialog.askopenfile(parent=root,filetypes=cformats ,title='Select the cpp source file')
    path.insert(0, filenm)

browsebtn = Button(root, text="Browse", fg="black", command=fopen())
browsebtn.grid(row=1, column=4, sticky=N+S+E+W)

root.mainloop()

I'm having two problems: one is the definde function fopen() is running immediately instead of when I call it (when the button is pressed). Any way to fix this?
Code: (first problem) [Select]
def fopen():
    cformats = [('C++ source file','*.cpp'),('Plain text file','*.txt'),('Any File','*.*')]
    filenm = tkFileDialog.askopenfile(parent=root,filetypes=cformats ,title='Select the cpp source file')
    path.insert(0, filenm)

My 2nd problem is that after fopen() runs (when it's not supposed to :mad:) all of the widgets freeze and don't do anything. I can't activate the text boxes and none of the buttons do anything.

809
News / Re: OmnomIRC moved to new server
« on: August 19, 2011, 04:39:25 pm »
Ok, really...SirCmpwn was kinda mean and rough before but I never thought much of it...

Hmm...makes you think, what's this site going to be like in five years? Who's going to still be on?

I hope I'll still be on...I probably will.

810
Miscellaneous / Re: Userbars: Do you make any?
« on: August 19, 2011, 04:24:12 pm »
Binder News is using one of my userbars!!!

w00t w00t w00t w00t w00t....

Pages: 1 ... 52 53 [54] 55 56 ... 81