Omnimaga

Calculator Community => TI Calculators => TI-BASIC => Topic started by: guy6020665 on September 30, 2010, 10:33:03 pm

Title: Probably Pointless Program
Post by: guy6020665 on September 30, 2010, 10:33:03 pm
So my dad has challenged me to make a calender program in TI-BASIC, but every now and then the text output gets screwed up and i don't know whats wrong. It seems to happen only when using larger years like 2000 but it work fine with the year 1. Help?
Title: Re: Probably Pointless Program
Post by: Happybobjr on September 30, 2010, 10:35:27 pm
describe what happens. or screeny plz.

Maybe you can only use 1 byte?
Title: Re: Probably Pointless Program
Post by: guy6020665 on September 30, 2010, 10:40:30 pm
Cant post a screenshot now but what happens is the numbers for the days fail to appear

-----------------------
l  January   Year:2000  l
-----------------------
l 1 l 2 l 3 l 4 l 5 l 6 l 7 l
-----------------------
l    l    l    l    l    l    l   l
-----------------------

And everything past is plank

or it skips the first two weeks of the month
Title: Re: Probably Pointless Program
Post by: meishe91 on September 30, 2010, 10:42:20 pm
Well I just tried, haven't gone over the code yet, but I can't get it to display over the year 700. Granted, I only used Sept.

Edit:
Weird, it works for Jan. 1995. Hmmm...

