|
Hi,
Can anyone please let me know the most sought after J2EE skill in the job market now?
I have good experience in Web application development using
Struts 1.x/ Hibernate 3.x/ and have hands on experience in Java web services development using Axis.
...
Started by Surez on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Definitely pick up Spring, it's becoming a ubiquitous requirement now in most Java enterprise... .
Better to spend your time learning Flex, AJAX, CSS, and HTML5 rather than locking yourself into JSF .
I'd recommend Spring first, EJB3 second, and JSF not at all .
|
|
I need an end-to-end multi-client/multi-supplier secure storage system, I can build it using various bits and pieces but it feels overcomplex - am I missing a trick?
Specifically I need to offer multiple clients VPN-secured, secure file transfer into ...
Started by Chopper3 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
One requirement is that everything be encrypted -....
We use a secure file transfer vendor - Accellion - as they provide a pretty decent all-in-one solution, that also runs on top of VMWare (they provide a complete vm image) .
Seems like you've covered it.
|
|
My client is very invested in using a bunch of non-traditional inputs in a form we are developing for him. The image below represents various states of the interface with the last indicated it is disabled in the current context. The end users will be ...
Started by jerrygarciuh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Let the onclick event set a hidden field and change the CSS for the element to move the background sprite
sounds reasonable
Here is my solution using CSS Sprites and JS
http://egolfplan.com/testform.html .
|
Ask your Facebook Friends
|
Hello,
I'm looking for an algorithm that takes as arguments two strings, source and destination, and returns the steps required to transform the source string to the destination. Something that takes Levenshtein distance one step farther.
E.g.,
Input:...
Started by kujawk on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Abcde | /| acbdd
So you remove the b & e and... .
After you've paired as many as possible, the inserts and deletes should be obvious .
You might try going through first and lining up all the letters in pairs .
Take a look at the diff algorithms on Wikipedia.
|
|
Sorry this is quite an open-ended question!
I am looking to enable users on my site to be able to modify html/css parameters for templates they use for their profiles - a bit like myspace (really, really sorry about using that as an example...).
• There...
Started by ed209 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
User_theme user_id theme_id user_theme_parameters user_id key value
....
If the parameters are all of the same type (such as string values), you could have a separate parameters table for mapping key/value pairs that represent the user's theme properties .
|
|
As part of a wide ranging job for a cystic fibrosis support organization, they'd also like a web site set up and I've decided on Apache running on Linux (due to its security and low cost mostly). Other than (fairly) static content, they also want a forum...
Started by paxdiablo on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
Advantages to rolling your own:
a non-standard custom-built system means you'll be less prone to "standard... .
My preference would go for RForum if you need only that .
My answer would be: don't reinvent the wheel, there are plenty of fora software out there .
|
|
I'm trying to add scrollbars to an IKImageView. Basically at the moment, I need some examples of a program that loads an image into a view, and if the window is too small, sets up scrollbars that do the right things...
Why can I not find these examples...
Started by Brian Postow on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The following sample....
If the IKImageView size exceeds the visible rectangle of the NSScrollView, then scrollbars will appears .
Basically, you need to put the IKImageView inside a NSScrollView .
The best place to start is the Scroll View Programming Guide .
|
|
Using Java (1.6) I want to split an input string that has components of a header, then a number of tokens. Tokens conform to this format: a ! char, a space char, then a 2 char token name (from constrained list e.g. C0 or 04) and then 5 digits. I have ...
Started by Chris Barham on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Use (?:...) or (...) for general grouping (the latter....
This doesn't make any sense:
[04|C0|Q2|Q6|C4|B[2-6]|Q[8-9]|C6|CE]
I believe you want:
(?:04|C0|Q2|Q6|C4|B[2-6]|Q[8-9]|C6|CE)
Square brackets are only used for character classes, not general grouping .
|
|
I'm looking for a "quick and dirty" C++ testing framework I can use on my Windows/Visual Studio box. It's just me developing, so it doesn't have to be enterprise class software. Staring at a list of testing frameworks, I am somewhat befuddled...
http:...
Started by Paul Nathan on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Great question....
It's a bit much to install all of Boost just to get the testing framework .
Although, I wouldn't use Boost.Test if you're not already using the Boost libraries .
They are both easy to setup and use.
I have used both UnitTest++ and Boost.Test.
|
|
Seems everyone is looking for the golden bikes of yesteryear. What bikes currently in production do you feel will be sought after in the next 10-20 yrs?
Started by skydog on
, 14 posts
by 9 people.
Answer Snippets (Read the full thread at schwinnbikeforum):
The china bikes are like disposable lighters, you....
And any of the other high quality hand made bikes .
It'll still be the steel bikes from Waterford, Gunnar, Serotta, Indy Fab etc.. .
Pretty doubtful any mass produced china bikes will make it to 10 years .
|