Tagged Questions
2
votes
2answers
108 views
Python class review - wiki api getter
First, I know there are other Python wiki API classes out there. I'm writing this one because I don't need all the bells and whistles, no edits, no talks, etc. I just need to be able to search for ...
2
votes
0answers
46 views
Word problem solver in applescript — a mess
I'm having a difficult time creating functions. I can't really encapsulate code because it's used all over the place, and needs to be refactored. However, this is a complete rewrite from my old ...
0
votes
1answer
110 views
What if any design issues are there in this method of loading configuration data from YAML in Ruby?
I am actually pretty excited about this approach, but for sanity's sake I wanted to hear some thoughts on others on my strategy here. My basic goal is to parse a YAML file and recursively create ...
1
vote
1answer
175 views
What is a better practice and easier to understand in this case? [closed]
What will be better, when writing a library - if the method returns an array of objects, or method returns a list of objects?
I.E.:
Row[] selectFromDb();
List<Row> selectFromDb();
What will ...