jsight
|
Registered User
|
I'm a Java and .Net programmer.
|
|
1h |
answered | New features of C# 4.0 |
|
1h |
comment |
no REAL TimeSpan datatype in .NET!!! @Adam - I agree... but I think the question (and original intent) were pretty reasonable. "How can I have a timespan do this?" "Here's an alt implementation that does it"... that's a reasonable use. Original question doesn't fit SO very well, though, thats true. |
|
1h |
comment |
no REAL TimeSpan datatype in .NET!!! yeah, closure was premature, imo. It could be useful with code attached. I suggest the OP open a similar question with wording more similar to my edits and post the answer IMMEDIATELY. :) |
|
1h |
revised |
no REAL TimeSpan datatype in .NET!!! cleaned up question (even though it is closed) |
|
1d |
asked | How can you call custom database functions with Hibernate? |
|
Dec 9 |
comment |
JSF Lifecycle and Custom components The answers in here are pretty good, imo. Also, project woodstock has a pretty good (though very poorly documented) framework for generating a lot of the boilerplate code for you. |
|
Dec 7 |
accepted | How to kill deadlocked threads in Java? |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 4 |
answered | How to kill deadlocked threads in Java? |
|
Nov 23 |
comment |
How do I create a bidirectional data binding in Flex 3? I think the key is to add the BindingUtils programatically (not via MXML elements) after your initialization is complete. |
|
Nov 23 |
comment |
Spring MVC Annotations with Global Context context:component-scan? Yes, thats exactly what I'm doing. Controller's in the parent context are not seen by spring mvc in spring-mvc servlet's context. They can be called manually however, just that dispatcherservlet doesn't see them or their path mappings. |
|
Nov 23 |
comment |
Spring MVC Annotations with Global Context context:component-scan? global spring level == application context (as opposed to a nested context in which a dispatcher servlet is defined) |
|
Nov 18 |
asked | Spring MVC Annotations with Global Context context:component-scan? |
|
Nov 9 |
asked | How to use temporary queues from BlazeDS (OR Spring-Flex)? |
|
Nov 9 |
comment |
What Web Application Framework for Java is Recommended? @Zanyking - If your forum needs SEO, you'll find GWT difficult, imo. |
|
Nov 8 |
comment |
Why is the Spring/Flex/BlazeDS Messaging service-adapter not called? I think it was from reading through the sourcecode. :) Either that or finally reading the javadocs the right way. |
|
Nov 8 |
accepted | Why is the Spring/Flex/BlazeDS Messaging service-adapter not called? |
|
Nov 6 |
revised |
Smallest Java SVG Engine added 6 characters in body; edited tags |
|
Nov 6 |
answered | Why is the Spring/Flex/BlazeDS Messaging service-adapter not called? |
|
Nov 6 |
comment |
Facelets and JSP in same project? jsf2.0 still supports jsp, though it will be deprecated. |
|
Nov 5 |
asked | Why is the Spring/Flex/BlazeDS Messaging service-adapter not called? |
|
Nov 2 |
asked | Android Turn-by-Turn API? |
|
Nov 2 |
comment |
RSync: How do I synchronize in both directions? MaD70 - No problem... I was just kidding. :) |
|
Oct 29 |
asked | Reasonable Contract Rate for a Region (Charlotte, NC)? |
|
Oct 29 |
comment |
UPS Commercial Rate or Residential rate Not sure why asking about the UPS API is any different from the million other questions here about everything from google apis, to specific library APIs. |
|
Oct 28 |
answered | System properties can’t be resolved in Spring XML using Maven |
|
Oct 28 |
comment |
RSync: How do I synchronize in both directions? Sheesh, you get 6 upvotes and you're still complaining? <j/k> Unison is a really interesting solution, and I'm glad that you mentioned it. :) |
|
Oct 27 |
answered | Measuring the Size of HttpSession object |
|
Oct 27 |
revised |
Measuring the Size of HttpSession object deleted 9 characters in body |
|
Oct 27 |
comment |
Java: JProgressBar If your goal isn't the specific look, but just a generic indeterminate progress bar, more help is available here: java.sun.com/docs/books/… |
|
Oct 27 |
answered | Java: JProgressBar |
|
Oct 26 |
accepted | RSync: How do I synchronize in both directions? |
|
Oct 26 |
awarded | ● Good Answer |
|
Oct 23 |
comment |
How do I change this to “idiomatic” Perl? Why did I read this the first time as "How do I change this to 'idiotic' Perl?" |
|
Oct 22 |
comment |
Best job description for a position requiring extensive debugging skills? Hehe... I appreciate the humour value. :) |
|
Oct 22 |
asked | Best job description for a position requiring extensive debugging skills? |
|
Oct 21 |
answered | RSync: How do I synchronize in both directions? |
|
Oct 20 |
comment |
What is a branch in CVS? Yes, this question is mostly to help google... seeing some other devs asking this with poor results reading it. |
|
Oct 20 |
asked | What is a branch in CVS? |
|
Oct 20 |
comment |
What features should Java 7 onwards have to encourage switching from C#? @Mike - NP... I can see how it could be read that way. |
|
Oct 20 |
comment |
What features should Java 7 onwards have to encourage switching from C#? @Rakesh - Try actually using the two platforms. Java IDEs make VS look like the retro piece of junk that it truly is. You are right about the language, though... Java as a language is behind, and there are no plans in the works to change that. If you want something modern, you use a different language on top of the JVM. |
|
Oct 20 |
comment |
What features should Java 7 onwards have to encourage switching from C#? @John - I think in some ways, you have proven my point. Java w/ generics was released in September of 2004. C# with generics was released w/ Visual Studio 2005 in October of 2005. There was never a time when C# had generics and Java didn't. |
|
Oct 20 |
comment |
What features should Java 7 onwards have to encourage switching from C#? @Mike - You are, of course, correct that there are .Net projects that use lots of OSS (I'm on one now... not as much OSS as most Java projects that I've been involved with, but definitely a significant amount). Having said that, as a general rule (lots of exceptions), I've seen much less in .Net projects than in Java. For example, I've seen server side guys in .Net who have never even heard of a logging framework (they reimplemented their own... badly). I've yet to meet one in the Java world thats not familiar with at least 1. |
|
Oct 20 |
awarded | ● Nice Answer |
|
Oct 20 |
answered | What features should Java 7 onwards have to encourage switching from C#? |
|
Oct 17 |
asked | ActionScript 3 Specification as PDF? |
|
Oct 17 |
comment |
Ensuring result order when joining, without using an order_by Its intriguing to me that most of the answers here seem to have misunderstood a key part of the question. His plugin guarantees ordering without the join (and w/o an order by) on MySQL. He's asking whether a join on MySQL will affect that. Its not a question about the sql standard (which doesn't guarantee this), but of the specific implementation in MySQL. I wonder if a better answer would be available on Serverfault? |
|
Oct 16 |
answered | Ensuring result order when joining, without using an order_by |
|
Oct 16 |
accepted | jQuery - Are animations and jQuery scripts in general faster in IE? |
|
Oct 9 |
comment |
Xcode and jailbreaked iPhone @Nick/Jonathan - He didn't ask how to crack software. He also didn't ask anything about stealing something that he failed to pay for. He simply asked about using the system for Homebrew. Shaky legal ground? Possibly, but few would consider this any more unethical than playing with Linux on a Wii or putting a bigger hard drive in a Tivo. :) |
