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.


Topics - Munchor

Pages: 1 ... 16 17 [18] 19 20
256
Computer Programming / SourceForge VS Google Code
« on: November 27, 2010, 10:15:55 am »
Well, when Sir made a KnightOS website using SourceForge's host, I though.. Hum... Maybe I could move from Google Code (www.code.google.com/p/forumulum) to SourceForge.

When I did, it all seems very confusing, I think SourceForge's admnistrator interface is quite bad and confusing. Do you agree?

Do you know any free one similar to these two that you recommend?

Thanks much

257
Music Showcase / 'The Letter D' Album
« on: November 26, 2010, 07:13:05 pm »
Hey guys, for fun, I'm gonna make an album of songs, my first album ;'(

Well, it will be made of 10songs all started with letter D.

This is a preview of my comical/annoying/stupid/enjoyable songs, this is, my first song, made using GuitarPro5.

Good luck not dying while hearing it!

258
TI Z80 / Common Ion Table
« on: November 26, 2010, 03:21:40 pm »
I've created an Ion Table for School Chemistry instead of using another one, made by Andre Aparicio.


Anyways, I haven't added negative ions yet, only 2 :P

It was made in TI-Basic, using mainly the Menu( function for the interface and Text( to display ions.
If you can, translate it to your language, since I allow it, in fact, I ask you to do it, and then just change the About (Sobre) to "Programmed by: David G./Translated by:yourname".

@aeTIos I said you could make your own ducht version of it when I finished it. You still can, but I decided to use TI Basic instead of Axe, but the code is very simple, you can still use it.

Original Code:

Code: [Select]
:Lbl 0
:ClrHome
:ClrDraw
:AxesOff
:Menu(" TABELA DE IOES  ","IOES POSITIVOS",1,"IOES NEGATIVOS",2,"SOBRE",3,"SAIR",4
:Lbl 3
:ClrDraw
:ClrHome
:Output(1,1,"PROGRAMADO POR:
:Output(2,1,"DAVID G.
:Pause
:Goto 0
:Lbl 4
:ClrDraw
:ClrHome
:AxesOn
:Stop
:Goto 0
:Lbl 1
:Menu(" IOES POSITIVOS ","PAGINA 1",5,"PAGINA 2",6,"PAGINA 3",7,"PAGINA 4",8,"MENU PRINCIPAL",9
:Lbl 5
:ClrDraw
:ClrHome
:Text(0,0,"Aluminio      Al(3+)
:Text(7,0,"Amonio        NH4(+)
:Text(14,0,"Bario        Ba(2+)
:Text(21,0,"Calci        Ca(2+)
:Text(28,0,"Chumbo       Pb(2+)
:Text(35,0,"Cobalto(II)  Co(2+)
:Text(42,0,"Cobalto(III) Co(3+)
:Text(49,0,"Cobre (I)    Cu(+)
:Text(56,0,"Cobre(II)    Cu(2+)
:Pause
:Goto 1
:Lbl 6
:ClrDraw
:ClrHome
:Text(0,0,"Cromio(III)   Cr(3+)
:Text(7,0,"Estanho(II)   Sn(2+)
:Text(14,0,"Estanho(IV)  Sn(4+)
:Text(21,0,"Estroncio    Sr(2+)
:Text(28,0,"Ferro        Fe(2+)
:Text(35,0,"Ferro        Fe(3+)
:Text(42,0,"Hidrogenio   H(+)
:Text(49,0,"Hidronio     H3O(+)
:Text(56,0,"Litio        Li(+)
:Pause
:Goto 1
:Lbl 7
:ClrDraw
:ClrHome
:Text(0,0,"Magnesio      Mg(2+)
:Text(7,0,"Manganesio(II)  Mn(2+)
:Text(14,0,"Manganesio(III)  Mn(3+)
:Text(21,0,"Mercurio(II)  Hg(2+)
:Text(28,0,"Niquel(II)   Ni(2+)
:Text(35,0,"Niquel(III)  Ni(3+)
:Text(42,0,"Ouro(I)      Au(+)
:Text(49,0,"Ouro(III)    Au(3+)
:Text(56,0,"Platina(II)   Pt(2+)
:Pause
:Goto 1
:Lbl 8
:ClrDraw
:ClrHome
:Text(0,0,"Potassio      K(+)
:Text(7,0,"Prata         Ag(+)
:Text(14,0,"Sodio        Na(+)
:Text(21,0,"Zinco        Zn(2+)
:Pause
:Goto 1
:Lbl 9
:Goto 0
:Lbl 2
:Menu(" IOES NEGATIVOS ","PAGINA 1",10,"PAGINA 2",11,"PAGINA 3",12,"PAGINA 4",13,"MENU PRINCIPAL",14
:Lbl 14
:Goto 0
:Lbl 10
:ClrDraw
:ClrHome
:Text(0,0,"Acetato       CH3CO2({-})
:Text(7,0,"Brometo       Br({-})
:Pause
:Goto 2
:Lbl 11
:ClrDraw
:ClrHome
:Text(0,0,"PAGINA 2
:Pause
:Goto 2
:Lbl 12
:ClrDraw
:ClrHome
:Text(0,0,"PAGINA 3
:Pause
:Goto 2
:Lbl 13
:ClrDraw
:ClrHome
:Text(0,0,"PAGINA 4
:Pause
:Goto 2
:Lbl 14
:Goto 2

SourceCoder optimized version (not THAT trustful for me)
Spoiler For Spoiler:
Optimized from 1623 bytes to 1580 bytes, saving 43 bytes or 2.7% of the original size.
Code: [Select]
:Lbl 0
:ClrHome
:ClrDraw
:AxesOff
:Menu(" TABELA DE IOES  ","IOES POSITIVOS",1,"IOES NEGATIVOS",2,"SOBRE",3,"SAIR",4
:Lbl 3
:ClrDraw
:ClrHome
:Output(1,1,"PROGRAMADO POR:
:Output(2,1,"DAVID G.
:Pause
:Goto 0
:Lbl 4
:ClrDraw
:ClrHome
:AxesOn
:Return
:Goto 0
:Lbl 1
:Menu(" IOES POSITIVOS ","PAGINA 1",5,"PAGINA 2",6,"PAGINA 3",7,"PAGINA 4",8,"MENU PRINCIPAL",9
:Lbl 5
:ClrDraw
:ClrHome
:Text(0,0,"Aluminio      Al(3+
:Text(7,0,"Amonio        NH4(+
:Text(14,0,"Bario        Ba(2+
:Text(21,0,"Calci        Ca(2+
:Text(28,0,"Chumbo       Pb(2+
:Text(35,0,"Cobalto(II)  Co(2+
:Text(42,0,"Cobalto(III) Co(3+
:Text(49,0,"Cobre (I)    Cu(+
:Text(56,0,"Cobre(II)    Cu(2+
:Pause
:Goto 1
:Lbl 6
:ClrDraw
:ClrHome
:Text(0,0,"Cromio(III)   Cr(3+
:Text(7,0,"Estanho(II)   Sn(2+
:Text(14,0,"Estanho(IV)  Sn(4+
:Text(21,0,"Estroncio    Sr(2+
:Text(28,0,"Ferro        Fe(2+
:Text(35,0,"Ferro        Fe(3+
:Text(42,0,"Hidrogenio   H(+
:Text(49,0,"Hidronio     H3O(+
:Text(56,0,"Litio        Li(+
:Pause
:Goto 1
:Lbl 7
:ClrDraw
:ClrHome
:Text(0,0,"Magnesio      Mg(2+
:Text(7,0,"Manganesio(II)  Mn(2+
:Text(14,0,"Manganesio(III)  Mn(3+
:Text(21,0,"Mercurio(II)  Hg(2+
:Text(28,0,"Niquel(II)   Ni(2+
:Text(35,0,"Niquel(III)  Ni(3+
:Text(42,0,"Ouro(I)      Au(+
:Text(49,0,"Ouro(III)    Au(3+
:Text(56,0,"Platina(II)   Pt(2+
:Pause
:Goto 1
:Lbl 8
:ClrDraw
:ClrHome
:Text(0,0,"Potassio      K(+
:Text(7,0,"Prata         Ag(+
:Text(14,0,"Sodio        Na(+
:Text(21,0,"Zinco        Zn(2+
:Pause
:Goto 1
:Lbl 9
:Goto 0
:Lbl 2
:Menu(" IOES NEGATIVOS ","PAGINA 1",10,"PAGINA 2",11,"PAGINA 3",12,"PAGINA 4",13,"MENU PRINCIPAL",14
:Lbl 14
:Goto 0
:Lbl 10
:ClrDraw
:ClrHome
:Text(0,0,"Acetato       CH3CO2({-}
:Text(7,0,"Brometo       Br({-}
:Pause
:Goto 2
:Lbl 11
:ClrDraw
:ClrHome
:Text(0,0,"PAGINA 2
:Pause
:Goto 2
:Lbl 12
:ClrDraw
:ClrHome
:Text(0,0,"PAGINA 3
:Pause
:Goto 2
:Lbl 13
:ClrDraw
:ClrHome
:Text(0,0,"PAGINA 4
:Pause
:Goto 2
:Lbl 14
:Goto 2

Screenie and Download of this Half Version attached.

259
Axe / 16*16 Images
« on: November 21, 2010, 03:13:43 pm »
Hey, I was trying to implement an image in my programs, a 16*16 image, this is the code:

Code: [Select]
00000000000000000000000003F80404080410027FFF8001FFFF781E4812300C
So I would have:

Code: [Select]
Lbl 1
[00000000000000000000000003F80404080410027FFF8001FFFF781E4812300C->Pic1
Pt-Change(0,0,Pic1
DispGraph
Repeat getKey->Z
If Z>=1
Goto1

However, nothing appears, is it a temporary problem or it works for you?

I gotta try it in WabbitEmu but I can't now :S


260
Site Feedback and Questions / 'Oscars'-like Awards
« on: November 21, 2010, 03:09:32 pm »
Hey everyone, I'd like to tell you about my idea:

I know about POTY, but I think that we could have something bigger with some more awards.

I would suggeste:

POTY;
Best Game/Program Graphics;
Most helpful programmer in the forum;
Revelation Programmer of the year.


Okay, these are just 4, we could have more but I can only remember this ones.

I think it would be sweet to implement them this year :)

About the judge... Hum... Admnistrators?

Well, please tell me what'ya think!

261
TI-BASIC / [CHALLENGE]Logic and Optimization
« on: November 20, 2010, 06:20:03 am »
Hey, I have a small tricky challenge, make a program that allows the user to input the number of Eyes and Noses they have.

The program shall return

"NRML" to 2 eyes 1 nose
"ALMST NRML" to 1 nose 3 eyes or 2 eyes 3 noses (so, only one of them correct) AND
"WEIRD" to none of the correct

I have done it, in a program that takes 80bytes.

You have to make it 80 bytes too or even less!


GOOD LUCK! First successful reply wins, if the winner wants a prize I can make a special image for him :)

262
Art / My Website Calculator Page Icon
« on: November 18, 2010, 04:53:08 pm »
Hey, anyone that is good at Icon Design, then I may need you ;)


I need a 16*16 icon with a small calculator or something related to calculators, but a calculator would be better :D

http://images.google.com/images?q=calculator&hl=en&gbv=2&biw=1366&bih=643&tbs=isch:1,isz:ex,iszw:16,iszh:16&source=lnt

I could use any of these, but I'd prefer one that was specially made for my wesbite :)

Thanks

263
Web Programming and Design / My Website - My calculator Projects
« on: November 18, 2010, 04:42:35 pm »
Today, I decided to add my calculator projects to my website:

www.davidgom.co.cc

www.davidgom.co.cc/calculator.html

All of my projects are there.

Later this month, I hope to finish my ion table and work more on my txt to 8xp converter.


Just to tell you :)

Can anyone make me an icon for that page, maybe a small calc?
Thanks

264
Axe / Protected Programs
« on: November 18, 2010, 04:05:07 pm »
Hey there,

I have an important question here:

I have the file AXE3DRAC, which starts with:

Code: [Select]
.RACER3D

And when I compile it, I get the file RACER3D.

Now, I open TI-Connect, and I'd like the file RACER3D to upload to my website.
However, since it is a protected program (both archived and unarchived), it won't let me open it.

Is there a way to do it, since Sniper101 was like that and a few more games too :s

Thanks!

265
Axe / Ion Table
« on: November 18, 2010, 01:33:51 pm »
Hey everyone, I'm working in a project for my class and friends, who which a program to display all the ions we need, so it's a chemistry program.

The code is in portuguese, but that's not very relevant for you, it's just ion names.

I got to a doubt now:

Code: [Select]
:[080808082A1C0800]->Pic1
:Output(0,0,"Ioes Positivos
:Text(0,15,"Aluminio
:Text(0,22,"Amonio
:Text(0,29,"Bario
:Text(0,36,"Calcio
:Text(0,43,"Chumbo
:Text(0,50,"Cobalto (II)
:Text(0,57,"Cobalto (III)
:Pt-Change(40,45,Pic1ยด
:DispGraph


This will display only the image, a down-arrow and not the text.
Can both be displayed at the same time?

Thanks in advance,

David

266
TI Z80 / 8xp to txt Converter
« on: November 12, 2010, 04:13:49 pm »
Hey,

So, I'm trying to make a 8xp to txt, just like Tokens or SourceCoder, to learn, though, not to use it, to learn more :D


So, i'm gonna need tokens:

http://omnimaga.pastebin.com/3KQ3PRFe

I'll use this ones.

However, I have no idea what kind of knowledge I need to use the things in front of the tokens:

Code: [Select]
tDisp           EQU       PROGTOK+16  ; DEh   'Disp_'
How could I implement this in a program, for example?

I'll probably give up after making the Disp one, so I have to make sure I can do it.


I'm gonna be using Python, but I don't need help with Python, I need help on what I should use in the program from that line tDisp above?

267
General Discussion / DJ Omni Songs Pack
« on: November 11, 2010, 09:45:48 pm »
I decided to pack all DJ Omnimaga's songs since his torrent is NOT working due to technical issues.
To download his songs you have to go to Omnimaga's Download Section and download 1 by one, with 3 clicks per song.
Another way to do so is to go to http://s221544699.onlinehome.us/djomnisongs/ and download one by one (Save Video As.... (right click)).

So, in order to simplify things, I decided to download one by one for all of you and ZIP'em all together, so that anyone can hear these awesome songs :D

Please download 6 different ZIPs from MegaUpload, here are the links:

Please download these instead of the other :)

Songs1.zip
Songs2.zip
Songs3.zip
Songs4.zip
Songs5.zip
Songs6.zip

In addition, you can also download it here

www.davidgom.co.cc/DJOmnimaga.zip

Please don't share this link because of my BandWidth


This full zip will be deleted in a week or so, so download it now or you won't have a chance to do so later (only through those 6 links)




Enjoy this awesome songs, I had lots of work and took me hours to upload all of them

268
Art / 3D Art
« on: November 11, 2010, 07:37:16 pm »
My first 3D art images made using Google Skechup.

Hope you like them :)

269
General Calculator Help / .txt to .8xp
« on: November 11, 2010, 06:59:31 pm »
So, I know how to convert .txt to .8xp, using SourceCoder or Tokens.

Now, how hard would it be for me to make my own converter?

Is that something hard to do, is the code for that available or is something that needs to be coded from the beginning truly hard?

Thanks

270
Axe / Password Protection
« on: November 11, 2010, 11:43:33 am »
Hey everybody, some friends in my class love to delete other people's RAM and play my games, and transfer my games to their calculators -.-

So, I thought of some protection, with the Start-Up Application, it would open an Axe file everytime I turned on the calculator.

Now, I need to make a file where I have to input a password and if it is wrong, let me try again, anytimes I want to, infinitely and no keys can turn it off.

So, do something like:

Code: [Select]
.LOGCALC
A=1
While A != 5
Lbl 1
Repeat getKey->Z
End
If Z=x and Z=y and Z=..... (all keys, but 4,down key and 1)
Goto 1
End
If Z=1 //down key
A+A->A
End
If Z=34 //1 key
A+A->A
End
If Z=35 // 4key
A+1->A //A should now be 5
End

So, to turn on the calculator i have to press down key, 1 and 4key by this order.

Any suggestions?

Pages: 1 ... 16 17 [18] 19 20