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

Pages: [1] 2
1
News / Re: Eee Zor Today
« on: October 26, 2010, 02:56:45 pm »
I'm glad you're recording it.  4:00 MST happens to be one of the only times today that I'm not able to watch. :P
Anyway, sounds neat!  I'm looking forward to watching the recording.

2
Art / Re: Image 50*50 : Axe Parser Tutorial
« on: October 16, 2010, 09:08:00 pm »
Runer112, I believe kindermoumoute intends to make an online tutorial.  When I heard the resolution was to be 50x50, I assumed that the tutorial was on-calc.
However with what was just said and this quote:
Quote
You can color images, this is not a problem.
I see this is probably not the case.

Anyway, nice image runer112.  Maybe as a community we can make a reader for chapter books like this?  As long as we've come this far with black and white, I figure we might as well! ;D  This may be a discussion for another thread.

3
Computer Programming / Re: A few C++ questions
« on: October 15, 2010, 02:11:14 am »
Pointers can be confusing at first, but once you use them a few times, you'll see they can be really useful.  In C++, the need to use pointers is not as great as it is in C thanks to classes.

Okay, I see.  #include isn't used to include libraries.  It is used to include header files.  For simplicity's sake, let's just say header files contain function prototypes. These prototypes are needed by the compiler to produce the object file.  All the compiler does is make sure you're passing the correct types of arguments and using the return value appropriately.  The linker is responsible for connecting these references to the actual functions.

So, simply put: you cannot include libraries at all.  You have to include the relevant header files and link the library.

4
Art / Re: Image 50*50 : Axe Parser Tutorial
« on: October 14, 2010, 04:50:26 pm »
matthias1992, that looks good. :)  What's really scary is that I was thinking about using blocks with letters on them for this title too!  :o
That looks nice :D. I wonder if he wants everything to look like the first posted image, though?
That's what I was sort of thinking too.  If that's the case, anyone's free to use/modify/improve the template I made for this title.

5
Art / Re: Image 50*50 : Axe Parser Tutorial
« on: October 14, 2010, 12:11:03 am »
Okay, thanks DJ Omnimaga! :) 

6
Art / Re: Image 50*50 : Axe Parser Tutorial
« on: October 13, 2010, 11:58:03 pm »
Quote from: kindermoumoute
So I consider that the image "conditions" meets the criteria. It remains :
Loops
My first program
Are those the titles you want?  Correct language and everything? ;)

7
Computer Programming / Re: A few C++ questions
« on: October 13, 2010, 11:55:49 pm »
I'm not sure I completely understand your first question, but if I do the answer will vary depending on which linker you're using.  If you're compiling and linking in one step with g++, it'll look something like:
g++ -o progname progname.cpp -lallegro
The form for that last argument is -lNAME_OF_LIBRARY.

Pointers store the address of a variable, structure, etc. The most straightforward usage of them is to give functions access to large amounts of data without the tremendous (in some cases) overhead of actually passing all of that data.

8
Art / Re: Image 50*50 : Axe Parser Tutorial
« on: October 12, 2010, 05:15:25 pm »
Oops, sorry! :-[
I didn't even think about that!  In fact, I had to redesign the logo to cram "conditionals" in there.  "Conditions" would've made my job easier...
Anyway, here's a fixed version.

9
Art / Re: Image 50*50 : Axe Parser Tutorial
« on: October 12, 2010, 03:48:17 pm »
An on-calculator tutorial?  That'd be really cool! ;D  Too bad I can't read French...  Here's a little something I just made.  Is this sort of what you're looking for?  I tried to keep it pretty minimalistic.



10
General Calculator Help / Re: Have calc? Will program! [HCWP]
« on: October 09, 2010, 02:35:44 pm »
Thanks for the statistics! :)  It's really interesting to see how quickly and dramatically everything has changed.  I think Revsoft and TI-Freakware were the big names when I first started serious calculator programming.  At least they had the most content that I was interested in.  And everywhere I went seemed to have links to MaxCoderz.  Looking at these stats, it's insane how rapidly that site declined!  It is hard to comprehend how or why things turned out as they did, but I'm glad they did. :)

11
News / Re: TI-84+SE discontinued?
« on: October 09, 2010, 01:03:51 am »
I really don't see the SE, or the Z80 line for that matter, being discontinued anytime soon.  On many tests they are the only graphing calculators allowed.  In many classes they're required due to the large library of educational software and programs written for them.  The reason TI can sell them at the price they do is because of this monopoly.

12
Art / Re: Calculator Large Sprite Request
« on: October 09, 2010, 12:52:59 am »
Blast!  Too slow! ;D
Oh well, here's my rough attempt anyway.  I keep seeing problems, but it's getting late so for now I'm calling it done! :)  Anyway, I'll fix it if anyone's interested...


Unfortunately, I realized that I was working with a 203 pixel height too late into the process.  But if you can scroll 180 rows, you can scroll 203, and it's only 276 more bytes.  Now if it was wider than 96 pixels THAT would be a problem! ;D
Unless you're really tight on memory... In which case the height still is a problem.

13
General Calculator Help / Re: Have calc? Will program! [HCWP]
« on: October 08, 2010, 04:29:06 pm »
Yep, I'm still here. ;D  The consolidation is definitely nice.  It seemed like communities were always randomly disappearing back in those days.  Now the (two) communities are both stable and active! ;)
 
Anyway, hopefully I'll be able to catch the next one of these shows.

14
General Calculator Help / Re: Have calc? Will program! [HCWP]
« on: October 08, 2010, 01:12:54 am »
This is a really neat idea! :D It's quite amazing to me how active the calculator community is!

15
Computer Programming / Re: x86 Assembly help needed
« on: August 27, 2010, 05:20:18 pm »
As near as I can tell, this is DOS assembly.  INT 0x21 is a software interrupt.  You won't be able to use it if the operating system isn't loaded.  And there's no way Windows is going to allow a real mode application to delete a protected file.
Since your goal seems to be to just delete the file, I have to ask...  If you can install a bootloader on your school computers, then you are also most likely capable of loading different operating system as well.  Right?  It'd be a lot easier to delete the file from there.  That said, I find it a little odd that the school's computers would allow either course of action (the installation of a bootloader or booting into a different operating system).  Are you sure this is the case?

Pages: [1] 2