Post: Dont know what lenguage start coding? COME HERE
05-21-2013, 06:48 PM #1
KingcreekS
NOTHING IS IMPOSSIBL
(adsbygoogle = window.adsbygoogle || []).push({}); Hi

I was offline for a long time , and i want to start postin again , i miss this .

---------------------------------

Some people ask me :

Whats the best coding lenguage to start?

I USED TO ANSWER:

Start in ruby on rails , its easy and fast to code

After 2 month , i realize that ruby on rails have no sense , because you dont even code :S

Now if someone ask me what is the best coding lenguage to start i say :

GREENFOOT (JAVASCRIPT)

Greenfoot its actually a program that allows easy development of two-dimensional graphical applications, such as simulations and interactive games.

Coding into greenfoot:

The Greenfoot programming model consists of a World class (represented by a rectangular screen area) and any number of actor objects that are present in the world and can be programmed to act independently. The world and actors are represented by Java objects and defined by Java classes. Greenfoot offers methods to easily program these actors, including method for movement, rotation, changes of appearance, collision detection, etc.
Programming in Greenfoot at its most basic consists of subclassing two built-in classes, World and Actor. An instance of the world subclass represents the world in which Greenfoot execution will occur. Actor subclasses are objects that can exist and act in the world. An instance of the world subclass is automatically created by the environment.
Execution in Greenfoot consists of a built-in main loop that repeatedly invokes each actor's act method. Programming a scenario, therefore, consists mainly of implementing act methods for the scenario's actors. Implementation is done in standard Java. Greenfoot offers API methods for a range of common tasks, such as animation, sound, randomisation, and image manipulation. All standard Java libraries can be used as well, and sophisticated functionality can be achieved.


Example:

    
public void act()
{
setLocation (getX() + 4, getY());
// Moves the object 4 cells to the right
setRotation (getRotation() + 2);
// Rotates the object 2 degrees clockwise
}//(An example of a simple act method in Greenfoot)

ANOTHER EXAMPLE:

Actor a = getOneIntersectingObject(Asteroid.class);
if (a != null) {
// we have hit an asteroid!
explode();
}//(An example of simple collision detection)

.

Some Images:
[ATTACH=CONFIG]24620[/ATTACH]
[ATTACH=CONFIG]24621[/ATTACH]

Download Link:
You must login or register to view this content.

You will also need to have a JDK installed :
You must login or register to view this content.

SO IF YOU ARE A BEGGINER I RECOMEND YOU TO START CODING IN GREENFOOT , GOOD LUCK , BE CREATIVE , DEVOLOP. I WILL BE MAKING A TUTORIAL THIS WEEK , THANKS FOR READING , GOOD LUCK,

Palomo.
(adsbygoogle = window.adsbygoogle || []).push({});
05-21-2013, 11:17 PM #2
Pichu
RIP PICHU.
Honestly, I recommend Python, it's a simple interpreter language that is great for scripting. Move over to an OOP language afterwards and you should be good to go.

The following user thanked Pichu for this useful post:

~SpongeBob
05-21-2013, 11:47 PM #3
Meatwad
Meatman
I second the Python recommendation, C++ is pretty good also, was fairly easy for my 9 year old autistic cousin to learn.
05-22-2013, 10:36 AM #4
Sloth
Banned
Originally posted by Meatwad View Post
I second the Python recommendation, C++ is pretty good also, was fairly easy for my 9 year old autistic cousin to learn.

0.o really, most people find C++ harder to understand.
Especially when it comes to trying to add a GUI.
05-22-2013, 10:51 AM #5
remi06
Do a barrel roll!
Python is so good and easy !


You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.
05-22-2013, 01:15 PM #6
Honestly if you can't spell language you probably shouldn't be giving advice about learning a language.
05-22-2013, 02:35 PM #7
I started with Java, wasn't up to me, actually, my first CS course was mostly Java and an assortment of object oriented languages, then moved on to C and low level languages, then web development languages, and now, alongside C#, I'm learning how to do some scripting in Unity using Javascript, which is insanely easy!
05-22-2013, 03:14 PM #8
Meatwad
Meatman
Originally posted by Sloth View Post
0.o really, most people find C++ harder to understand.
Especially when it comes to trying to add a GUI.

My cousin is a savant, the most intelligent person I've ever met.
05-22-2013, 04:54 PM #9
Pichu
RIP PICHU.
Originally posted by Sloth View Post
0.o really, most people find C++ harder to understand.
Especially when it comes to trying to add a GUI.


Erm, Visual Studio helps with the GUI on Windows and Linux, I know for sure, has a manager that will help out with GUI support.
05-22-2013, 05:42 PM #10
KingcreekS
NOTHING IS IMPOSSIBL
another easy lenguage is objective c

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo