[HELP]how to start programing ?

06/11/2009 23:09 RiDiL#1
i just finished my final exams today
if i want to start learning programing ..
what u should i start with ,, i mean what language to start
where is the best to learn it ., if any one wants to help just say it
06/11/2009 23:27 high7#2
Quote:
RiDiL
Egyptian.
Um... No...
06/11/2009 23:49 RiDiL#3
Quote:
Originally Posted by high7 View Post
Um... No...
i just saw ur topic in general so i'm not asking u
just ignore me
thx for help any way >.<
06/11/2009 23:55 high7#4
Quote:
Originally Posted by RiDiL View Post
i just saw ur topic in general so i'm not asking u
just ignore me
thx for help any way >.<
Um... No...
06/11/2009 23:57 RiDiL#5
Quote:
Originally Posted by high7 View Post
Um... No...
i will just do the same as u
and ignore it :mofo:
06/12/2009 00:41 (GAME)Master#6
start with basic
06/12/2009 03:42 high7#7
Quote:
Originally Posted by (GAME)Master View Post
start with basic
Um... No...
06/12/2009 09:25 ookamocka#8
Quote:
Originally Posted by (GAME)Master View Post
start with basic
this... and when we say basic we mean... BASIC <<< that's the name of hte language... BASIC - Wikipedia, the free encyclopedia

learn that before you learn anything else... then move on to C then Java or C++



btw, the ONLY reason i bothered to respond to this thread is because u didn't speak horrible english as most egys do

also, expect about a year of doing all of that before you even begin to be ready to start making bots/hacks for CO
06/12/2009 10:23 trash#9
csharp
06/12/2009 11:26 _fobos_#10
Id say look up some code samples of different languages and which syntax you like best you pick :)
People can tell you what they prefer or how they learned it or still learning it but in the end its what you prefer and not what they do, just learn to use google, and old fashioned library's work like a charm.

On a side note, by asking this question I don't see any dedication at all to really wanting it, so you better start to develop a curious mind first and start exploring with it instead of asking your hand to be held every little step :)
06/12/2009 23:49 InfamousNoone#11
Quote:
Originally Posted by high7 View Post
Um... No...
/agree
1 epic failure coming up
06/13/2009 03:58 ookamocka#12
Quote:
Originally Posted by InfamousNoone View Post
/agree
1 epic failure coming up
sorry, but i'd have to strongly disagree...

because basic is such an old language (i started w/ basic)... it makes for a great language to understand the fundamentals of programming...

NOBODY is saying VB, we're saying "BASIC"... i think nobody should start off learning programming from VB, u miss out on a lot of things

but as i was saying... BASIC is every straight foward, so the OP would understand the concepts of programming a lot better then many other languages

Examples:


Code:
For A = 0 To 20
   *** Perform code here ****
Next A
is more straight foward then

Code:
For (A=0; A <= 20; A++)
{
   *** Perform code here ****
}



Example:

Code:
If B > 0 Then
   *** Perform code here ****
End If
Compared to

Code:
If (B > 0)
{
   *** Perform code here ****
{
06/13/2009 04:21 high7#13
Quote:
Originally Posted by ookamocka View Post
sorry, but i'd have to strongly disagree...

because basic is such an old language (i started w/ basic)... it makes for a great language to understand the fundamentals of programming...

NOBODY is saying VB, we're saying "BASIC"... i think nobody should start off learning programming from VB, u miss out on a lot of things

but as i was saying... BASIC is every straight foward, so the OP would understand the concepts of programming a lot better then many other languages

Examples:


Code:
For A = 0 To 20
   *** Perform code here ****
Next A
is more straight foward then

Code:
For (A=0; A <= 20; A++)
{
   *** Perform code here ****
}



Example:

Code:
If B > 0 Then
   *** Perform code here ****
End If
Compared to

Code:
If (B > 0)
{
   *** Perform code here ****
{
I have gone over my reasons for hating BASIC so many times and don't feel like reiterating them tonight.

I will leave you with 1 thing.

I personally find it easier to read C# code than VB code. Although I program in C# and not VB.
06/13/2009 08:05 clintonselke#14
Quote:
Originally Posted by InfamousNoone View Post
/agree
1 epic failure coming up
so true xD
06/13/2009 09:27 ookamocka#15
Quote:
Originally Posted by high7 View Post
I have gone over my reasons for hating BASIC so many times and don't feel like reiterating them tonight.

I will leave you with 1 thing.

I personally find it easier to read C# code than VB code. Although I program in C# and not VB.
well... still doesn't neglect the fact that BASIC is a great way to learn the fundamentals of programming... trust me, i don't like BASIC that much myself, but it's a perfect starting point... i would never want someone to write a program w/ BASIC (no offense IAmHawtness w/ ur VB :rolleyes:)