Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
2k views

Retroactive svn import into git

Here is my problem: I used Subversion for some time, until I switched to Git. Some more time elapsed. There was no import of the history from Subversion to Git. It was a strict checkout, delete of ...
2
votes
2answers
74 views

How to adapt C++ lambdas to a sink interface such as back_inserter et al

I would like to know if its possible without having to define an extra class, if a lambda can be adapted to act as a sink. For example we currently can do the following: std::vector<int> ilst; ...
2
votes
1answer
439 views

Can Eclipse indent new line with 1 tab after JavaScript array initializer?

I'm using Eclipse to edit JavaScript files and I guess I'm "doing it wrong". Given the following code, where » represents a tab, · represents a space, and | represents the cursor: function·foo()·{ ...
1
vote
0answers
285 views

Android application reloading with corrupted UI

I wrote an Android application with a UI based on the tab host, consisting of 3 tabs. Each tab consists of some UI elements, mainly text & image views. The problem I'm experiencing is as follows: ...
1
vote
4answers
625 views

Java Generic voodoo has me stumped

I'm wanting to write a method that I can use to initialise a Map. First cut: Map map(Object ... o) {for (int i = 0; i < o.length; i+=2){result.put(o[i], o[i+1])}} Simple, but not type-safe. ...