|
|
|
|
|
by lispylol
4426 days ago
|
|
Nice! I wonder if interactive programming might end up encouraging a trial and error approach to coding which can be a very bad habit. Just a minor tip: I feel like you spend way too much time typing in the demo. You should just copy and paste the changes you want to make ahead of time. |
|
It didn't take me long to realize that just because I could do something like (for example) `view.attributes.blah = "something"` it wasn't how you're supposed to do it (`view.set("blah", "something")`).
As a beginner, you're really just trying to make shit work. And it's fine to do stupid things, you'll learn the errors of your ways later on. The most important thing is that you have the means to learn rapidly.
You say trial and error approach, but I'd call it experimental approach. And this is good. The bad habit is never growing beyond that.