Forums

Topic: Petit Computer QR Code Sharing Thread

Posts 741 to 760 of 1,621

Hairmanban19

bluerobin2 wrote:

hairmanban19 wrote:

a guy that i can not remember the name of is making Mega Man 2

HOW COULD YOU????? ITS @Discostew!

I was thinking if it was him but i thought it i could be wrong.

...

3DS Friend Code: 3136-7615-5907

Kale42

how do i get my qrs into paint? It says that it cant read them when i go to put them in

Edited on by Kale42

Kale42

Kale42

Morphtroid wrote:

@Kale42: Just use the "print screen" key on your keyboard, that will make a copy of your current screen that you can paste on paint.

thanks ill try it.

Kale42

boot

I'm making a mtn. Dew game.

Just your average talking boot. FC: 0791-4881-1672 for Smash and Pokemon.

3DS Friend Code: 0791-4881-1672

IAmSpike

Any game related to Mountain Dew has gotta be good

Previously Philip.

The most paranoid person on the net!

3DS Friend Code: 0559-7022-5853

Kale42

Untitled

Untitled

Untitled

Untitled

Untitled

Untitled

Untitled

Thanks I got it, this is the dungeon crawler that i edited, just move in any way until you see something. Credit goes to the ptc staff because other than that no difference. It does make it challenging though

Edited on by Kale42

Kale42

LeviCelJir

Come on! Those Qrs for petit slash 2 are TINY. I can't read them!

Hi I'm Levi and I like Bloopys :^)

Arn0ld

Levine, try zooming in on your laptop, ipad or whatever

Botw > OoT

3DS Friend Code: 0748-4970-2550 | Nintendo Network ID: Xjarnold

LeviCelJir

Xtremetdifan wrote:

Levine, try zooming in on your laptop, ipad or whatever

I have to download it and so there isn't a zoom in button

Hi I'm Levi and I like Bloopys :^)

VincentFaraday

I recently created a program that can find the roots of quadratic equations. Since Petit Computer can't float very many numbers, the answers will have at most 3 decimal places. I should also note that this program cannot solve quadratics that have complex roots. Inside the program, I have included details on how the program was put together. The QR code can be found here: http://www.flickr.com/photos/94111184@N05/8565434024/in/photo...

I wish I was on the Enterprise.

3DS Friend Code: 1048-8460-1195

buny123

VincentFaraday wrote:

I recently created a program that can find the roots of quadratic equations. Since Petit Computer can't float very many numbers, the answers will have at most 3 decimal places. I should also note that this program cannot solve quadratics that have complex roots. Inside the program, I have included details on how the program was put together. The QR code can be found here: http://www.flickr.com/photos/94111184@N05/8565434024/in/photo...

LOAD"SOLVE
OK
RUN
QUADRATIC SOLVER BY ZACHARY ♫
NOTE:(aX^2)+(bX)+c=0
You will have to restart
the program if the root is
is complex,since this program
cannot solve them.
What is a?
5
What is b?
6
What is c?
2
Illegal function call (32, SQR)
OK

buny123

3DS Friend Code: 4554-0413-6584 | Twitter:

MrSirr

How do you make qr codes for games and then post them here?

MrSirr

buny123

MrSirr wrote:

How do you make qr codes for games and then post them here?

Go to Petit Computer, tap File Management, Save to SD Memory Card, select the file(s), make note of the folder it gives you. Take the SD card out of your DSi/3DS and put it in your computer. Upload the file here:
< http://smileboom.com/special/ptcm2/qrmaker/en_us/qrmaker.html >
Or create the QR codes using PTCUtilities:
< http://micutil.com/ptcutilities/top_e.html >

Edited on by buny123

buny123

3DS Friend Code: 4554-0413-6584 | Twitter:

VincentFaraday

buny123 wrote:

VincentFaraday wrote:

I recently created a program that can find the roots of quadratic equations. Since Petit Computer can't float very many numbers, the answers will have at most 3 decimal places. I should also note that this program cannot solve quadratics that have complex roots. Inside the program, I have included details on how the program was put together. The QR code can be found here: http://www.flickr.com/photos/94111184@N05/8565434024/in/photo...

LOAD"SOLVE
OK
RUN
QUADRATIC SOLVER BY ZACHARY ♫
NOTE:(aX^2)+(bX)+c=0
You will have to restart
the program if the root is
is complex,since this program
cannot solve them.
What is a?
5
What is b?
6
What is c?
2
Illegal function call (32, SQR)
OK

My point exactly. The root of (5x^2)+6x+2=0 would be two complex imaginary roots, which petit computer can't do. If you need the answer to a quadratic like this pick up a TI-84 or solve the equation by hand.

I wish I was on the Enterprise.

3DS Friend Code: 1048-8460-1195

buny123

NoahXD wrote:

