This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
ETHANATOR360's profile picture

raspberry pi programming

Started by ETHANATOR360, 15 May 2013 - 06:48 PM
ETHANATOR360 #1
Posted 15 May 2013 - 08:48 PM
hey guys i just purchased a raspberry pi for programming and i wanted to know what are some good ways to learn more about computers with the little device
Tiin57 #2
Posted 15 May 2013 - 08:58 PM
Learn Python. Any other language won't serve you too well; Python is what the Pi was made for.
ETHANATOR360 #3
Posted 15 May 2013 - 10:10 PM
i have been learning python and i want to try some stuff with minecraft pi edition
Mads #4
Posted 16 May 2013 - 04:41 AM
Learn Python. Any other language won't serve you too well; Python is what the Pi was made for.

C/C++ would be better, as it teaches you how to interact with the hardware(kind of). Assembly would be even better.
M4sh3dP0t4t03 #5
Posted 16 May 2013 - 06:42 AM
i have been learning python and i want to try some stuff with minecraft pi edition
I think you have to learn ruby then, because I think the modding API for it is in ruby(I might be wrong)
nutcase84 #6
Posted 16 May 2013 - 07:22 AM
i have been learning python and i want to try some stuff with minecraft pi edition
I think you have to learn ruby then, because I think the modding API for it is in ruby(I might be wrong)

There is ruby for McPi. Use python. It's quite easy, and similar to lua.
Mads #7
Posted 16 May 2013 - 07:28 AM
People, it doesn't have to be easy.
ShadowedZenith #8
Posted 16 May 2013 - 09:01 AM
Learn Python. Any other language won't serve you too well; Python is what the Pi was made for.

C/C++ would be better, as it teaches you how to interact with the hardware(kind of). Assembly would be even better.

Not entirely true. The Raspberry Pi has an ARM processor and, since not all Assembly languages are the same (just compare the x86 assembly to ARM and you'll see), unless he's specifically targetting ARM everytime he develops after that, it's not going to be very beneficial except maybe in understanding the overall structure of an assembly program.

Edit: As for on topic, I'd have to agree that Python would be a good way to go.
Sammich Lord #9
Posted 16 May 2013 - 12:52 PM
There are several modding APIs for the RPi Minecraft edition. There is the Python one and a Node.js one. There are also quite a few others.
jesusthekiller #10
Posted 16 May 2013 - 01:28 PM
Learn. Java. Now.
theoriginalbit #11
Posted 16 May 2013 - 01:33 PM
Learn. Java. Now.
No, just no….

On topic: I agree with Mads C/C++ would be best…
M4sh3dP0t4t03 #12
Posted 16 May 2013 - 01:37 PM
I also agree with c/c++ as the best
ETHANATOR360 #13
Posted 16 May 2013 - 02:33 PM
Learn. Java. Now.
already know it and going to be developing android apps this summer and i also know C a liitle bit played around with format strings and stuff and about assembly i also want to learn the basics of it so i can use some features of the gnu de-bugger
Mads #14
Posted 16 May 2013 - 02:42 PM
already know it and going to be developing android apps this summer and i also know C a liitle bit played around with format strings and stuff and about assembly i also want to learn the basics of it so i can use some features of the gnu de-bugger

I don't reccomend learning ASM on the raspi, you're much better off with learning Intel x86 Assembly, as it is the most widely supported(learn the 32-bit "mode").
jesusthekiller #15
Posted 17 May 2013 - 03:34 PM
I was just kidding with java…

Use C++ (aka cpp) for small and medium things.
Zudo #16
Posted 21 May 2013 - 01:41 PM
Python.