• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Programming

creation portal

Junior Member
i want to learn programming how can i do it effectively in the least amount of time .does anyone know of a good site or even a good software to learn programming i am good at it but i want to be perfect
 
I see this recommendation a lot. I did Python years ago in college and I remember liking it, but why suggest this over any other language (just curious)?

To be honest I prefer C/C++ over any language.But just learning for the sake of learning is of little value, Python has better job prospects now compared to C/C++(they will always be important but for different kind of fields).Python is easy to learn,code and has very good support.
 
I started programming by going to http://www.w3schools.com/ and learning javascript/html. Javascript is a fun language, its easy to learn, its useful for most things you want to do (built webpages or even simple local clients) and if you have a computer you have a built-in IDE (notepad) and compiler (web browser).

Once done with javascript pick another language and keep learning.
 
To be honest I prefer C/C++ over any language.But just learning for the sake of learning is of little value, Python has better job prospects now compared to C/C++(they will always be important but for different kind of fields).Python is easy to learn,code and has very good support.

I do remember it being easy.

As far as job prospects though, pick up Visual Studio Express and learn some C# 😉

Or better yet, if you can stand it, develop in the ASP.net environment using C#. I think that's where the money is, if that's your sort of thing OP. I did VBA for years just because I like it, but my payscale suffered comparatively (still comparable to six figure salary jobs though). Now that I've done all sorts of stuff in VBA I'm moving on to C#. I felt very compelled to move straight to VB for the obvious reasons, but C# is worth more in the workplace, even though you can do just about everything in both languages.

If anyone knows why that is, I'm all ears. The internet just gives a bunch of back and forth on the topic, and it all just sounds like speculation. I personally don't think there is a good reason for it.
 
I started programming by going to http://www.w3schools.com/ and learning javascript/html. Javascript is a fun language, its easy to learn, its useful for most things you want to do (built webpages or even simple local clients) and if you have a computer you have a built-in IDE (notepad) and compiler (web browser).

Once done with javascript pick another language and keep learning.

Also, this site rocks. I use w3schools whenever possible.
 
I do remember it being easy.

As far as job prospects though, pick up Visual Studio Express and learn some C# 😉

Or better yet, if you can stand it, develop in the ASP.net environment using C#. I think that's where the money is, if that's your sort of thing OP. I did VBA for years just because I like it, but my payscale suffered comparatively (still comparable to six figure salary jobs though). Now that I've done all sorts of stuff in VBA I'm moving on to C#. I felt very compelled to move straight to VB for the obvious reasons, but C# is worth more in the workplace, even though you can do just about everything in both languages.

If anyone knows why that is, I'm all ears. The internet just gives a bunch of back and forth on the topic, and it all just sounds like speculation. I personally don't think there is a good reason for it.

I liked VB but not enough like C/C++.That said I have to use it from time to time.I never liked .net languages enough to change boats honestly.I looked at VB.NET and said wth? VB morphed into something completely different.Now regarding paychecks 😛, if you really know C/C++ you will be a tough nut to beat 😀 .
 
I liked VB but not enough like C/C++.That said I have to use it from time to time.I never liked .net languages enough to change boats honestly.I looked at VB.NET and said wth? VB morphed into something completely different.Now regarding paychecks 😛, if you really know C/C++ you will be a tough nut to beat 😀 .

In the Detroit metro... if you know your C in and out, you can land an automotive position no problems. And be nailing way into six figures.

But again, salary isn't my sort of thing. Once I started making $50k I didn't have to scrounge for anything. And now that I'm well past that I have no real motivation. I don't spend enough to spend even what I have now.

However when I take new jobs, naturally I negotiate what I can, though 😉
 
In the Detroit metro... if you know your C in and out, you can land an automotive position no problems. And be nailing way into six figures.

But again, salary isn't my sort of thing. Once I started making $50k I didn't have to scrounge for anything. And now that I'm well past that I have no real motivation. I don't spend enough to spend even what I have now.

However when I take new jobs, naturally I negotiate what I can, though 😉

Ha ha yeah.I actually like to understand the design philosophy behind a programming language(though irrelevant for the job at hand).That is one of the reason I didn't like VB.NET enough.I like C# but I am not expert enough to understand it's design philosophy.
 
I started programming by going to http://www.w3schools.com/ and learning javascript/html. Javascript is a fun language, its easy to learn, its useful for most things you want to do (built webpages or even simple local clients) and if you have a computer you have a built-in IDE (notepad) and compiler (web browser).

