Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
5answers
2k views

Simple/Direct/Heredoc way of constructing a HTML string in Java

In python I can construct a HTML string without worrying about escaping special characters like < or " by simply enclosing the string in triple quotes like: html_string = """ <html> ...
8
votes
2answers
107 views

Android: automatically make variables for all IDs in xml

I noticed one of the most tedious parts of Android development is the layout design, even with layout builder. After setting up the graphics, then the layout, making variable associations with the ...
8
votes
2answers
7k views

How to normalize a NumPy array in Python?

After doing some processing on an audio or image array, it needs to be normalized within a range before it can be written back to a file. This can be done like so: # Normalize audio channels to ...
4
votes
4answers
1k views

Memory Usage on convenience method vs init method

Recently when I looked into iPhone memory management, I tried to compare the convenience method and init method on the same object. For example, I have UIImageView where it displays a downloaded ...
3
votes
5answers
140 views

Is there a better way to handle passing in multiple parameters to methods

I find myself doing the following a lot: /** * Redirect to a MVC controller&action * @param controller * @param action */ public void redirect(String controller, String action) { ...
3
votes
2answers
1k views

What is the definition of Convenience Method in regards to Objective C?

In most languages I have dealt with, one something is called a convenience method, it means that the method does some small task that gets done very frequently, and therefore it is more convenient to ...
1
vote
4answers
128 views

On lazy instantiation and convenience methods

Assume you have a Singleton Constants class, instance of which you'd like to use throughout your application. In someClass, therefore we can reference [Constants instance] someCleverConstant]; ...
1
vote
4answers
855 views

Dealing with objects returned from cocoa convenience methods

I'm having a lot of issues with NSDate objects being prematurely deallocated. I suspect that the issues may be related to the way that I deal with the objects returned from NSDate convenience methods. ...
0
votes
2answers
51 views

Temporary Modified Environment during External Process Call from Emacs

Is there a convenient and functional (with-...-like) way of temporary modifying environment variables when using shell-comand or start-process? Thanks in advance, Per
0
votes
2answers
342 views

Memory management in iOS / ManagedObjectContext

Looks like I did not understand memory management in Objective C... sigh. I have the following code (note that in my case, placemark.thoroughfare and placemark.subThoroughfare are both filled with ...
0
votes
5answers
136 views

Class design: allow a class to be used both as an object and also supply public static methods

I have a silly, little class "FileSystemSize" which can be used both as an object and also via public, static methods. The output is similar, but not identical in each case. The class was intially ...
0
votes
1answer
52 views

Is it possible to type style sheets in Firebug fast and convenient ? (as in Aptana)

For example, when I type the first of the parenthesis in Aptana, the second appears immediately, then I need only to press enter, it makes some white space, and I can type further. A small feature ...