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 - ztrumpet

Pages: 1 ... 309 310 [311] 312 313 ... 385
4651
Music Showcase / Re: Agent84's Compositions #11 + 11.5
« on: March 11, 2010, 06:03:39 pm »
That's really nice also.  I like both versions.  You're a great piano player and composer. :)

I'm glad you got renaming to work. ;D

4652
TI-BASIC / Re: Collision Detection Explained
« on: March 11, 2010, 06:01:13 pm »
Yeah, you are very good at explaining things. ;D

You have my permission to use anything that I've posted. :)

4653
TI-BASIC / Re: Finding the min of a matrix
« on: March 11, 2010, 05:58:47 pm »
That's really nice Builderboy!  Great code! ;D

4654
TI-BASIC / Re: What BASIC supplements/libraries are there?
« on: March 11, 2010, 05:54:41 pm »
Seeing how all the libs I've used have been mentioned (XCOPY and Celtic III are my favorites), I'll talk on XTRAVAR.

http://www.ticalc.org/archives/files/fileinfo/391/39138.html
XTRAVAR allows you to write basic programs using the extra "hacked" pic, matrix, string, GDB, lists (do you need more lists?), etc.  It's really nice.  I'd highly recommend it.  Also, it's not really a lib, because once you've put these tokens in a basic program you never need XTRAVAR again.  You can then have a pure basic program, though Asm was needed to get there. :)
I still count it as pure basic though, because you don't ever run a Asm program, one is just used for editing the program. ;D

4655
The Axe Parser Project / Re: Logo Contest
« on: March 10, 2010, 08:57:57 pm »
Those are excellent {AP}! ;D

4656
TI-BASIC / Encoding and Decoding Text
« on: March 10, 2010, 08:52:54 pm »
Today I made a couple of routines to encode and decode text.  It stores the text into L1, 6 letters a list element.  You can have messages up to 128 characters long. :)

Code: [Select]
TEXTENCD

DelVar L1ClrHome
Input "",Str1
min(128,length(Str1->L1(1
23->dim(L1
DelVar C1->B
For(A,1,L1(1))
C+1-6(C=6->C
If C=1
B+1->B
L1(B)+10^(2C-2)inString("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789,.!?:'",sub(Str1,A,1->L1(B
End
B->dim(L1
L1


TEXTDECD

ClrHome
DelVar C1->B
For(A,1,L1(1
C+1-6(C=6->C
If C=1
Then
B+1->B
L1(Ans->D
End
.01int(D->D
int((A-1)/16
Output(1+Ans,A-16Ans,sub(" ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789,.!?:'",1+100fPart(D),1
End

Comments? :D

4657
TI-BASIC / Re: Finding the min of a matrix
« on: March 10, 2010, 05:32:58 pm »
But I still hate how there doesn't look to be an elegant way to do this :(
How about this? (Still assuming R and C are already set)
[A](1,1
For(A,1,R
For(B,1,C
min(Ans,[A](A,B
End
End


I this slightly more elegant?

4658
TI-BASIC / Re: Finding the min of a matrix
« on: March 10, 2010, 05:13:29 pm »
Matrices can't be min(ed. :(
It's too bad, as I know I've wanted to do that from time to time.
I think the solution you found is the smallest. :)
I'm not sure, but this may be faster:
[A](1,1
For(A,2,7 //I'm assuming the matrix is 7 columns. :D
min(Ans,[A](1,A
End
I don't know which way is faster.  Good luck getting it to work! ;D

4659
Introduce Yourself! / Re: hello! i am new!
« on: March 10, 2010, 04:56:30 pm »
That's really neat!  I don't think I'd use one of those, but it certainly is interesting! :D

Nice sig schoolhacker. :)

4660
Escheron: Shadow over Ragnoth / Re: Escheron: Presage of Darkness
« on: March 10, 2010, 04:48:39 pm »
That's awesome!  You're an awesome writer!

Thoust is also awesome whenith you speakith in a Shakespearean dialect. :)

That is an amazing storyline. :D

4661
Ouch about Mirage. :(

I'm glad there are some Nspire geniuses out there.  No matter what Ti does, the Nspire will be hacked, and it will have Asm.  That's cool! ;D

4662
TI Z80 / Re: Omnimaga Map Maker (xLib-CIII)
« on: March 10, 2010, 04:40:44 pm »
That sounds really cool!
I'm glad you're still working on this {AP}!
Good luck! ;D

4663
Escheron: Shadow over Ragnoth / Re: Escheron: Presage of Darkness
« on: March 10, 2010, 04:35:52 pm »
That's awesome!  If I read that correctly, than you can only have one of any object.  That's neat.  It looks great so far! ;D

4664
Humour and Jokes / Re: Funny #omnimaga quotes
« on: March 10, 2010, 04:30:36 pm »
Subaru and Calc
Are both winners with style
Their posts are awesome

;D

4665
TI Z80 / Re: Monopoly v3.0 BETA
« on: March 10, 2010, 04:21:33 pm »
It's that big?  How can it be that big?  Is there an extra zero there?  I thought you said it was around 3400 a few days ago?

Anyway, it's nice to see progress! :)
Keep up the awesome work! ;D

Pages: 1 ... 309 310 [311] 312 313 ... 385