Once done with javascript pick another language and keep learning.

Also, this site rocks. I use w3schools whenever possible.

I'll just leave this here... http://www.w3fools.com/
 
I'll just leave this here... http://www.w3fools.com/

This isn't that useful without specific examples, however this also depends on how you use w3schools. Usually I land there looking for how a specific function works, not to teach me about a programming language. Their examples are straight forward and allow an editor to learn how to use it in real time. To blanket them as a bad resource is ignorant.
 
I started programming by going to http://www.w3schools.com/ and learning javascript/html. Javascript is a fun language, its easy to learn, its useful for most things you want to do (built webpages or even simple local clients) and if you have a computer you have a built-in IDE (notepad) and compiler (web browser).

Once done with javascript pick another language and keep learning.

+1 for javascript, reiterating what was said above.

Perhaps the mostly important is that you have a good first impression of programming and a lot of fun. Javascript is forgiving and lets beginners code quickly while teaching the basic of loops, if statements, etc...

Install firebug and make use of the debugger.

After the basics are covered you can get into object oriented design, Java is good for that. You will be able to focus on that without having to worry about memory management. Then move to learning about memory management, C++ is good for that.

Notice there are personal preferences when it comes to languages.

You might want to do a quick survey of languages by coding a hello world and/or a prime number calculation program in each. Search google for online compiler for a given language and code something up.
 
Last edited:
I do remember it being easy.

As far as job prospects though, pick up Visual Studio Express and learn some C# 😉

Or better yet, if you can stand it, develop in the ASP.net environment using C#. I think that's where the money is, if that's your sort of thing OP. I did VBA for years just because I like it, but my payscale suffered comparatively (still comparable to six figure salary jobs though). Now that I've done all sorts of stuff in VBA I'm moving on to C#. I felt very compelled to move straight to VB for the obvious reasons, but C# is worth more in the workplace, even though you can do just about everything in both languages.

If anyone knows why that is, I'm all ears. The internet just gives a bunch of back and forth on the topic, and it all just sounds like speculation. I personally don't think there is a good reason for it.

VB still has the stigma from 20+ years ago starting when Basic was an interpretive language and VB was considered to just be a fancy front end to developing the language.

Quick/dirty GUI apps for managements with C/C++ reserved for the heavy lifting.

MS eventually put a compiler into VB to make it faster and then revamped the whole concept with the .NET (possibly a trial) to see how the .NET concept would fly back in '00.

Now both sets of language utilize the same concepts, just a different syntax. The .NET may have acted as an equalizer in terms of the CLM being used by both.

The VB is still in demand because of the original management biases that need to be supported.


My 0.02
 
I work for a large hosting company and I would say

1) do a quick primer on HTML if you don't know it. Don't try and master it, just learn enough to wrap your head around it. Basically, get a fundamental understanding of it, even if you don't practice it or memorize anything. You're going to see a lot of it in other instances of programming

2) Javascript. Used very often, and very powerful. You'll find plenty of tutorials online and vids on youtube.

3) PHP or python. I'd probably go with PHP first just because it seems to be used more.
 
i want to learn programming how can i do it effectively in the least amount of time .does anyone know of a good site or even a good software to learn programming i am good at it but i want to be perfect

You can't, First of all it takes a lot of time, work and experience. If you go in with your current aditude, you will end up being a shitty programmer and your code will be found on The Daily WTF.

And there is no perfect programmer. Not at all. In fact a good programmer must be humble and never think he is perfect and better than others. because everyone makes mistakes and stupid decisions. Hence if you think you are perfect you will ignore any criticism from your colleagues and you will end up as the clueless guy who thinks he is god.

So my recommendation is to get you shit together before you even start learning because else I'm pretty sure you will give up within the first 2 hours...because it is not for everyone and not easy.
 
I work for a large hosting company and I would say

1) do a quick primer on HTML if you don't know it. Don't try and master it, just learn enough to wrap your head around it. Basically, get a fundamental understanding of it, even if you don't practice it or memorize anything. You're going to see a lot of it in other instances of programming

2) Javascript. Used very often, and very powerful. You'll find plenty of tutorials online and vids on youtube.

3) PHP or python. I'd probably go with PHP first just because it seems to be used more.

This.
 
Back
Top