Contemplating...

Posts 3138 of 38 · Page 3 of 3
Quote Originally Posted by B1ackAnge1 View Post
To a Point (on Code-Monkey Level) this is true; i.e. you will NEVER learn any decent level of programming if all you do is read, and never put what you read into practice. You HAVE to actually do the work for it to 'stick'..

However, when you expand into more complex software architecture (e.g. more than the 1 Class / 3 function crap you see all over this site) you better read (whether that be on paper on digital is up to you) & study things like Design Patterns - Half the time (or more) the design aspect is not even dealing with a computer but about abstract relational concepts that only down the line get turned into code by previously mentioned code-monkey based on spec/design by the architect.

Besides, a lot of people like to read up on things when they're NOT behind a computer (e.g. commuting or whatever) so that next time they have a clearer picture in their head of what to do/try/learn next.
I thought you were meant to learn this too :/

You know.. like when you make a gigantor 10000 line file of code and wonder if there is a better way? Who wants to maintain that?!

In my inexperienced and childlike opinion, proper design is paramount - it's probably more important than the actual coding itself. It's something that I see many coders (not just the CA section, but some uni grads) don't seem to understand (and thus agree with). But then again I have a fucked up way of seeing things, not having read from books :/
Whether you get info from a book or from the internet, info is info, and you won't get anywhere without using it. Books are just the same info on the ********* in a specific order and together.
Quote Originally Posted by Auxilium View Post
Whether you get info from a book or from the internet, info is info, and you won't get anywhere without using it. Books are just the same info on the ********* in a specific order and together.
I'll use my example of a tradie skill again. If "info is info", then you're better off reading a book than learning from an experienced bricklayer how to build a house?

Information is indeed information (duh), but being spoonfed the obvious is different to Googling what you don't know, and exploring things yourself, which you will consequently remember for much longer (and usually more in depth).
Quote Originally Posted by freedompeace View Post


I'll use my example of a tradie skill again. If "info is info", then you're better off reading a book than learning from an experienced bricklayer how to build a house?

Information is indeed information (duh), but being spoonfed the obvious is different to Googling what you don't know, and exploring things yourself, which you will consequently remember for much longer (and usually more in depth).
You could explore the things you learned in the book? For example, let us say that Book A briefly talks about array, basic decelerations and initialization, and tells us to start from 0 and not go over the bounds. The person can explore himself though.

What if I only init part of the array?
What if i go over the bounds even though i shouldn't?
What if in my string the last value in the array isn't a null char?
How can i find the amount of x in the Array?

It's up to them to explore
Quote Originally Posted by Auxilium View Post


You could explore the things you learned in the book? For example, let us say that Book A briefly talks about array, basic decelerations and initialization, and tells us to start from 0 and not go over the bounds. The person can explore himself though.

What if I only init part of the array?
What if i go over the bounds even though i shouldn't?
What if in my string the last value in the array isn't a null char?
How can i find the amount of x in the Array?

It's up to them to explore
Erm, why would you buy a book for that? :/

End of discussion for me. Too spammy lol
Every "trade" is refined with age and practice. Does this mean books have no place at all? That they are now irrelevant? Absolutely not. A book gives comprehensive, convenient, and reliable information, something that the internet cannot provide entirely.
Quote Originally Posted by freedompeace View Post
spoonfed vs Googling what you don't know, and exploring things yourself, which you will consequently remember for much longer (and usually more in depth).
Philosophical question of the day: How would one know that they don't know something if they may not even know 'it' exists?
Is it better to learn & be told how to swim in the kiddie-pool first or find yourself in the deep-end to realize you didn't know how to swim?

Warning - long ramble ahead

Ok It seems the above quote holds the crutch of the issue (which is 90% absolutely true, but implies 1 incorrect thing):

Books & Google are both information, & you read from either
Trying it out = 'practice'/hands on, you do with both...
It seems like some people incorrectly assume if you have a book, you only read it and that's it (or only do what the book says & nothing more - THAT would be the hallmark of a bad or mediocre programmer *)

I think people here are getting their panties in a bunch over book-only, vs practice & self re-search as if one excludes the other (only for retards) or reading something on google/msdn from scratch is somehow that much different than having a book with a preset chapter list.

It's like people say practically the same thing, but they don't understand they are so they keep nitpicking at eachother...

In reality most people read up a subject of their interest (or 'lesson plan'/chapter list) from wherever, then try it out etc, so you do both.. nothing to try out if you didn't read something new somewhere to try out.
(e.g. Go do some programming with Linq, but don't read up anything in any book or help file or even online article so don't google anything.. As you can guess that probably won't work so well... )

Books Alone without practice = never going to work, 'Trying stuff' from scratch - how would you even know what to try out if you didn't find something to read up on first? Oh google first? that's no different then, than reading a book on the subject. Otherwise you just end up like all the retards on the C++ forum who copy & paste code, hit compile and then are shocked it doesn't work & can't figure out why even though the error message tells them exactly where the error is...

Books or Guides, or online tutorials etc all are there to give structured guidance so you can build up your skill set, vs just trying to figure stuff out randomly one function at a time how to do something which gets frustrating for person trying it, and the people trying to help them. (just hang out on the C++ forum.. you see it all the time...). And no matter WHAT method you use, I would assume you ALWAYS try out new things & research more than what's spelled out for you - at least any decent developer would!

* Small anecdote : Back in College everyone had the same 'theory' classes and the same 'practical' classes in C++ software dev.. but some people still failed, while others excelled.. difference (besides obvious talent ) was the people who excelled were the ones who actually 'explored' things, and went 'beyond' the 1,2,3,4 instructional steps from the books and tried out 'new' things, figured stuff out on their own going PAST what was in the books. And yes like freedompeace absolutely correctly points out that stuff stays with you MUCH longer than just reading a chapter & typing it out once.

I personally always took whatever I was learning and tried to write programs around those concepts that integrated a lot of what I was learning or doing at the time & make it relevant to some of my interests, hobbies etc. It's always better to actually care about what you're working on which will keep you motivated vs having some generic app that does absolutely nothing besides one function. Say you like playing guitar & are learning about databases - write a chord-database app. Doing graphical work? Do something that shows scales on a fretboard etc.

A Book (or any type of compiled resource like an online tutorial collection) can provide structure and make you think about things you may have never thought about (or never considered exploring on your own before). It makes sure you have a broad technical base to pull from vs some of the self-taught people who are amazing at 1 thing, but put them on any other task and they'd be stumbling all over because they're so stuck in their own little box because they never even considered alternative ways of doing things, or broadening their skill sets.

In the end it's WWFY - Whatever Works For You, as long as you're not just some copy/paster who thinks they're some awesome programmer... I always have to laugh when I talk to or interview people who claim they've 'totally mastered' a language and then can't answer basic questions about it because they can't write anything from scratch (or lack any skills in huge subsets - e.g. anyone thinking they "Mastered" C++ on windows? I would at minimum assume you know everything about Win32, MFC, WTL, STL, ATL, COM, DAO etc etc and could do them in your sleep) .

I personally enjoy reading a book on the couch and then later on trying those things out WITHOUT any reference - Good brain training (then again - figuring stuff out without any docs is sorta my thing, right why? - where is that slacker anyway...)
Posts 3138 of 38 · Page 3 of 3

Post a Reply

Tags for this Thread

None

Need help?