User krosenvold - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T21:45:17Z http://stackoverflow.com/feeds/user/23691 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1824366/how-to-handle-widespread-code-format-changes-in-a-git-repository/1825045#1825045 -1 Answer by krosenvold for How to handle widespread code format changes in a git repository krosenvold 2009-12-01T09:34:13Z 2009-12-01T09:34:13Z <p>You will also need a mergetool that allows agressive ignoring of whitespace. p4merge does this, and is freely downloadable.</p> http://stackoverflow.com/questions/427659/going-bananas-with-loose-coupling-and-dependency-injection 7 Going bananas with loose coupling and dependency injection. krosenvold 2009-01-09T10:45:32Z 2009-11-27T06:59:54Z <p>With the latest additions to our dependency injection framework (annotations in spring), the marginal cost of creating DI-managed components seems to have hit some critical new threshold. While there previously was an overhead associated with spring (tons of XML and additional indirections), dependency injection seems to have started going where lots of patterns go; they go under the hood and "disappear".</p> <p>The consequence of this is that the conceptual overhead associated with a <a href="http://www4.java.no/web/show.do?page=205" rel="nofollow"><em>large number</em></a> of components becomes acceptable. It's arguable that we could make a system where most classes only expose one single public method and build the whole system by just aggregating these pieces like crazy. In our case a few things are given; the user interface of your application has some functional requirements that shape the topmost services. And the back-end systems control the lower part. But in between these two, everything is up for grabs.</p> <p>Our constant discussion is really <em>why are we grouping things in classes</em> and <em>what should the principles be</em> ? A couple of things are certain; the facade pattern is dead and buried. Any service containing multiple unrelated features also tend to get split up. "Unrelated feature" is interpreted in an extremely much stricter sense than I have ever done earlier. </p> <p>In our team there are two prevailing trains of thought here: Implementation dependencies restrict grouping; any functionality in a single class should preferably be a client of <em>all</em> injected dependencies. We are a DDD project and the other fraction thinks the domain restricts grouping (CustomerService or finer grained CustomerProductService, CustomerOrderService) - normalized usage of injected dependencies is unimportant.</p> <p>So in the loosely coupled DI universe, why are we grouping logic in classes ? </p> <p>edit: duffymo point out that this may be moving towards a functional style of programming; which brings up the issue of state. We have quite a few "State" objects that represent (small) pieces of relevant application state. We inject these into any service that has a legitimate need for this state. (The reason we use "State" objects instead of regular domain objects is that spring construct these at an unspecified time. I see this as a slight workaround or alternate solution to letting spring manage the actual creation of domain objects. There may be better solutions here).</p> <p>So for instance any service that needs OrderSystemAccessControlState can just inject this, and the scope of this data is not readily known to the consumer. Some of the security-relate state is typically used at a lot of different levels but totally invisible on the levels in-between. I really think this violates fundamentally with functional principles. I even had a hard time adjusting to this concept form an OO perspective - but as long as the injected state is precise and strongly type then the <em>need</em> is legit aka the use case is proper.</p> http://stackoverflow.com/questions/1781295/composite-pattern-simplified/1781317#1781317 1 Answer by krosenvold for Composite Pattern Simplified krosenvold 2009-11-23T05:52:29Z 2009-11-23T05:52:29Z <p>You're giving up any chance to subclass the "Leaf", if it turns out you have different types of "nodes" you'll probably end up polluting the structure in one way or another. And you're violating the single responsipbility priciple too. It is <em>very</em> easy to get pollution of all sorts with the composite pattern, and I think it always pays off to do it cleanly.</p> http://stackoverflow.com/questions/1751534/is-there-a-significance-in-merge-directions-between-upstream-topic-integration-in 1 Is there a significance in merge directions between upstream/topic/integration in git ? krosenvold 2009-11-17T20:27:25Z 2009-11-19T16:04:11Z <p>I have read the <a href="http://www.golden-gryphon.com/software/misc/packaging.html" rel="nofollow">Packaging Software using git</a> article until my eyes are sore, as I can see from <a href="http://www.golden-gryphon.com/software/misc/packaging.html" rel="nofollow">this image</a>, it recommends merging from upstream->topic branch->local integration branch.</p> <p>I am specifically interested in the scenario where there are conflicts between upstream branch and local integration branch. If I am at all reading the article correctly it says that If I merge upstream->local integration branch->topic, I will be in for trouble if the topic is already merged into local integration branch..?</p> <p>Ideally I would like to merge in any old direction I would find useful, but it seems like I'm setting myself up for some trouble if I do that? My head also starts hurting when I try to visualize commits on topic branches intertwined with commits from upstream, in different order on different branches. Someone should tell me not to care.</p> <p>Currently we are merging from upstream to anywhere we like, and I am unsure if this is an optimal solution in terms of reducing conflicts. It seems to me like git is having a hard time keeping track of a sensible common ancestor, and I suspect we are introducing criss-cross merge situations by merging this way? We are certainly having our fair share of conflicts, and it seems to me like the common ancestor I see in git mergetool is pointing at what (to me) looks like a very bad choice (but maybe correct). Is there any order of merging we should avoid, and why ?</p> <p>I'm still not sure I understand the pitfalls they are trying to describe in the article either....</p> http://stackoverflow.com/questions/1761479/how-to-output-option-selectedtrue-from-jspx 1 How to output <option selected="true"> from JSPX ? krosenvold 2009-11-19T07:21:04Z 2009-11-19T08:41:33Z <p>A few html tags interpret "any" value of a give attribute as "true" -> option tags come to mind. </p> <p>I frequently end up doing something like this:</p> <pre><code>&lt;c:choose&gt; &lt;c:when test="${isSelected}"/&gt; &lt;option selected="true"&gt;Opt1&lt;/option&gt; &lt;/c:when&gt; &lt;c:otherwise/&gt; &lt;option&gt;Opt1&lt;/option&gt; &lt;/c:otherwise&gt; &lt;/c:choose&gt; </code></pre> <p>I know I can declare a custom to encapslate this behaviour but <em>that</em> also gets pretty ugly, unless I code it in java. </p> <p>Is there a smarter way to do this ?</p> http://stackoverflow.com/questions/28235/should-i-be-doing-jspx-instead-of-jsp/1761500#1761500 1 Answer by krosenvold for Should I be doing JSPX instead of JSP? krosenvold 2009-11-19T07:25:49Z 2009-11-19T07:25:49Z <p>A totally different line of reasoning why you should use jspx instead of jsp:</p> <p>JSPX and EL makes including javascript and embedded java codes much harder and much less natural to do than jsp. EL is a language specifically tailored for presentation logic.</p> <p>All this pushes you towards a cleaner separation of UI rendering and other logic. The disadvantage of lots of embedded code within a JSP(X) page is that it's virtually impossible to test easily, whereas practicing this separation of concerns makes most of your logic fully unit-testable.</p> http://stackoverflow.com/questions/1741968/using-spring3-value-to-access-propertyplaceholderconfigurer-values 1 Using spring3 @Value to access PropertyPlaceholderConfigurer values ? krosenvold 2009-11-16T12:41:12Z 2009-11-16T16:40:47Z <p>I'm trying to set the value of a string in a spring bean using @Value, when my property source is a subclass of PropertyPlaceholderConfigurer. Anyone know how to do this ?</p> http://stackoverflow.com/questions/1720606/when-career-conflicts-with-company/1720625#1720625 2 Answer by krosenvold for When career conflicts with company krosenvold 2009-11-12T07:59:02Z 2009-11-12T07:59:02Z <p>I think affiliation with the absolutely latest and greatest in technology is normally not a very important concern when hiring people, unless you're really really far behind.</p> <p>Most companies don't <em>want</em> the cutting edge stuff anyway. </p> http://stackoverflow.com/questions/1681762/how-to-handle-xml-html-in-git-feature-branch-workflow 1 How to handle xml/html in git feature branch workflow ? krosenvold 2009-11-05T16:25:12Z 2009-11-06T22:37:40Z <p>Our project is working within fairly close quarters code-wise (a lot of changes happening in parallel in a fairly small geographical area of the code), and our feature branch based git workflow works out really nice for our java code. </p> <p>But the xml/html stuff is not working really well. Simple unrelated changes (a designer adding a surrounding div, a developer changing an id of an element within) gives really disasterous merges. </p> <p>I realize there may be several options on how to handle this. A good git xml merge would be optimal, or putting restrictions on reformatting of xml/html code another. Not working in such close quarters would be another (unacceptable) option. </p> <p>How do you solve this problem efficiently ?</p> http://stackoverflow.com/questions/1686061/branching-without-branches/1687007#1687007 0 Answer by krosenvold for Branching without branches krosenvold 2009-11-06T11:27:02Z 2009-11-06T11:27:02Z <p>You could conceivably mount the same submodule at different places in the directory tree, with different versions mounted. The filename would bethe same, but with different versions. I'm not sure I'd like to be the one maintaining that stuff, though. </p> http://stackoverflow.com/questions/1570535/guide-to-understanding-gitk 2 Guide to understanding gitk ? krosenvold 2009-10-15T05:59:45Z 2009-10-31T07:54:23Z <p>I am introducing git to a team of developers and i find gitk to be an amazing tool. It's also quite hard to understand, since understanding gitk requires an understanding of both git history and the viewer tool itself. </p> <p>Does anyone have any good references to something like a "beginner's guide to git history with gitk" ?</p> http://stackoverflow.com/questions/1642819/why-do-i-get-conflicts-with-git-rebase-p-i 2 Why do I get conflicts with git rebase -p -i ? krosenvold 2009-10-29T10:37:58Z 2009-10-31T03:21:09Z <p>I'm using </p> <pre><code> git rebase -p -i SHA1^ </code></pre> <p>And moving a single commit backwards in time to just after SHA1. The commit consists of a WAV file, so there's no way this is breaking my code.</p> <p>Seemingly unrelated files pop up in conflicts later in history. Why am I getting these conflicts during the rebase in this scenario? Isn't -p enough to keep the relationship to other parts of history intact ? There is something about rebasing I'm not catching totally here...</p> http://stackoverflow.com/questions/1635814/automatically-rewrite-full-git-history-to-get-rid-of-simple-merge-commits 3 Automatically rewrite full git history to get rid of simple merge commits krosenvold 2009-10-28T08:18:38Z 2009-10-28T12:08:05Z <p>Our team uses a purely merge-based git workflow, and we're discussing the possibility of just asking all team members to push all work to server one afternoon and do an evening of rebasing the server repo.</p> <p>The stuff we'd really like to rebase looks like this:</p> <p><img src="http://img30.imageshack.us/img30/3137/rebase3.png" alt="alt text" /> or <img src="http://img245.imageshack.us/img245/4923/rebase2.png" alt="alt text" /> or <img src="http://img202.imageshack.us/img202/2926/rebase1.png" alt="alt text" />.</p> <p>I (think) what I would like to do automatically is that as long as all the commits are only on the same set of branches AND the number of parallel commits are below a given threshold I would like to rebase the series and remove the merge commit(s). But I am open to suggestions ?</p> <p>Anyone know how to do this ?</p> http://stackoverflow.com/questions/1633940/whats-the-point-of-automated-integration-test-here/1634010#1634010 1 Answer by krosenvold for What's the point of automated integration test here? krosenvold 2009-10-27T22:26:14Z 2009-10-27T22:26:14Z <p>I think the biggest thing you're missing is the actual behaviour of your external systems. While your unit tests may certainly assert that the individual steps perform the expected action, they do little to reveal the run-time issues that may arise when accessing external systems. Your external systems may also contain data you do not know about.</p> <p>So yes, I think you need both. You do not necessarily need to be equally detailed in both tests. Sometimes you can just let the integration test be a smoke test</p> http://stackoverflow.com/questions/1603739/ssh-ksh-git-not-found/1603763#1603763 0 Answer by krosenvold for SSH - ksh: git: not found krosenvold 2009-10-21T21:24:46Z 2009-10-21T21:24:46Z <p>I had to add /usr/local/bin to my path in .profile for it to be picked up on solaris (and get git upload-pack to work). I always thought it was my boxes that were badly configured, but maybe not so... </p> http://stackoverflow.com/questions/1603373/performance-of-java-on-different-hardware/1603439#1603439 4 Answer by krosenvold for Performance of java on different hardware? krosenvold 2009-10-21T20:33:27Z 2009-10-21T21:06:25Z <pre><code>22:29:38,959 INFO [ServerImpl] JBoss (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221634)] Started in 17s:210ms java version: 1.7.0-ea OS: Ubuntu 9.10, 64bit Board: ASUS P6T Processor: Intel i7 920 @ 3.4Ghz RAM: 12GB DDR3 GPU: Dunno </code></pre> <p>With boring old sun-java 1.6.0_15-b03:</p> <pre><code>22:32:12,360 INFO [ServerImpl] JBoss (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221634)] Started in 18s:532m </code></pre> <p>I'm glad I can do my day-to-day work on jetty, which starts in about 4 seconds.</p> http://stackoverflow.com/questions/1601517/what-are-common-java-web-development-practices/1601580#1601580 3 Answer by krosenvold for What are common java web development practices? krosenvold 2009-10-21T15:20:54Z 2009-10-21T15:20:54Z <ol> <li><p>We always check out all the sourcecode we can get our hands on. Source code for external libraries, backend systems and the works. Reading code of backend systems makes it easier for frontend developers to understand what's going on. Backend developers sometimes read frontend code to see how things are actually being used. More code is a <em>good thing</em>. Maven also supports auto-downloading of source code, which is great.</p></li> <li><p>We use maven, and I really recommend it in a team environment. We deploy locally, on team centralized test servers and common acceptance environments. The closer to "home" you can test things, the cheaper and more efficient.</p></li> <li><p>We use selenium for a lot of testing that allows use to test "through the front" of a properly deployed webapp. Other than that, most of the integration tests that run parts of the stack run as regular junit tests within a maven profile.</p></li> </ol> http://stackoverflow.com/questions/1599953/idea-community-edition-versus-eclipse/1599978#1599978 3 Answer by krosenvold for IDEA Community Edition versus Eclipse krosenvold 2009-10-21T10:33:18Z 2009-10-21T11:20:14Z <p>The best, straight answer to this, is to look at the <a href="http://www.jetbrains.com/idea/nextversion/editions%5Fcomparison%5Fmatrix.html?utm%5Fsource=jetbrains.org&amp;utm%5Fmedium=Comparison&amp;utm%5Fcampaign=IDEA9%5FCE" rel="nofollow">feature matrix</a> of which features are still left in Ultimate-Edition. Eclipse probably has support for all of these things, although the quality of the integrations can always be an issue. </p> http://stackoverflow.com/questions/1596653/how-to-change-case-of-a-file-in-git-under-cygwin 0 How to change case of a file in git under cygwin ? krosenvold 2009-10-20T18:59:11Z 2009-10-20T22:23:25Z <p>We work in a mixed case sensitive/insensitive environment (cywgin/linux), and today someone created a small havoc in our workflow by renaming a file, changing an S to an s. This caused all sorts of interesting merge issues across branches, and to be quite honest no-one's entirely sure of what happened.</p> <p>What is the most appropriate way to change casing of a file under git for cygwin? I must stress that we <em>are</em> case sensitive and normally do this right - if it wasn't for that S.</p> http://stackoverflow.com/questions/1369784/how-to-test-jsp-tagextrainfo 0 How to test JSP TagExtraInfo ? krosenvold 2009-09-02T19:53:54Z 2009-10-20T13:03:51Z <p>I consistently have troubles getting my TagExtraInfo implementations to work properly. I have one implementation that works, and one that doesn't and I unable to see the difference between the two. And all the IDE's seem to have have "bugs/features" regarding this, which makes it hard to see where the problem actually is.</p> <p>The relationship between a TagExtraInfo and a jsp tag should be reasonably well-defined, and I assuming I should be able to get some kind of compliance-testing software. Anyone know anything like this ?</p> http://stackoverflow.com/questions/1584915/java-expected-overhead-of-the-rmi-protocol/1584938#1584938 2 Answer by krosenvold for Java: Expected overhead of the rmi protocol krosenvold 2009-10-18T13:50:08Z 2009-10-18T18:56:35Z <p>No, the overhead of RMI is not that large. Your requests would typically have to be very big or your network really slow for that kind of response time.</p> http://stackoverflow.com/questions/1584276/can-dependency-injection-delay-creating-objects-required/1584297#1584297 0 Answer by krosenvold for Can Dependency Injection delay creating objects required? krosenvold 2009-10-18T07:53:06Z 2009-10-18T07:53:06Z <p>All di frameworks that support singleton->session/request scoped mappings typically instantiate a proxy object instead of the "real" object when a singleton object needs to access a session scoped object. Construction of the "real" instance is normally deferred to the first time a method on the proxy is invoked.</p> <p>I believe castle windsor supports this mechanism.</p> http://stackoverflow.com/questions/317046/why-doesnt-your-company-contribute-back-to-open-source 8 Why doesn't your company contribute back to open source? krosenvold 2008-11-25T11:19:49Z 2009-10-06T08:08:44Z <p>Contributing to open source can have many forms: working with issue trackers, patches, further development, documenting, funding, etc. Assuming your company uses open source projects, what is the single most important reason why you're not contributing back to the community?</p> http://stackoverflow.com/questions/1491001/what-are-the-practical-consequences-of-rewriting-git-history 4 What are the practical consequences of rewriting GIT history ? krosenvold 2009-09-29T07:02:05Z 2009-09-29T07:08:58Z <p>Our project has been using git for a week or so now, and we're all enjoying it a lot (usíng it in a tight collaborative group turns out to be quite a different git experience). To keep things as simple as possible, we do not do any rebasing or history modifications. But we did make a few mistakes in the first week. A few commits were made that shouldn't have been done, and we managed to merge a feature branch into the wrong integration branch (1.1 instead of 1.0). And we didn't find out about these things until they were long into our history.</p> <p>Now I see a lot of warnings about rewriting history, but I'm not really sure I understand the dangers involved. We use a shared bare repository, and all branches are pushed there for backup.</p> <p>I would expect that if you rewrite history (say remove a commit), the full list of subsequent commits will "loose" that commit (and maybe not compile/work). I would also expect that if this happens I could actually choose to fix this at the top of history (and just leave that part of history as non-compiling).</p> <ul> <li>If I rewrite history (and everything compiles/works in all affected branches), will my co-workers need to do any special commands (i.e. will they "know that I have done it" if I did it well?)?</li> <li>Will any users with local changes that I do not know about be eligible for merge failures on git pull ?</li> <li>Am I missing anything essential here ?</li> </ul> <p>Any references to articles/tutorials on this subject would also be really nice.</p> http://stackoverflow.com/questions/1461909/evil-merges-in-git 3 Evil merges in git ? krosenvold 2009-09-22T18:48:25Z 2009-09-23T08:31:59Z <p>"man <a href="http://www.kernel.org/pub/software/scm/git/docs/gitglossary.html" rel="nofollow" title="gitglossary - A GIT Glossary">gitglossary</a>" contains this definition of an <em>evil merge</em>:</p> <blockquote> <p>An evil merge is a merge that introduces changes that do not appear in any parent.</p> </blockquote> <p>I am not sure I understand the point the authors are trying to get at. Why is it evil ?</p> http://stackoverflow.com/questions/1449096/how-could-we-fool-the-http-protocol/1449111#1449111 2 Answer by krosenvold for How could we fool the HTTP protocol? krosenvold 2009-09-19T18:01:34Z 2009-09-19T18:01:34Z <p><a href="http://dev.w3.org/html5/websockets/" rel="nofollow">WebSockets</a> are coming in HTML5 and should suit your needs. A standard HTTP connection can be renegotiated to change protocol to websockets. But I suspect the specification might be a bit young, but it might fit the bill.</p> http://stackoverflow.com/questions/1448620/getting-a-value-from-spring-config-file-directly/1448672#1448672 2 Answer by krosenvold for Getting a value from Spring config file directly krosenvold 2009-09-19T14:38:37Z 2009-09-19T14:43:49Z <p>You <em>don't</em> do this with spring.</p> <p>Spring will provide your beans with configuration and other beans, it is not intended to be used for providing this kind of logic. someMap.get is the way this works, or just inject the appropriate fruit straight into your bean.</p> http://stackoverflow.com/questions/1445202/techniques-for-assessing-team-test-confidence 3 Techniques for assessing team test confidence ? krosenvold 2009-09-18T15:16:54Z 2009-09-19T04:38:49Z <p>I am trying to determine what level of confidence my development team has in our automated test base (unit, integration, webtest). I would optimally like to get sensible answers to questions like:</p> <ul> <li>What refactorings do you expect to be covered/not covered by tests ?</li> <li>Would you trust a green build to auto-deploy for acceptance test environment ?</li> <li>Would you trust a green build to auto-deploy directly to production ?</li> </ul> <p>I was hoping there were some pre-existing metrics and possibly questionnaires I could use to explore this area. My goal would be to increase the level of automated deployments, but I really only believe we can automate things the developers trust/believe in.</p> <p>Anyone know any techniques to explore this ?</p> http://stackoverflow.com/questions/1057564/pretty-git-branch-graphs 7 Pretty git branch graphs krosenvold 2009-06-29T10:12:28Z 2009-09-11T12:52:26Z <p>I've seen some books and articles have some really pretty looking graphs of git branches and commits. Is there any tool that can make high-quality printable images of git history?</p> http://stackoverflow.com/questions/1381965/spring-security-child-thread-context/1385079#1385079 1 Answer by krosenvold for Spring Security Child Thread Context krosenvold 2009-09-06T07:05:44Z 2009-09-06T07:05:44Z <p>We usually do the following: In the initial spring-managed thread do</p> <pre><code>Locale locale = LocaleContextHolder.getLocale(); RequestAttributes ra = RequestContextHolder.getRequestAttributes(); </code></pre> <p>Now you need to put those two values somewhere your new thread can find them. Then you do:</p> <pre><code> LocaleContextHolder.setLocale( locale, true); RequestContextHolder.setRequestAttributes( ra, true); </code></pre> <p>In your new thread. Although I'm not sure if this is the supported method, it's always worked well.</p> http://stackoverflow.com/questions/1838261/java-adding-values-to-a-map-by-multiple-threads-is-it-possible/1838303#1838303 Comment by krosenvold on java: adding values to a map by multiple threads (is it possible ?) krosenvold 2009-12-03T08:09:39Z 2009-12-03T08:09:39Z You should read <a href="http://mailinator.blogspot.com/2009/06/beautiful-race-condition.html" rel="nofollow">mailinator.blogspot.com/2009/06/&hellip;</a> to see how bad it can really get ;) http://stackoverflow.com/questions/1824366/how-to-handle-widespread-code-format-changes-in-a-git-repository/1825045#1825045 Comment by krosenvold on How to handle widespread code format changes in a git repository krosenvold 2009-12-02T08:04:19Z 2009-12-02T08:04:19Z Thanks for the downvote; I'd be curious to know why ? http://stackoverflow.com/questions/1828874/generating-statistics-from-git-repository Comment by krosenvold on Generating statistics from Git repository krosenvold 2009-12-02T08:03:10Z 2009-12-02T08:03:10Z He who commits the most line of code can be both your best and your worst programmer. Maybe your best programmer rebases a lot ? http://stackoverflow.com/questions/1781295/composite-pattern-simplified/1781317#1781317 Comment by krosenvold on Composite Pattern Simplified krosenvold 2009-11-23T19:40:24Z 2009-11-23T19:40:24Z To me it looks like you're not separating tree structure from tree data. Composite is a quite dangerous design pattern because it has a tendency to lure you to put everything into the tree and the nodes, even quite a lot of things that shouldn't be there. Its nice &amp; elegeant, but can also get messy if you put too many different kinds of logic/information into the same view. The &quot;pollution&quot; occurs every time you add a specical case to the tree. http://stackoverflow.com/questions/1761479/how-to-output-option-selectedtrue-from-jspx/1761790#1761790 Comment by krosenvold on How to output <option selected="true"> from JSPX ? krosenvold 2009-11-19T18:44:17Z 2009-11-19T18:44:17Z Nice answer, shame it doesn't work here. What version of jspx does this for you ? Are you sure this isn't jsp ? http://stackoverflow.com/questions/1751534/is-there-a-significance-in-merge-directions-between-upstream-topic-integration-in/1764180#1764180 Comment by krosenvold on Is there a significance in merge directions between upstream/topic/integration in git ? krosenvold 2009-11-19T18:31:22Z 2009-11-19T18:31:22Z Man, I thought I had read just about all the questions on git here at StackOverflow but I had missed those first two. http://stackoverflow.com/questions/1681762/how-to-handle-xml-html-in-git-feature-branch-workflow/1690981#1690981 Comment by krosenvold on How to handle xml/html in git feature branch workflow ? krosenvold 2009-11-08T10:41:00Z 2009-11-08T10:41:00Z I'm somehow thinking that a merge that simply ignores all kinds of leading/trailing whitespace (except linebreaks) would perform well enough. Do you know how I can achieve this ? http://stackoverflow.com/questions/1642819/why-do-i-get-conflicts-with-git-rebase-p-i/1653295#1653295 Comment by krosenvold on Why do I get conflicts with git rebase -p -i ? krosenvold 2009-10-31T18:55:42Z 2009-10-31T18:55:42Z So I'm moving the full committ and not just the diff COMMIT^..COMMIT ? http://stackoverflow.com/questions/1642819/why-do-i-get-conflicts-with-git-rebase-p-i/1653295#1653295 Comment by krosenvold on Why do I get conflicts with git rebase -p -i ? krosenvold 2009-10-31T18:44:00Z 2009-10-31T18:44:00Z Do you mean to say that by trying to move a single pick 2000 commits back in time using rebase, I am actually moving the entire tree state backwards, not just the diff that the single commit creates ? That would explain things http://stackoverflow.com/questions/1641015/how-to-cope-with-rejected-on-git-push Comment by krosenvold on How to cope with "rejected" on git push? krosenvold 2009-10-29T08:18:45Z 2009-10-29T08:18:45Z You <i>Are</i> aware that your master branch is successfully pushed in the example you show ? http://stackoverflow.com/questions/1633940/whats-the-point-of-automated-integration-test-here/1634010#1634010 Comment by krosenvold on What's the point of automated integration test here? krosenvold 2009-10-28T14:48:33Z 2009-10-28T14:48:33Z Yes, or very superficial tests http://stackoverflow.com/questions/1635814/automatically-rewrite-full-git-history-to-get-rid-of-simple-merge-commits/1635991#1635991 Comment by krosenvold on Automatically rewrite full git history to get rid of simple merge commits krosenvold 2009-10-28T09:26:59Z 2009-10-28T09:26:59Z +1 for good focus - &quot;reality bites&quot;. Git provides such a huge toolspace and so many options, it can be hard to know what's smart and what's not. I'm a firm believer in not creating work for work's sake, so I'll probably stick with your advice. http://stackoverflow.com/questions/457927/git-workflow-and-rebase-vs-merge-questions/458827#458827 Comment by krosenvold on git workflow and rebase vs merge questions krosenvold 2009-10-27T14:28:46Z 2009-10-27T14:28:46Z You are implying that the OP has some undiscovered rebase or mistake in his process, right ? http://stackoverflow.com/questions/1599953/idea-community-edition-versus-eclipse/1599978#1599978 Comment by krosenvold on IDEA Community Edition versus Eclipse krosenvold 2009-10-21T11:20:47Z 2009-10-21T11:20:47Z That was actually the SO &quot;url&quot; box truncating my url. hacked the source ;) http://stackoverflow.com/questions/1584915/java-expected-overhead-of-the-rmi-protocol/1584938#1584938 Comment by krosenvold on Java: Expected overhead of the rmi protocol krosenvold 2009-10-18T14:22:55Z 2009-10-18T14:22:55Z It's quite common for there to be a lot of wireless networks interfering with each other, so if you see a lot of networks in your vincinity that may be giving you really bad bandwith. The response time from &quot;ping&quot; may give you some indication of your actual network time from a to b. It's not RMI giving you those response times