From nothing to l33t programmer...

General chitchat, advertisements for other services, and other non-Cantr-related topics

Moderators: Public Relations Department, Players Department

User avatar
BlueNine
Posts: 332
Joined: Fri Oct 21, 2005 4:52 pm
Location: Essex, England

From nothing to l33t programmer...

Postby BlueNine » Sun Jun 14, 2009 9:51 pm

Hey, I'm wondering if there are any places that could teach someone who knows nothing about programming up to a skill level where I could make lil apps for myself. I've heard Java and VB are the easiest to learn and am probably looking to learn java more than VB (so i can make greasemonkey scripts for things) but most tutorials I've looked up start off assuming you have some knowledge of a language.

Any halp will be appreciated :)
Lying in the depths of your imagination, worlds above and worlds below, you can tell a man from what he has to say
User avatar
Dudel
Posts: 3302
Joined: Wed Oct 01, 2008 5:21 am

Postby Dudel » Sun Jun 14, 2009 10:33 pm

Been thinking about learning java script myself. If only for, as you also imply, shits and giggles. However, I also haven't bothered to much to try. :lol:
lordcooper
Posts: 353
Joined: Tue Oct 14, 2008 10:55 am

Postby lordcooper » Sun Jun 14, 2009 10:54 pm

PYTHON is a good language for beginners, and there's quite a few newbie guides out there.
User avatar
joo
Posts: 5021
Joined: Fri Jun 17, 2005 2:26 pm
Location: London, UK

Re: From nothing to l33t programmer...

Postby joo » Sun Jun 14, 2009 11:24 pm

BlueNine wrote:Hey, I'm wondering if there are any places that could teach someone who knows nothing about programming up to a skill level where I could make lil apps for myself. I've heard Java and VB are the easiest to learn and am probably looking to learn java more than VB (so i can make greasemonkey scripts for things) but most tutorials I've looked up start off assuming you have some knowledge of a language.

Any halp will be appreciated :)

Your first lesson: Java != Javascript

Java is programming language, which runs independent of a browser, however may be used to create applications that are emedded in a browser (Java Applets). Java source code needs to be compiled into machine code before it can be executed. Java was created before Javascript, and thus Javascript was named after it in an attempt to "ride on the coattails" of Java's success, as well as being due to some trival similarities between the two syntaxes.

Javascript a scripting language which was created to allow web pages to be interactive. Javascript is almost always used in a web browser, however there a few exceptions. Javascript source code is saved as it is and interpreted in real-time when it is loaded, for example into a web page.

Greasemonkey scripts are written in Javascript, which is one of the easiest to learn (for me) languages I have encountered. Additionally, there is a wealth of information on the internet about every aspect of JS due to its widespread use on the internet.

To learn Javascript with minimal commitment and effort, I would suggest one (or both) of the two following starting points:

http://www.javascriptkit.com/javatutors/primer1.shtml
http://www.w3schools.com/js/default.asp
Gran
Posts: 1720
Joined: Mon Dec 04, 2006 5:53 am

Postby Gran » Mon Jun 15, 2009 12:13 am

BASIC.

*smacked by every single programmer in the audience*
"Navegar é preciso; viver não é preciso"
User avatar
Ryaga
Posts: 502
Joined: Sat Jun 13, 2009 2:43 am

Postby Ryaga » Mon Jun 15, 2009 12:17 am

GranAttacker wrote:BASIC.

*smacked by every single programmer in the audience*
If you're writing a roguelike.
Image
Dust Puppy
Posts: 512
Joined: Tue Jun 20, 2006 5:35 pm

Postby Dust Puppy » Mon Jun 15, 2009 12:49 am

This programming language is the easiest and 1337est one, period. 8)

On a more helpful note, if you don´t find anything online, go to a library and see if they have one of these "... for dummies" books.
What doesn´t kill you prolongs the agony.
User avatar
joo
Posts: 5021
Joined: Fri Jun 17, 2005 2:26 pm
Location: London, UK

Postby joo » Mon Jun 15, 2009 4:08 am

Pah, that's nothing...
User avatar
BlueNine
Posts: 332
Joined: Fri Oct 21, 2005 4:52 pm
Location: Essex, England

Postby BlueNine » Mon Jun 15, 2009 5:01 pm

Bah and there was me hoping that they were the same...so if I want to be able to make lil apps that I run from my desktop I need to learn Java and if I want to be able to do this greasemonkey shabaz I need to learn Javascript?

From 1 thing to learn to 2 :(
Lying in the depths of your imagination, worlds above and worlds below, you can tell a man from what he has to say
User avatar
Armulus Satchula
Posts: 1244
Joined: Wed Oct 29, 2003 3:57 am

Postby Armulus Satchula » Mon Jun 15, 2009 5:10 pm

lordcooper wrote:PYTHON is a good language for beginners, and there's quite a few newbie guides out there.


Its also a very old but tell maintained language that is good for professionals too. Its free to program in and there is a plugin for Eclipse called pydev which makes developing in it easier.

Could also get http://www.c-jump.com/ to help you learn the basic flow of code.
User avatar
joo
Posts: 5021
Joined: Fri Jun 17, 2005 2:26 pm
Location: London, UK

Postby joo » Mon Jun 15, 2009 8:59 pm

BlueNine wrote:Bah and there was me hoping that they were the same...so if I want to be able to make lil apps that I run from my desktop I need to learn Java and if I want to be able to do this greasemonkey shabaz I need to learn Javascript?

From 1 thing to learn to 2 :(

You can write desktop applications in Javascript using Adobe AIR as a platform. Working example: http://joo.freehostia.com/cantrspy/2.4.7/.
User avatar
BZR
Posts: 1483
Joined: Wed Aug 02, 2006 5:44 pm
Location: Poland

Postby BZR » Mon Jun 15, 2009 9:07 pm

Try C#, it's very beginner-friendly IMO.
User avatar
Cdls
Posts: 4204
Joined: Sat May 14, 2005 7:09 pm

Postby Cdls » Mon Jun 15, 2009 9:20 pm

I am starting with Phrogram, its been really helpful in learning the basics of programming and will be helpful in transitioning into future programming languages.


http://phrogram.com/
User avatar
Elros
Posts: 1511
Joined: Sat Jul 22, 2006 5:41 pm
Location: South Carolina, USA

Re: From nothing to l33t programmer...

Postby Elros » Mon Jun 15, 2009 9:35 pm

BlueNine wrote:Hey, I'm wondering if there are any places that could teach someone who knows nothing about programming up to a skill level where I could make lil apps for myself. I've heard Java and VB are the easiest to learn and am probably looking to learn java more than VB (so i can make greasemonkey scripts for things) but most tutorials I've looked up start off assuming you have some knowledge of a language.

Any halp will be appreciated :)


I personally recommend VB if you are looking to make easy applications that work on windows. If you are looking more towards online type programs then java might be better...

You can download VB Express for free and get started. It has very indepth tutorials for begginers that is included with the program. VB is lots of fun and easy to use.
Every action has a consequence.
User avatar
chase02
Posts: 2032
Joined: Fri Nov 07, 2008 1:13 pm
Contact:

Postby chase02 » Tue Jun 16, 2009 1:16 am

Assembly? XD
Image

Return to “Non-Cantr-Related Discussion”

Who is online

Users browsing this forum: No registered users and 1 guest