I have read petit slash 2 has an english patch.
here is the patch it is called ps2_ENG
[Link removed to prevent horizontal scrolling]

I uploaded the patch to my website and added some extra stuff (More info there):
http://dsifur.ethst.tk/ptcqr/ps2_game/

buny123

3DS Friend Code: 4554-0413-6584 | Twitter:

buny123

VincentFaraday wrote:

buny123 wrote:

VincentFaraday wrote:

I recently created a program that can find the roots of quadratic equations. Since Petit Computer can't float very many numbers, the answers will have at most 3 decimal places. I should also note that this program cannot solve quadratics that have complex roots. Inside the program, I have included details on how the program was put together. The QR code can be found here: http://www.flickr.com/photos/94111184@N05/8565434024/in/photo...

LOAD"SOLVE
OK
RUN
QUADRATIC SOLVER BY ZACHARY ♫
NOTE:(aX^2)+(bX)+c=0
You will have to restart
the program if the root is
is complex,since this program
cannot solve them.
What is a?
5
What is b?
6
What is c?
2
Illegal function call (32, SQR)
OK

My point exactly. The root of (5x^2)+6x+2=0 would be two complex imaginary roots, which petit computer can't do. If you need the answer to a quadratic like this pick up a TI-84 or solve the equation by hand.

"Illegal function call (32, SQR)" was a program crash...
I checked line 32:
TOP=-B+SQR((B*B-4*A*C))
If you do the math (using my numbers above)...
TOP=-6+SQR((6*6-4*5*2))
TOP=-6+SQR((36-4*5*2))
TOP=-6+SQR((36-20*2))
TOP=-6+SQR((36-40))
TOP=-6+SQR(-4)
Petit Computer (Or a normal calculator; I just tried it on a TI-30XA) can't get the square root of a NEGATIVE number, thus it can't calculate the rest.

buny123

3DS Friend Code: 4554-0413-6584 | Twitter:

MrSirr

buny123 wrote:

MrSirr wrote:

How do you make qr codes for games and then post them here?

Go to Petit Computer, tap File Management, Save to SD Memory Card, select the file(s), make note of the folder it gives you. Take the SD card out of your DSi/3DS and put it in your computer. Upload the file here:
< http://smileboom.com/special/ptcm2/qrmaker/en_us/qrmaker.html >
Or create the QR codes using PTCUtilities:
< http://micutil.com/ptcutilities/top_e.html >

Yea but how do u post them on this topic?

MrSirr

MrSirr

Also I have a few questions.
1. IF (B AND 16) THEN etc. etc. what does that or something like that mean?
2. On my menu, how do I make it so u can press up and down on the dpad to scroll thru menu options and select them by pressing A on the option on the menu that I want.

MrSirr

VincentFaraday

buny123 wrote:

VincentFaraday wrote:

buny123 wrote:

VincentFaraday wrote:

I recently created a program that can find the roots of quadratic equations. Since Petit Computer can't float very many numbers, the answers will have at most 3 decimal places. I should also note that this program cannot solve quadratics that have complex roots. Inside the program, I have included details on how the program was put together. The QR code can be found here: http://www.flickr.com/photos/94111184@N05/8565434024/in/photo...

LOAD"SOLVE
OK
RUN
QUADRATIC SOLVER BY ZACHARY ♫
NOTE:(aX^2)+(bX)+c=0
You will have to restart
the program if the root is
is complex,since this program
cannot solve them.
What is a?
5
What is b?
6
What is c?
2
Illegal function call (32, SQR)
OK

My point exactly. The root of (5x^2)+6x+2=0 would be two complex imaginary roots, which petit computer can't do. If you need the answer to a quadratic like this pick up a TI-84 or solve the equation by hand.

"Illegal function call (32, SQR)" was a program crash...
I checked line 32:
TOP=-B+SQR((B*B-4*A*C))
If you do the math (using my numbers above)...
TOP=-6+SQR((6*6-4*5*2))
TOP=-6+SQR((36-4*5*2))
TOP=-6+SQR((36-20*2))
TOP=-6+SQR((36-40))
TOP=-6+SQR(-4)
Petit Computer (Or a normal calculator; I just tried it on a TI-30XA) can't get the square root of a NEGATIVE number, thus it can't calculate the rest.

I'm sorry that you don't know how to deal with imaginary numbers in you calculator. You can also use MAPLE to find the complex roots more exactly with less effort. Like I said "The root of (5x^2)+6x+2=0 would be two complex imaginary roots, which petit computer can't do". The program works as long as sqrt(b*b-4ac) is equal to or greater than zero, otherwise you are dealing with imaginary numbers. The solutions to the quadratic you entered would be -0.6-0.2i and -0.6+0.2i.

I wish I was on the Enterprise.

3DS Friend Code: 1048-8460-1195

This topic has been archived, no further posts can be added.