krosenvold

17,050
Reputation
991 views

Registered User

Name krosenvold
Member for 1 year
Seen 9 hours ago
Website
Location Oslo, Norway
Age 40
Agile pragmatic programmer in C#, Java, Web-technologies.
Twitter
kristian rosenvold.com (spot the missing character to get a valid email address)
1d
awarded  Popular Question
Nov
23
comment Composite Pattern Simplified
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 & elegeant, but can also get messy if you put too many different kinds of logic/information into the same view. The "pollution" occurs every time you add a specical case to the tree.
Nov
23
answered Composite Pattern Simplified
Nov
19
comment How to output <option selected=”true”> from JSPX ?
Nice answer, shame it doesn't work here. What version of jspx does this for you ? Are you sure this isn't jsp ?
Nov
19
comment Is there a significance in merge directions between upstream/topic/integration in git ?
Man, I thought I had read just about all the questions on git here at StackOverflow but I had missed those first two.
Nov
19
answered Should I be doing JSPX instead of JSP?
Nov
19
asked How to output <option selected=”true”> from JSPX ?
Nov
18
revised moving commits from unrelated repository in git, git-p4
deleted 8 characters in body
Nov
17
asked Is there a significance in merge directions between upstream/topic/integration in git ?
Nov
16
revised Using spring3 @Value to access PropertyPlaceholderConfigurer values ?
edited tags
Nov
16
asked Using spring3 @Value to access PropertyPlaceholderConfigurer values ?
Nov
12
answered When career conflicts with company
Nov
10
awarded  Popular Question
Nov
8
comment How to handle xml/html in git feature branch workflow ?
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 ?
Nov
6
answered Branching without branches
Nov
5
asked How to handle xml/html in git feature branch workflow ?
Oct
31
comment Why do I get conflicts with git rebase -p -i ?
So I'm moving the full committ and not just the diff COMMIT^..COMMIT ?
Oct
31
comment Why do I get conflicts with git rebase -p -i ?
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
Oct
29
asked Why do I get conflicts with git rebase -p -i ?
Oct
29
comment How to cope with “rejected” on git push?
You Are aware that your master branch is successfully pushed in the example you show ?
Oct
28
comment What’s the point of automated integration test here?
Yes, or very superficial tests
Oct
28
revised Automatically rewrite full git history to get rid of simple merge commits
Removed stuff about clean merges
Oct
28
comment Automatically rewrite full git history to get rid of simple merge commits
+1 for good focus - "reality bites". 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.
Oct
28
asked Automatically rewrite full git history to get rid of simple merge commits
Oct
27
answered What’s the point of automated integration test here?
Oct
27
comment git workflow and rebase vs merge questions
You are implying that the OP has some undiscovered rebase or mistake in his process, right ?
Oct
22
accepted Methods for troubleshooting “A script on this page is causing IE to run slowly” caused by AJAX?
Oct
21
answered SSH - ksh: git: not found
Oct
21
revised Performance of java on different hardware?
added 97 characters in body
Oct
21
answered Performance of java on different hardware?
Oct
21
answered What are common java web development practices?
Oct
21
comment IDEA Community Edition versus Eclipse
That was actually the SO "url" box truncating my url. hacked the source ;)
Oct
21
revised IDEA Community Edition versus Eclipse
added 63 characters in body
Oct
21
answered IDEA Community Edition versus Eclipse
Oct
20
asked How to change case of a file in git under cygwin ?
Oct
20
accepted Java: Expected overhead of the rmi protocol
Oct
19
accepted Can Dependency Injection delay creating objects required?
Oct
18
revised Java: Expected overhead of the rmi protocol
added 3 characters in body
Oct
18
comment Java: Expected overhead of the rmi protocol
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 "ping" may give you some indication of your actual network time from a to b. It's not RMI giving you those response times
Oct
18
answered Java: Expected overhead of the rmi protocol
Oct
18
answered Can Dependency Injection delay creating objects required?
Oct
17
comment One could use a profiler, but why not just halt the program?
I'm not sure we're thinking about the same thing; a thread dump gives you a view of where all your threads are at any given point in time. If you're going to do this inside your code, you'll need to know where to put it, right ?
Oct
15
comment Guide to understanding gitk ?
Fair enough for gitk menu commands, +1 for that. You're doing well on the "gitk" part, but I was really hoping for some explanation of the combination of gitk and history.
Oct
15
asked Guide to understanding gitk ?
Oct
10
comment How do I list all the files for a commit in git
It turns out the ordering of the parameters is significant here. The one in your post does not work, while the one in your response does work - at least until you update your post ;)
Oct
10
comment How do I list all the files for a commit in git
The ls-tree with --name-only does not seem to work on 1.6.4.4 or 1.6.3.3. Do you think this is a bug ?
Oct
1
awarded  Yearling
Sep
29
comment What are the practical consequences of rewriting GIT history ?
Sorry, I'm not being totally clear: I hadn't understood that rewriting histroy has to create a derivate branch. Now that I know I no longer have any unanswered questions about rewriting history ;) I understand that I'm totally pulling the rug on any feature branches created after the point of rewrite.
Sep
29
comment What are the practical consequences of rewriting GIT history ?
Thanks, strange how just missing a tiny piece of information in git can make all the difference.
Sep
29
comment What are the practical consequences of rewriting GIT history ?
@Goober: Naive response from me here, is that a problem ? We're test driven so I believe we'll catch it