Earlier quoted context omitted.
also it doesn't help that java is staggeringly inconsistent. Even something as simple as getting the size/length of something in the core Java API is inconsistent: array.length string.length() arrayList.size() awesome. How could I not remember that. And how about number type conversions? Interger.parseInt Interget.toString BigInteger.valueOf oh yeah, common sense. verses something like ruby 7.toString "7".toInt A san…
> ...verses something like ruby 7.toString "7".toInt do you mean... 7.to_s # Convert to string '7'.to_i # Convert to number
Flavors of programming ...
11–17 of 17 posts
Re: Flavors of programming ...
#12Edit: by the way, do you actually use APL/J/K in the way you mentioned? I really like that paradigm. I think it deserves a place alongside OO and the others as a fundamentally different approach to programming. However, I haven't used it nearly enough.
Edit 2: I would distinguish two different kinds of Data Munging. One is Data Transformation, where you have data in some original context and it needs to go through a series of transformations or passes until you've extracted or computed what's suitable for your problem. That is way fun. The other type, though, sucks rocks. I call it Meat Grinding. That's when you have the exact data you need in a form that you can't use because of some purely technical limitation. A common example is you have data in a database or a DTO when what your code need is a domain object, so you have to copy the properties over like this:
myStupidObject.CustomerName = stupidDataObject.CustomerName
This isn't so much a programming problem as an integration one. (You sort of touch on it at the end.) It's also one of the worst things about programming in less powerful languages where you can't easily write a program to do the gruntwork for you.Edit 3: I'd also argue that your "API spelunking" nightmare is at its nastiest in OO systems. In poorly designed pre-OO APIs (like Win32), it might take a long time to figure out how to call a function or what to do next; there might have been some ugly one-off struct you had to populate, etc.; but at least you didn't have to figure out how the hell to make a Bar out of a Foo so you can pass it as the third argument to Baz, when neither Foo nor Bar has anything to do with your problem. But with poorly designed OO APIs, these absurd hurdles seem endless. I used to compensate for this by studying such code archaeologically (if I couldn't avoid it altogether), in order to learn how the absurdities had arisen over time. This was a way to escape Dostoevsky's definition of the easiest way to drive a man insane: make him move a pile of dirt from one end of a prison yard to another and then move it back.
Re: Flavors of programming ...
#13Earlier quoted context omitted.
It's actually quite painful to realize when you look at your last 10 projects or so and you find that indeed almost all you've done can be reduced to these few categories. My pet peeve about java is that I have to use an IDE to work with it because of all the APIs there are so many of them that I can't seem to remember all the function names and parameter sequences. An IDE is like a crutch, you use if for a bit and t…
also it doesn't help that java is staggeringly inconsistent. Even something as simple as getting the size/length of something in the core Java API is inconsistent: array.length string.length() arrayList.size() awesome. How could I not remember that. And how about number type conversions? Interger.parseInt Interget.toString BigInteger.valueOf oh yeah, common sense. verses something like ruby 7.toString "7".toInt A san…
Re: Flavors of programming ...
#14at first i thought this would be good. data munging is definitely a time of programming that occurs. but then the list just gets ridiculous, almost poking fun at the different jobs one might do. more importantly, real tasks are left off. i flagged this submission for being boring.
Re: Flavors of programming ...
#15For me a lot of more complicated UI design is like this, I have objects representing each part of the interface and spend a lot of time sending messages between objects and figuring out how to handle user events. I guess the focus isn't so much on algorithms or if-statements so much as high-level architecture.
Re: Flavors of programming ...
#16I find it interesting that you (implicitly) like Data Munging better than Clever Algorithms. I agree that the former is orders of magnitude more common. I haven't encountered a Clever Algorithms problem very often at all on commercial projects. My current project is an outlier insofar as we've been doing algorithmic work for months. It's fun, in the way any good hacker would expect such a challenge to be, but it's al…
Re: Flavors of programming ...
#17I find it interesting that you (implicitly) like Data Munging better than Clever Algorithms. I agree that the former is orders of magnitude more common. I haven't encountered a Clever Algorithms problem very often at all on commercial projects. My current project is an outlier insofar as we've been doing algorithmic work for months. It's fun, in the way any good hacker would expect such a challenge to be, but it's al…
I understand your use of the pronoun "you", but it's not me. I work almost exclusively on algorithmic stuff, and when I do work on data munging it's the direct application of algorithms just developed. So I'm lucky.