Ayumiz
J-10 whore
+103|6951|Singapore
Been really poor in programming at school. Java and ASP.net 2.0 I know its practice makes perfect but is there any way i can improve it? Cant seem to graps the concepts well.
AussieReaper
( ͡° ͜ʖ ͡°)
+5,761|6370|what

Try different languages and you'll soon realise how much they have in common and that for the most part syntax mastery will be all that you need in the end, the rest will come naturally.

Learn good database design, because these days most programming is object orientated. And try to solve problems more than once. You can solve a problem with 12 lines of code, or 3.

Understand how to call procedures and write your own, without using any of the inbuilt functions of asp.net and see how you go.
https://i.imgur.com/maVpUMN.png
Surgeons
U shud proabbly f off u fat prik
+3,097|6707|Gogledd Cymru

Go through online tutorials, use the API (It's your bible), try creating little programs to do everyday tasks.

Assuming this is for java btw.
mikkel
Member
+383|6818
Focus on learning what you're doing and why you're doing specifically that before you set out to do it. If you don't know what you're doing, and why you're doing it when you write your code, you'll never be a good programmer. It's a bitch, and takes a lot of reading without much practical implementation, but it's the only way to success. There are way too many people teaching programming who fail to build things up from the very bottom, and start off with a "Hello World", which is only good for demonstrating syntax and typing diciplines, and not at all good for teaching fundamentals.
Vilham
Say wat!?
+580|6983|UK
Practice, as boring as coding is that's the only way. You gotta just write lots of code until everything just makes sense to you.

There are hundreds of ways you could make the same OO program but only a handful will actually be any good. You need to learn to understand why doing OO design certain ways is better than others. Normally that revolves around making your program accessible to expansion.
jsnipy
...
+3,276|6740|...

The best I always found was to make some useful. Identify something you would actually like to make, then use tutorials and examples to reach that goal.

i.e. set a goal

Assuming you care about this beyond school

Last edited by jsnipy (2009-01-19 08:26:15)

Harmor
Error_Name_Not_Found
+605|6766|San Diego, CA, USA
Best resource to learn a language from scratch: http://www.w3schools.com/

Also learn how to read specifications from http://www.w3c.org/


Don't be too keen on any particular language.  Whenever there's a problem each language/platform/OS will have its advantages and disadvantages.  Weigh them and then decide.

Depending on how you learn, like the guy before me said, get down and dirty.  Google search some beginner guides and start by making something simple.  If you try something too hard you'll get frustrated.

Each time you build something, use what you've learn previously.

Programming, by its very nature, is taking something very complex and making one decision at a time.
Catbox
forgiveness
+505|6933
You have to be interested in it... are you? 
It's possible to learn something you don't enjoy obviously... but if you are into learning programming... you won't care how long it takes... you'll have a thirst for learning it... hope that made sense...
Love is the answer
VspyVspy
Sniper
+183|6890|A sunburnt country
Just cheat off someone else.

Scorpion0x17
can detect anyone's visible post count...
+691|6983|Cambridge (UK)

Ayumiz wrote:

Been really poor in programming at school. Java and ASP.net 2.0 I know its practice makes perfect but is there any way i can improve it? Cant seem to graps the concepts well.
It really depends on where you're struggling.

If it's the pure OO concepts, that's a toughy, you have to think in a certain way to be a good programmer, but don't ask me what that 'way' is - I've never been able to put it into words.

But, if it's something like that you keep on forgetting the syntax and grammar of the language, then, as others have said, practice is the only way to learn - the more code you write the more you get to know the syntax and grammar.

Maybe give some examples of things you're finding difficult, and we'll talk you through them (though, CrazeD's recent thread seems to suggest there aren't many (if any) really good Java coders on the forum, so if it's a question about say why a specific chunk of code isn't working, we might not be able to help much, but I think there are enough coders here to help you with any OO concepts you're struggling with).

Finally, unless you know it's going to be in an exam, don't get too hung-up on trying to memorise long lists of classes and function names - there's way to many of them for anybody to remember them all and all good programmers keep a language reference book to hand.

Last edited by Scorpion0x17 (2009-01-19 20:49:10)

GodFather
Blademaster's bottom bitch
+387|6437|Phoenix, AZ
Shouldnt this be in tech?
Scorpion0x17
can detect anyone's visible post count...
+691|6983|Cambridge (UK)

GodFather wrote:

Shouldnt this be in tech?
Probably.

Might explain why the OP's finding programming difficult, too...
chittydog
less busy
+586|7052|Kubra, Damn it!

I'll tutor you personally if you can get me a job in Singapore.

Study Object Oriented development. And that doesn't mean learn database design because the principles of OO have nothing to do with that. If you can grasp those concepts, the syntax will fall into place pretty easily.

What always helped me learn a lot was when I had to do something I'd never done before. You learn a lot that way. Don't be afraid to use google either. I can tell you first hand that pretty much every developer I know uses google every single day. I've been doing this for 12 years and I still do.

No disrespect to Aussie, but I disagree with most of what he said. Yeah, you should learn different languages and try to do things different ways, but DB design isn't OO. Syntax mastery isn't half as important as grasping concepts, especially with Intellisense. And the native .NET functions are super-handy to know. It will save you a lot of time and grief if you get familiar with those.
Scorpion0x17
can detect anyone's visible post count...
+691|6983|Cambridge (UK)

chittydog wrote:

the principles of OO have nothing to do with [database design]
I noticed that in Reapers post and was like

However, I think I may know what he meant - relational database design becomes a whole lot easier if you start thinking of table schemas as being something like class definitions - it's more 'object based design' than 'object oriented design'.
blah
macaroni with cheeseeee
+111|5965|Croatia
don't think linear,think outside the box
Scorpion0x17
can detect anyone's visible post count...
+691|6983|Cambridge (UK)

blah wrote:

don't think linear,think outside the box
It's more like:

Think inside the box, outside the box, what the box is made from, what makes the box 'box-like', how the box behaves in a 'box-like' manner, and what can be done with the box.
blah
macaroni with cheeseeee
+111|5965|Croatia

Scorpion0x17 wrote:

blah wrote:

don't think linear,think outside the box
It's more like:

Think inside the box, outside the box, what the box is made from, what makes the box 'box-like', how the box behaves in a 'box-like' manner, and what can be done with the box.
that
Scorpion0x17
can detect anyone's visible post count...
+691|6983|Cambridge (UK)

blah wrote:

Scorpion0x17 wrote:

blah wrote:

don't think linear,think outside the box
It's more like:

Think inside the box, outside the box, what the box is made from, what makes the box 'box-like', how the box behaves in a 'box-like' manner, and what can be done with the box.
that
I did forget one thing - think under the box, too.

AussieReaper
( ͡° ͜ʖ ͡°)
+5,761|6370|what

Scorpion0x17 wrote:

chittydog wrote:

the principles of OO have nothing to do with [database design]
I noticed that in Reapers post and was like

However, I think I may know what he meant - relational database design becomes a whole lot easier if you start thinking of table schemas as being something like class definitions - it's more 'object based design' than 'object oriented design'.
Yeah I did. I was going over all the stuff I've learned through uni and a lot of it is cross disciplined. Learning database design helps when you code in SQL commands, which you can use in web programming, which is a language that when you learn will also prob start with your first web page saying Hello World. lol
https://i.imgur.com/maVpUMN.png
Freezer7Pro
I don't come here a lot anymore.
+1,447|6414|Winland

Do printf("Hello world!")\n 50 times over.
The idea of any hi-fi system is to reproduce the source material as faithfully as possible, and to deliberately add distortion to everything you hear (due to amplifier deficiencies) because it sounds 'nice' is simply not high fidelity. If that is what you want to hear then there is no problem with that, but by adding so much additional material (by way of harmonics and intermodulation) you have a tailored sound system, not a hi-fi. - Rod Elliot, ESP
AussieReaper
( ͡° ͜ʖ ͡°)
+5,761|6370|what

Freezer:

rand=(200,99)
https://i.imgur.com/maVpUMN.png
~FuzZz~
.yag era uoy fi siht deaR
+422|6540|Orrstrayleea
Reaps

nerdtalklol=(over9000)
Vilham
Say wat!?
+580|6983|UK

Scorpion0x17 wrote:

chittydog wrote:

the principles of OO have nothing to do with [database design]
I noticed that in Reapers post and was like

However, I think I may know what he meant - relational database design becomes a whole lot easier if you start thinking of table schemas as being something like class definitions - it's more 'object based design' than 'object oriented design'.
Indeed that is how I perceived what he meant.

Board footer

Privacy Policy - © 2024 Jeff Minard