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

Pages: 1 ... 21 22 [23] 24 25 ... 101
331
Casio Calculators / Re: Should I get a Casio FX-9750GIIwe for $15?
« on: March 24, 2014, 03:30:18 pm »
Welp, it seems that it's visibly the same. Which country do you live in?

332
Casio Calculators / Re: [C] Unknown project
« on: March 24, 2014, 02:21:30 pm »
I forgot the Slims. Well, almost no one have ay of these in France, so I won't be sure if that'll work. I'll give some demos once I know how to deal with SH4 and once my libs will be updated.

Siapran wants to work on it too.

333
Casio Calculators / Re: [C] Unknown project
« on: March 24, 2014, 02:17:56 pm »
Basically, except the fact i should update my libs for cross-compiling with SH4 calcs (which I don't have any), the program should run on every monochrome model that support addins.

And don't even ask me a Prizm port (for the moment). THere is already a Mode 7 prototype on it.

334
Casio Calculators / Re: [C] Unknown project
« on: March 24, 2014, 02:13:15 pm »
What Casio calc is it for?
Sorry, but I didn't understand well your question. I'll take as "What Casio calc model is it?"
So, it's a FX-9750GII modded to a 9860 (it's the second to last line of monochrome calcs, the last with a SH3).

I'd like to improve the speed by making LUT everywhere, but I don't see a noticable change. (The cosine/sine are already LUTed, they belong to Kristaba's Fixed Point Library)

335
Casio Calculators / Re: Should I get a Casio FX-9750GIIwe for $15?
« on: March 24, 2014, 02:12:38 pm »
All the FXes share the same resolution (except the Graph 25 which is an aberration. How can you see a programmable calc without GetKey? Oo). Give it a shot, and see if you can connect it to fxRemote to dump a ROM on it (a Graph 95 ROM is the best choose, because it supports all of the things that the other calcs does but support even displaying roots in Math mode.)

336
Casio Calculators / Re: Should I get a Casio FX-9750GIIwe for $15?
« on: March 24, 2014, 02:03:22 pm »
A FX-9750GII at 15€ is totally worth the price if USB (cheap FX-9680 powa), but a Giiwe, don't know what's that.
Anyway, buy it.

337
Casio Calculators / Re: [C] Unknown project
« on: March 24, 2014, 06:15:48 am »
Wow that looks fast! Also since that calc is 58 MHz or so, this gives you much more freedom when this will be optimized, so you could experiment with small pre-rendered sprite scaling such as trees or pipes like in Mario Kart. :D
No, it's 22 MHz, we can get to "~55" only by overclocking! :p, but yeah, I'll test adding sprites to see if that doesn't slow down the game.

338
TI Z80 / Re: Bad Apple SE
« on: March 23, 2014, 03:41:09 pm »
Yeah, and then you get ear candies!


Edit : Well, I'm not into Touhou, but I like how good the tune sounds! O.O

339
Gaming Discussion / Re: Your best video game pickups.
« on: March 23, 2014, 03:29:53 pm »
Why don't we have things like this in France? D:
OMG an Amiga. have fun with that!

340
Casio Calculators / [C w/ Mode 7] Unknown project
« on: March 23, 2014, 12:52:48 pm »
Hi. Here is something I did sometimes and that I optimized like crazy today, after having a drunk genius moment. (Actually runs smoother on calc. I need a fps count, but I estimate the framerate is over 30fps.)

I have some things planned with that.


Controls
- Replay keys : Move/Turn the camera
- Shift/Alpha : Move Up/Down the camera
- Exit : Exit


Changelog
- Proof_of_concept 3 :  Here is a live demo of the progress I and Siapran did. He helped me optimizing the tilemap reading routine to speed up almost as before.

341
Casio Calculators / Re: FiXos, a UNIX-like kernel for fx9860
« on: March 23, 2014, 12:51:00 pm »
Same for me.

342
Art / Re: Aura maps by Dysfunction colorized
« on: March 19, 2014, 03:41:06 pm »
My turn, with Dawnbringer 32. I cheated a little and added some colors on tiles above 2 colors per object.

343
TI Z80 / Re: Maybe that will become a demo
« on: March 19, 2014, 03:05:57 pm »
I love it! I love the old film effect!

344
Web Programming and Design / Re: Best way to store blog posts
« on: March 18, 2014, 03:31:33 am »
As it is SQL you don't need to join, it doesn't care about line breaks and weird tabs ;)
Yeah, I know for tabs, I made it readable after it worked.

345
Web Programming and Design / Re: Best way to store blog posts
« on: March 14, 2014, 09:10:12 am »
If you want to help me more, I woul'd be glad. i'm far from having finished it! ^^


EDIT : With your class, Joins doens't work at all...
Code: [Select]
res = $sql->query("SELECT `B.bi, `B.bn`, `B.bs` ".
   "FROM `Blah B` LEFT JOIN `Ah_Blah` A ON A.bi = B.bi ".
        "WHERE A.ai = `%s`;", [$_SESSION['ui']]);
it only works without `quoting`


EDIT : Nailed it
Code: [Select]
res = $sql->query("SELECT `B`.`bi`, `B`.`bn`, `B`.`bs` ".
   "FROM `Blah` B LEFT JOIN `Ah_Blah` A ON `A`.`bi` = `B`.`bi` ".
        "WHERE `A`.`ai` = %d;", [$_SESSION['ui']]);

Pages: 1 ... 21 22 [23] 24 25 ... 101