Edit:
Still going over code but fPart(C/7)*7→D can be 7fPart(C/7→D.

Edit:
Ok, I think I figured it out. I haven't fully tested it but it seems to have. That line I just optimized for you actually needs to be iPart(7fPart(C/7→D. That should fix it.

Edit:
Got bored so I optimized your program some. I'm sure some of it can be optimized more/better but oh well. Shaved off 70 bytes.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 02, 2010, 04:47:03 pm
Hey guy6020665, did you see my post above? I'm pretty sure that is what fixes it. (Since 7fPart(C/7→D didn't always return just a integer there was no way it could be equal to the integers in the display routine. But getting the integer part of it will keep that number as an integer the rest of the time.)
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 02, 2010, 09:44:41 pm
Ah, ok thanks. Sorry didn't check this when I was on earlier.
Title: Re: Probably Pointless Program
Post by: calc84maniac on October 02, 2010, 09:47:29 pm
Actually, round() is better than iPart() in this case. You never know when the result might be 3.999999999 and iPart returns 3.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 02, 2010, 10:03:20 pm
So many little things that I forgot about  :-[
Title: Re: Probably Pointless Program
Post by: meishe91 on October 02, 2010, 10:08:53 pm
Actually, round() is better than iPart() in this case. You never know when the result might be 3.999999999 and iPart returns 3.

Oh, right. I don't know the actual formula for calculating all this so I didn't think about using round(.

So many little things that I forgot about  :-[

No worries, we all do it from time to time :)
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 03, 2010, 04:59:47 am
Off-topic, but meishe91, when you have multiple edits, you should really bump your thread after 6 hours with no replies. Else, people won't notice if 40 other topics get bumped in the meantime.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 03, 2010, 05:25:08 am
Ya, I know. I just avoid double posting if I can (even after the time limit :P). I just figured he would have checked it again so I waited.
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 03, 2010, 01:20:13 pm
Personally I don't mind past the limit, since then you get ignored most of the time x.x
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 03, 2010, 02:53:05 pm
Ok program fixed, it now actually gives a correct calender, before it was off by a few days, meishe91 i haven't been able to check your version yet so i will assume that you just optimized and did not get a correct calendar because in my idiocy i forgot to post that problem. Will add in correct calendar to meishe91's version and upload it when i can
Title: Re: Probably Pointless Program
Post by: meishe91 on October 03, 2010, 04:02:49 pm
Well mine gives someone the right calendar apparently. I mean I checked the one for September 2010 and it worked and seemed to work. What was the problem with it?
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 03, 2010, 04:09:44 pm
I haven't been able to check yours but the one i uploaded sometimes gave the wrong calender depending on the year, i did leap years wrong so sometimes the month started on a wrong day of the week..
Title: Re: Probably Pointless Program
Post by: meishe91 on October 03, 2010, 04:24:53 pm
Ah ok. Well you mind uploading your new version?
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 03, 2010, 05:02:47 pm
Can't right now but will at next chance.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 03, 2010, 05:35:36 pm
Ok, sounds good :)
Title: Re: Probably Pointless Program
Post by: souvik1997 on October 03, 2010, 05:38:35 pm
You can look at my program to follow an example:
http://www.cemetech.net/programs/index.php?mode=file&path=/83plus/basic/programs/Reminder.zip (http://www.cemetech.net/programs/index.php?mode=file&path=/83plus/basic/programs/Reminder.zip)

Title: Re: Probably Pointless Program
Post by: guy6020665 on October 03, 2010, 05:41:08 pm
You can look at my program to follow an example:
http://www.cemetech.net/programs/index.php?mode=file&path=/83plus/basic/programs/Reminder.zip (http://www.cemetech.net/programs/index.php?mode=file&path=/83plus/basic/programs/Reminder.zip)



Looks cool. I don't understand though, whats the difference between Ti-Basic and DCS basic?
Title: Re: Probably Pointless Program
Post by: souvik1997 on October 03, 2010, 05:44:18 pm
DCS basic is just TI-BASIC with additional libraries (Celtic3, Omnicalc, xLIB, and the DoorsCS GUI libraries used by sum(...))
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 03, 2010, 05:47:07 pm
Is there a reference so i can learn the functions?
Title: Re: Probably Pointless Program
Post by: Deep Toaster on October 03, 2010, 05:48:42 pm
Each program has its own list of functions in their zip package.

EDIT: Hmm, someone really should make a compiled list.
Title: Re: Probably Pointless Program
Post by: souvik1997 on October 03, 2010, 05:49:36 pm
Here:
http://dcs.cemetech.net/index.php?title=Developers'_SDK (http://dcs.cemetech.net/index.php?title=Developers'_SDK)

Look under the BASIC category.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 03, 2010, 05:56:06 pm
wow thats a lot more than i expected. its going to take some time to look through it all. Thanks! I might try to do some DCS programs now if i have the time.
Title: Re: Probably Pointless Program
Post by: Deep Toaster on October 03, 2010, 06:00:28 pm
Just a warning, if you run certain commands with unaccepted syntaxes, it could cause a crash.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 03, 2010, 06:02:45 pm
Isn't that true with all languages though?
Title: Re: Probably Pointless Program
Post by: Deep Toaster on October 03, 2010, 06:03:44 pm
Not BASIC.
Title: Re: Probably Pointless Program
Post by: souvik1997 on October 03, 2010, 06:06:57 pm
uh, it can happen in BASIC.
Spoiler For Spoiler:
Code: [Select]
:999 -> dim(L1
:While 1
:SortA(L1)
:End
Title: Re: Probably Pointless Program
Post by: Deep Toaster on October 03, 2010, 06:08:17 pm
Yeah, but it's a lot harder and it's not a syntax thing. In xLIB/CIII/DCS, all you have to do is put in the wrong numbers, and your calc crashes.
Title: Re: Probably Pointless Program
Post by: souvik1997 on October 03, 2010, 07:10:44 pm
But it also encourages good programming habits such as checking the syntax of the commands you are going to run
Title: Re: Probably Pointless Program
Post by: Deep Toaster on October 03, 2010, 07:48:14 pm
True. It was just a warning, btw.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 03, 2010, 08:40:53 pm
When little things cause crashes, it's annoying.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 04, 2010, 09:59:47 pm
meishe91 can you explain that
"expr(sub([bunch of characters i can't remember]->u
line? I don't understand it.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 04, 2010, 10:08:07 pm
Were the numbers the coordinates for the Line( or Horizontal commands? I don't remember what I put there and I'm to lazy to look it up :P

As for that line. You know those little lowercase letters above [7], [8], and [9] (u, v, and w)? Well I have no idea what they are called but they basically store equations, much like a string does. So say we do "5+A→u and then store a value of five to A. If you just run u then you will get an answer of ten. Make more sense?
Title: Re: Probably Pointless Program
Post by: ztrumpet on October 04, 2010, 10:08:54 pm
You know those little lowercase letters above [7], [8], and [9] (u, v, and w)? Well I have no idea what they are called
Parametric equations. :)
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 04, 2010, 10:10:55 pm
OOOHHHHH!!!!!!!! Ok I get it now. [off topic]I want a lightbulb smiley now[/off topic]
Title: Re: Probably Pointless Program
Post by: meishe91 on October 04, 2010, 10:16:14 pm
Ya, they can be pretty handy. I'm fairly sure I used it in your program when I didn't really need to but I was tired when I optimized :P
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 04, 2010, 10:18:41 pm
It doesn't matter, it's still smaller and faster than mine. now i just have to figure outwhereto add in the changes i made to my version.

No flash drive atm so i can't upload my ver yet, lost Flash drive at school but im pretty sure i know where it is.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 04, 2010, 10:21:23 pm
Couldn't you just type it? It's what I do :P
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 04, 2010, 10:29:03 pm
Eh that seems like too much work, I haven't typed in any code over like 100 bytes and even that took forever for me. I'll try to get it up tomorrow though.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 04, 2010, 10:37:57 pm
Ok, sounds good.
Title: Re: Probably Pointless Program
Post by: souvik1997 on October 04, 2010, 10:51:23 pm
You know those little lowercase letters above [7], [8], and [9] (u, v, and w)? Well I have no idea what they are called
Parametric equations. :)

It's not parametric equations. Those variables are used for sequence graphing.

HINT: Press MODE->Seq->Y=
Title: Re: Probably Pointless Program
Post by: ztrumpet on October 04, 2010, 10:54:46 pm
 * ZTrumpet feeds himself to the lobster...

Sorry, souvik is right; they are the sequence vars, not parametric vars. :)
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 05, 2010, 05:04:04 pm
Here it is.

