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

Pages: 1 ... 46 47 [48] 49 50 ... 84
706
TI-BASIC / Re: So... how 'bout that 68k BASIC programming?
« on: February 06, 2010, 09:29:55 am »
Doing things the tricky way can be fun.
And TI-BASIC in z80 line have some many ways to do things, that makes it kind an interesting language to explore.

TI-BASIC if made well can be great and deserve more respect than some assembly works because of the work on optimization and exploring new techniques in the language.
I think the problems in the past were people couldn't make good TI-BASIC as it is done today. If TI-BASIC at that time had some of the best works that today we have, TI-BASIC programmer wouldn't suffer much.

Hopefully some people continued to develop and support TI-BASIC to arrive at this stage. ASM programmers also benefited TI-BASIC a lot with libs like xlib.

707
Gaming Discussion / Re: iCCup - For those who can't use Battle.Net
« on: February 06, 2010, 08:32:35 am »
I can use any of the 3 races. But the Zerg is the race I don't know well the technology tree.

I have few experience in playing SC but I try to play fast.

708
News / Re: Board and front page layout updates
« on: February 06, 2010, 08:23:11 am »
I would enjoy a anime subforum and participate.

I have seen only a few but I don't know what to see next. Sometimes a friend recommend some animes and I watch them in holidays and during summer. ;D

709
General Calculator Help / Re: Kirk Meyer's Graph3--Easter Eggs
« on: February 06, 2010, 08:20:56 am »
Why not start a thread containing all known calc easter eggs?
*Silver Shadow goes off to do it.*
Cool, I think it is good idea. Easter eggs, side maps/quests and cheats for games.
Also make the topic divided into 2/3 parts:
- Easter Eggs
- Funny Bugs (Omnicalc has some I think)
- Stuff for games: Cheats, abusive tips, bugs, Extras and Side quests

DJ Omnimaga games' have lots of extras. You should add spoilers when comes to games cheats and extras.

Here is one easter egg:
in MirageOS activate the option "Save the Whales" and create these three folders: "Save", "the" and "Whales".
Now go to Catalog ( [2nd]+[0] ) and see.

710
TI-BASIC / Re: How to display the % sign in basic [homescreen]
« on: February 06, 2010, 03:37:45 am »
That brings new therms: Pure Pure TI-Basic and TI-Pure Basic.
You are getting a little picky about Basic purity. >_>

Besides using some ASM to get the % char, I think that is the best alternative to use.

711
News / Re: Slight board and front page layout updates
« on: February 06, 2010, 03:31:45 am »
Glad you put the script working.

The web development sub-forum should be next, unless there is something else. :P

712
Web Programming and Design / Re: Need PHP help (language is being picky)
« on: February 05, 2010, 07:04:42 pm »
That said, does anyone know how I would actually display a value that is combined with another? I mean like in TI-BASIC you would do:

Disp "Posts since 05:",A+56401,"Topics:",B+3126
echo command in PHP has the same behaviours as the Disp TI-BASIC command when comes to commas.
Example:
Ti-BASIC:
Disp "One string","another",A,B
PHP:
echo "One string","another",$A,$B

However, the other day, I searched during two hours through Google and couldn't even find any relevant result. Is that even possible at all in PHP?

In my case, the ' .$modSettings['totalMessages']. ' part of my code would have been like ' .$modSettings['totalMessages'] + 56401. ', but after trial and error, no combinations would work. Seems like PHP doesn't allow two added values to be displayed together.

What I want to do is display the current postcount PLUS the old board post count (this one is a fixed number.

Basically in pseudo code it would be:

Quote
Since Aug 25, 08, 272 members joined Omnimaga.

Since May 12, 05, CurrentBoardPostCount+56401 posts and CurrentBoardTopics+3126 topics were created.
(More Forum Statistics)

Downloads Statistics

Is it even possible to do such thing? Since my researches failed could anyone direct me how?
Yes, it is possible.

The pseudo code to PHP code: (I tried to predicted where to get the values from the code you gave)
Code: [Select]
echo 'Since Aug 25, 08, ', (isset($modSettings['memberCount']) ? $modSettings['memberCount'] :  modSettings['totalMembers']), ' members joined Omnimaga.';
echo 'Since May 12, 05, ', $modSettings['totalMessages']+56401 ,' posts and ', $modSettings['totalTopics']+3126, ' topics were created.';
// the rest of the page

713
Web Programming and Design / Re: Need PHP help (language is being picky)
« on: February 05, 2010, 06:31:23 pm »
I analysed and only picked one small issue:
The problem seems to be missing a full point (to concatenate strings) or a comma (to pass multiple strings to echo), that is it, in this line before the isset(:

Code: [Select]
           echo 'Since Aug 25, 08, <b>' . isset($modSettings['memberCount']) ?

$modSettings['memberCount'] : $modSettings['totalMembers'] , ' members</b> joined Omnimaga.
<br /><br />Since May 12, 05, <b>' .$modSettings['totalMessages']. ' posts</b> and
<b>' .$modSettings['totalTopics']. ' topics</b> were created.
<br />(<a href="http://www.omnimaga.org/index.php?action=stats">More Forum Statistics</a>)
<br /><br /><a href="http://www.omnimaga.org/index.php?action=downloads;sa=stats">Downloads Statistics</a>
';

714
TI Z80 / Re: Factory Theta
« on: February 05, 2010, 05:43:00 pm »
ehehehe I knew it could be done.
If weren't the loading times, it would pass as an ASM game. ;D

715
TI Z80 / Re: Image Cropping/Moving program
« on: February 05, 2010, 05:26:20 pm »
I was thinking in compressing by making numbers like:
Compress 8 pixels with the fake binary numbers 1, 10, 11, 100... to 11111111.

And what about compress 24 bits into one number?

716
ROM Hacking and Console Homebrew / Re: F-Zero X Hyper Speed Circuits
« on: February 05, 2010, 05:21:34 pm »
Fun videos to watch. They are astonishing.  ;)

717
TI Z80 / Re: Factory Theta
« on: February 05, 2010, 05:19:31 pm »
Nice one.

A xlib'ed version could provide some nice graphics with the feel of ASM, if well coded I think.
Just wondering that PuzzlePack can be ported to TI-BASIC with the same quality.

718
General Calculator Help / Re: PRGM button
« on: February 05, 2010, 05:14:04 pm »
It is rare but when starts to happen, it can happen a lot, too.

719
TI Z80 / Re: ASM Dev set
« on: February 05, 2010, 05:09:25 pm »
Too bad it can't be run from Firefox. :(

I noticed the executable program. I suspected it was a batch file converted because I have seen some batch to exe converters but never tried to use.

720
General Calculator Help / Re: Kirk Meyer's Graph3--Easter Eggs
« on: February 05, 2010, 05:03:59 pm »
I didn't know the Graph^3D easter eggs.

How do you get it?

Pages: 1 ... 46 47 [48] 49 50 ... 84