Search found 98 matches

by CurtisP
Mon May 02, 2005 9:06 pm
Forum: Announcement Board
Topic: Introduce Yourself: What's your User Name based on?
Replies: 656
Views: 358404

Warning, topic diversion!!! Anyway, Curtis is my given name. The P was added by my doctor's husband, he just started calling me Curtis P one day. Then in the spirit of Bud "Grandmaster B" Bundy, I decided to go by the name "Rappin' Curtis P - Cause the Chicks dig it" Now I just s...
by CurtisP
Sun May 01, 2005 9:47 pm
Forum: Programming
Topic: got any cool 8x8 programmable character designs?
Replies: 13
Views: 8874

I have fixed the editor. I have been told that it doesn't work with Firefox. I've only tested it in IE6 myself.

Here are my custom characters for a biplane:

Code: Select all

Front   34,85,34,0,34,85,34,0
Right   0,6,192,255,63,6,0,2
Left    0,96,3,255,252,96,0,64
by CurtisP
Sun May 01, 2005 7:27 pm
Forum: Programming
Topic: Card Game Routines
Replies: 0
Views: 1246

Card Game Routines

I've written some routines for use in writing card games. The deck of cards is stored in a string. Each character represents one card. The value of the character is 48 + suit * 16 + card value. Here are the routines: Build the card deck: The deck his held in D$. Uses I and J. 110 D$="":FOR...
by CurtisP
Sun May 01, 2005 7:02 pm
Forum: Programming
Topic: got any cool 8x8 programmable character designs?
Replies: 13
Views: 8874

I can easily widen the pixels. The code is all javascript, so you can just save the webpage. I'll let you know when i get the problems fixed.
by CurtisP
Sun May 01, 2005 1:56 pm
Forum: Programming
Topic: got any cool 8x8 programmable character designs?
Replies: 13
Views: 8874

6502dude wrote:I did notice that sometimes after a bit is unselected, the calcualted value remains unchanged.
I was able to reproduce it. I'll see if I can fix it. Hopefully I will be able to add more features.
by CurtisP
Sun May 01, 2005 7:06 am
Forum: Programming
Topic: got any cool 8x8 programmable character designs?
Replies: 13
Views: 8874

I wrote a quick and dirty javascript character editor.

You can find it here: http://www.neoventures.org/jscripts/chared.html
by CurtisP
Sat Apr 30, 2005 4:21 pm
Forum: Programming
Topic: Web-Based BASIC PRG Lister
Replies: 2
Views: 1442

Definitely a handy utility, but it could use some improvement. Maybe I'll do that some time.
by CurtisP
Fri Mar 11, 2005 8:11 pm
Forum: Programming
Topic: Basic Speedup Tip
Replies: 59
Views: 18532

The BASIC Interpreter actually searches the stack for the proper value and throws away everything above it. So, if you do a GOSUB, then a FOR, then a RETURN, the FOR will be discarded and the RETURN will jump to directly after the GOSUB. In addition, if a variable is included with the NEXT, the Inte...