EDIT:
Here:
http://dcs.cemetech.net/index.php?title=Developers'_SDK (http://dcs.cemetech.net/index.php?title=Developers'_SDK)

Look under the BASIC category.

Looked through this, I understand how to work the header, but everything else loses me, how do i even enable DCS libraries?
Title: Re: Probably Pointless Program
Post by: meishe91 on October 05, 2010, 06:23:06 pm
Sweet, I'll take a look at it :)

Edit:
Got yours down 223 bytes. Will upload as soon as possible.

Edit:
Here it is. Went from 914 bytes down to 691 bytes. I'm fairly sure I got it basically as optimized as it can be without changing methods or variables and such.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 06, 2010, 05:13:05 am
Ok, so I found a couple more optimizations I missed so here is the newest one :P Now down to 667 bytes. I think there was another one that I saw but didn't implement but I'm to tired to look.

I'm also going to post a program I created when I can get this freaking routine to work correctly, instead of giving me domain errors.
Title: Re: Probably Pointless Program
Post by: souvik1997 on October 06, 2010, 07:04:56 am
guy6020665: You download DoorsCS7 and run it.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 06, 2010, 09:59:51 pm
Here is my program that I created from scratch.

(http://img.removedfromgame.com/imgs/1286416602-Calendar.gif)
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 06, 2010, 11:43:34 pm
That looks quite nice. It is missing one day at the end it seems, though
Title: Re: Probably Pointless Program
Post by: meishe91 on October 06, 2010, 11:46:15 pm
What do you mean?
Title: Re: Probably Pointless Program
Post by: cooliojazz on October 07, 2010, 12:27:47 am
Hey, out of curiosity, what's the point of drawing the lines first if you're just going to hav to redraw most of them after you add the text?
Title: Re: Probably Pointless Program
Post by: meishe91 on October 07, 2010, 12:39:57 am
I don't know. Just felt like it :P I was, am, going to change it though. I just did it that way because I was testing as writing it so I was checking like where things were and such. I don't think it really matters though because it's only like four to eight bytes (depending on token values) that you save.
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 07, 2010, 02:44:12 am
What do you mean?
actually nvm I didn't look carefully enough. September seemed to have 29 days x.x
Title: Re: Probably Pointless Program
Post by: meishe91 on October 07, 2010, 03:44:23 am
Well crap. Now there are more errors arising in my code :(
Title: Re: Probably Pointless Program
Post by: meishe91 on October 08, 2010, 12:45:51 am
Fixed the issues in my code. So I'll upload the newest version. However, I didn't mean to thread jack this thread. How are things with your code, guy?
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 08, 2010, 02:41:56 pm
Well crap. Now there are more errors arising in my code :(

Ummm.... after testing further I foun that mine still doesn't yet give the correct calendar sometimes  :-[ And i thought i solved that too..... So if you're still working form my code it still doesn't give the right calendar, Sorry. I'm pretty much just going to sit here till i figure it out, but it really annoys me because i know where it's wrong, but i don't know how to fix it.

Fixed the issues in my code. So I'll upload the newest version. However, I didn't mean to thread jack this thread. How are things with your code, guy?

thread jack?
Title: Re: Probably Pointless Program
Post by: meishe91 on October 08, 2010, 03:09:05 pm
What is wrong with yours? Like what dates are wrong and such? Screenshot?

By thread jack I mean that I started to talk about the program that I had created.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 08, 2010, 03:20:43 pm
It works for some years, but it doesn't for others, Ex. october 2010 works but january 2011 is wrong

don't worry bout thread jack its related so i think it's fine
Title: Re: Probably Pointless Program
Post by: meishe91 on October 08, 2010, 05:39:32 pm
Damn it. You're right. Well that's a bug I have to fix in mine too :(
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 08, 2010, 06:05:23 pm
Sorry meishe91 for not testing it more than just the months, I really should have.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 08, 2010, 06:14:08 pm
Don't worry about it. I was just to tired and lazy to fully come up with my own routines so that's why I use part of yours. If I have time, which I should, I'll try to get a working version. By the way, what are you checking your calculator against? Like a website or what?
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 08, 2010, 08:26:07 pm
Don't worry about it. I was just to tired and lazy to fully come up with my own routines so that's why I use part of yours. If I have time, which I should, I'll try to get a working version. By the way, what are you checking your calculator against? Like a website or what?

My cell phone and my planner
Title: Re: Probably Pointless Program
Post by: meishe91 on October 08, 2010, 09:58:46 pm
Ah ok. Gotcha. Well I shall be working on this issue.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 11, 2010, 11:28:33 pm
I figured it out!!!! My current version on my calc just forgets to add in leap years if it's a january!!! Fixing when i get the chance.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 12, 2010, 02:22:11 am
But leap years shouldn't affect January, I thought.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 12, 2010, 01:58:35 pm
If it's January it "forgets" to calculate past leap years
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 12, 2010, 10:06:46 pm
Aren't leap years affecting February? Example, in 2000, 2004 and 2008 February has 29 days instead of 28.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 12, 2010, 10:18:47 pm
Oh, I see what you mean I think. So basically what your saying is that the "if month is greater than or equal to February add a leap year" thing needs to be taken out and just have the iPart( by itself?
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 13, 2010, 05:48:55 pm
Oh, I see what you mean I think. So basically what your saying is that the "if month is greater than or equal to February add a leap year" thing needs to be taken out and just have the iPart( by itself?

I just added if month is january, ipart((c-1)/4) to add all the years before and not that year
Title: Re: Probably Pointless Program
Post by: meishe91 on October 13, 2010, 08:00:45 pm
Hmm, well I don't know if all that is necessary to be honest. I just put iPart(Year/4) and it seems to work perfectly fine.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 13, 2010, 08:05:10 pm
But if it's a January of a leap year, it's affected.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 13, 2010, 09:09:13 pm
Ya I know. Which means that any month would trigger that. So you don't need the conditional on it.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 13, 2010, 09:10:49 pm
What i mean is that if don't have it, i believe that january would start 1 day late.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 13, 2010, 09:35:49 pm
Well mine seems to work ??? I don't know though. I don't know if you're modifying your code or the optimized one I gave, I shall test more though.

Edit:
Nevermind, mine doesn't work correctly all the time. I'd have to see your code now to see how to modify mine.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 13, 2010, 09:42:53 pm
I'm modifying mine. I don't like messing with others codes.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 13, 2010, 10:03:20 pm
Could you post your code or something?
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 13, 2010, 10:06:00 pm
Will do it tommorrow, have to do homework (Worth 75% of my quarter average)
Title: Re: Probably Pointless Program
Post by: meishe91 on October 13, 2010, 10:10:14 pm
Ah ok. Ya, do that instead :P
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 14, 2010, 07:51:09 pm
Here it is, planning on optimizing next
Title: Re: Probably Pointless Program
Post by: meishe91 on October 16, 2010, 01:24:59 am
Ok, well I'll look at it soon. Thanks.

Edit:
Where is my calendar program implementing what you did.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 22, 2010, 11:30:40 pm
Well I've shaved 100 bytes off of my version and managed to get rid of some If statements, planning on making a back-up and running it through Builderboy's auto-optimizer.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 23, 2010, 01:06:58 am
If you want to post it I can probably optimize it again, if you want me to that is.
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 23, 2010, 01:21:46 pm
Nice optimization. Hopefully more can be found. :D
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 28, 2010, 02:10:10 pm
Shaved another 80 bytes its now down to about 750 and runs faster. Will post when i can but grounded at the moment so i'm going to have to find a way around it.

Edit: 300th post! super member now!
Title: Re: Probably Pointless Program
Post by: meishe91 on October 28, 2010, 06:17:23 pm
Could also type the code out by hand :P
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 28, 2010, 09:10:59 pm
Sorry to hear. X.x

Meishe that could take a while so if he has extremly limited computer time he might not be able to do so. :P
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 28, 2010, 09:23:45 pm
What it is, is that i can't really get on my home computer as often anymore because i made a C on my report card. Grounded, ugh.... but i will try to get it on my flash drive and upload at school.

EDIT: the computer at home with all my calculator stuff doesn't have internet, it's too old XD.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 29, 2010, 12:39:57 am
Sorry to hear. X.x

Meishe that could take a while so if he has extremly limited computer time he might not be able to do so. :P

Do it in steps :P Get some typed, save, stop, next time do the same thing until you're finished :P

But that sucks. Hopefully you can get it up soon, I'm curious what you've done with it.
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 29, 2010, 03:29:49 am
Still, that can take a while to type and it can be hard to remember where you left off, not to mention you can easily do mistake. By the time he's done, he would be ungrounded, so it's totally pointless, me thinks.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 29, 2010, 08:56:08 am
Don't know about ungrounded, will probably be till christmas
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 29, 2010, 06:53:19 pm
That sucks, does it means no more progress/internet access at home until then? :/

I hope it won't last as long as Eeems last year X.x
Title: Re: Probably Pointless Program
Post by: meishe91 on October 29, 2010, 06:58:46 pm
DJ, I was just kidding about the typing it out by hand. That's why I was using ":P" to help not be so serious. I know I'm one of few people that does that and don't expect people to do it unless they really want to. I was only suggesting it because people seem to forget about it. But it was only a joke. Sorry to upset you, it seemed, by that.

And I'm sorry about the grounding until probably Christmas :( Is that more just because that's when you'll get your next report card?
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 29, 2010, 09:08:29 pm
DJ, I was just kidding about the typing it out by hand. That's why I was using ":P" to help not be so serious. I know I'm one of few people that does that and don't expect people to do it unless they really want to. I was only suggesting it because people seem to forget about it. But it was only a joke. Sorry to upset you, it seemed, by that.

And I'm sorry about the grounding until probably Christmas :( Is that more just because that's when you'll get your next report card?
Ah ok I see, it didn't really upset me but it looked like you were insisting. I personally wouldn't type code by hand. I know how long it is after I typed 1/3 of lost ROL1 8xp programs by hand on my calc back in 2003 that I had printed on paper. X.x. And even Illusiat 81 was long to type. I think it is worse from calc to paper by hand than from paper to calc, though.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 29, 2010, 09:14:51 pm
Ah ok, sorry. No, I wasn't. I was simply joking about it since I know it does take time depending on size and just reminding there is that option if he wanted to do it. I just do it because it is typing practice plus the syntax matches completely while SourceCoder isn't quite the same syntax and can be inaccurate sometimes. But ya, that sucks when you lose stuff you've written/typed and then can't recover it or find it :( Sorry to hear that you've lost stuff before.
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 29, 2010, 09:49:06 pm
And I'm sorry about the grounding until probably Christmas :( Is that more just because that's when you'll get your next report card?

Yup... sneaking on right now.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 29, 2010, 09:56:11 pm
That sucks, does your school district not have a way to check grades throughout the quarter?
Title: Re: Probably Pointless Program
Post by: DJ Omnimaga on October 30, 2010, 12:07:11 am
Ah ok, sorry. No, I wasn't. I was simply joking about it since I know it does take time depending on size and just reminding there is that option if he wanted to do it. I just do it because it is typing practice plus the syntax matches completely while SourceCoder isn't quite the same syntax and can be inaccurate sometimes. But ya, that sucks when you lose stuff you've written/typed and then can't recover it or find it :( Sorry to hear that you've lost stuff before.
Yeah, fortunately for ROL1 I had a printed copy, but typing 22 KB of code on the calc (then debugging typos) sucked. X.x
Title: Re: Probably Pointless Program
Post by: guy6020665 on October 30, 2010, 05:07:23 pm
That sucks, does your school district not have a way to check grades throughout the quarter?
yes they do but my parents don't accept it unless its on the report card.
Title: Re: Probably Pointless Program
Post by: meishe91 on October 30, 2010, 05:40:25 pm
That sucks, does your school district not have a way to check grades throughout the quarter?
yes they do but my parents don't accept it unless its on the report card.

Well that's a bit lame :P I'm sorry to hear that. Well I hope it doesn't end up being as bad as you think it will be.
Title: Re: Probably Pointless Program
Post by: meishe91 on November 03, 2010, 11:04:16 pm
Any new optimizations? What's the current size?
Title: Re: Probably Pointless Program
Post by: guy6020665 on November 04, 2010, 11:43:30 am
Here it is
Title: Re: Probably Pointless Program
Post by: meishe91 on November 04, 2010, 05:18:01 pm
Sweet, shall check it out.

Looking cool. Would you like me to find more and optimize or anything?
Title: Re: Probably Pointless Program
Post by: guy6020665 on November 08, 2010, 02:13:11 pm
If you feel like it please do. I think I'm done with it now though, not exactly all that practical.
Title: Re: Probably Pointless Program
Post by: meishe91 on November 08, 2010, 05:23:44 pm
Ok, I'll take a look at what you came up with and do some more where I can :)