andrewducker (
andrewducker) wrote2011-09-19 09:39 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
How I learn things
I learn by doing.
Give me something _simple_ that works, and let me play with it.
Then add another simple thing to it, and let me play with that.
Slowly build up the different levels, until I have something that is functional, and useful.
I mention this, because I'm grappling with the Velocity template tool* at the moment. And the documentation is shit, and in a particularly strange way.
Firstly, the documentation isn't on the actual website. Which means that you can't have a three minute scan before you decide if it's what you want, you have to actually download it, unzip it, and then look in the docs folder. This is not a great start.
Then, when I start looking at the User Guide it works in _exactly_ the way I want - if you're the person writing the web pages. It does exactly what I want - start off with a simple "Hello World" example, and then build up from there into something useful.
It wasn't until I'd read that all the way through that I realised that it hadn't provided anything useful for setting it up in the first place. So I skip to the Developer Guide, and the first part is "The Fundamental Pattern". Except that that doesn't start me off with a "Hello World" example, but instead starts telling me what abstract steps I need to carry out, and then hits me with the choice of whether to use the Singleton Model or Seperate Instance.
And if you're baffled by that, then you're not alone. The people writing the documentation clearly think that the best way to learn is to feed you all of the abstract information about the design of the system up front, and then once you understand it all perfectly you'll be able to write whatever you want. And I just don't learn that way.
What frustrates me is that the way I learn is clearly not unusual. Every single computer game follows the model I laid out at the top. Learn a simple move/technique, use it to solve a problem. Learn a second technique, use it to solve another problem. Solve a problem that combines technique one and two at the same time. Learn a third technique, and so on.
I really don't understand why more people don't get it.
*Take some HTML, mix in some data, throw it at the browser. I didn't like JSP very much, because it has the code in the middle of the html, and I'd rather keep them separate if I can.
Give me something _simple_ that works, and let me play with it.
Then add another simple thing to it, and let me play with that.
Slowly build up the different levels, until I have something that is functional, and useful.
I mention this, because I'm grappling with the Velocity template tool* at the moment. And the documentation is shit, and in a particularly strange way.
Firstly, the documentation isn't on the actual website. Which means that you can't have a three minute scan before you decide if it's what you want, you have to actually download it, unzip it, and then look in the docs folder. This is not a great start.
Then, when I start looking at the User Guide it works in _exactly_ the way I want - if you're the person writing the web pages. It does exactly what I want - start off with a simple "Hello World" example, and then build up from there into something useful.
It wasn't until I'd read that all the way through that I realised that it hadn't provided anything useful for setting it up in the first place. So I skip to the Developer Guide, and the first part is "The Fundamental Pattern". Except that that doesn't start me off with a "Hello World" example, but instead starts telling me what abstract steps I need to carry out, and then hits me with the choice of whether to use the Singleton Model or Seperate Instance.
And if you're baffled by that, then you're not alone. The people writing the documentation clearly think that the best way to learn is to feed you all of the abstract information about the design of the system up front, and then once you understand it all perfectly you'll be able to write whatever you want. And I just don't learn that way.
What frustrates me is that the way I learn is clearly not unusual. Every single computer game follows the model I laid out at the top. Learn a simple move/technique, use it to solve a problem. Learn a second technique, use it to solve another problem. Solve a problem that combines technique one and two at the same time. Learn a third technique, and so on.
I really don't understand why more people don't get it.
*Take some HTML, mix in some data, throw it at the browser. I didn't like JSP very much, because it has the code in the middle of the html, and I'd rather keep them separate if I can.
no subject
Compare with the rewards for writing open-source software.
no subject
no subject
no subject
As long as I can see or intuit a natural link between a process and a result, I learn very quickly. When a term or unexplained symbol[ism] comes in the middle, I'm totally lost.
this, I believe, is why I find coding virtually impossible. Just as the word 'log' entirely obscures my understanding of logarithms - literally, the word being there makes it extremely difficult for me to process the maths and understand what it wants me to do.
similarly, the epic frustration I had in civil eng was the EU notation, where *everything* is a letter followed by a partial word. I can't process that. _even if I know what it means_
coding consists almost entirely of such abstractions
no subject
It depends on the language. REBOL is very wordy...
http://www.rebol.com/docs/reference.html
And the few abbreviated words could be replaced with whatever you want. ie. logarithm-e for log-e. (Or natural-number-logarithm, or whatever.)
Unfortunately REBOL's in a state of flux at the moment, but usable if you don't mind a few rough edges.
no subject
e.g. I learned set theory before I took up databases - and I do think it helped (and continues to help) me avoid some common pitfalls (but don't actually ask me to hold forth on set theory 20-odd years later!)
BUT... I am aware that most people are much more concrete thinkers who need concrete examples upfront, and that names matter - which is why I have to really concentrate and think if I want to teach or explain.
no subject
no subject
no subject
no subject
I suspect the reason for the documentation you describe is not that the writers don't "get it" but that they simply don't have time. While we all know that documentation is important, given limited time, poor documentation of working code is better than great documentation of non-working code.
no subject
no subject
no subject
And that's something I find a lot easier when I'm operating inductively rather than deductively.
no subject
It also depends on your existing set of concepts I suppose. Someone with a firmer grounding in databases would likely have "got" MVC frameworks faster than I did.