serg555

2,196
Reputation
285 views

Registered User

Name serg555
Member for 1 year
Seen 17 hours ago
Website
Location
Age
Nov
24
awarded  Popular Question
Nov
17
answered What am I doing wrong with my Regex?
Nov
16
comment Template Engines for Spring Framework
Velocity also has form tags (macroses) for Spring that make data binding for forms easier.
Nov
13
answered How to proper initialize the nvelocity engine?
Nov
12
comment JSP programmatically render
I had a similar problem and the "easiest" solution I found was switching whole project to Velocity (or other template engine) where such tasks are trivial. Looks like you are already too far in the development to make such changes, but just saying...
Nov
12
comment Java Ant: How to setup “apply” task with allowing file overwriting?
Perfect, thanks.
Nov
11
revised Java Ant: How to setup “apply” task with allowing file overwriting?
added 100 characters in body; added 137 characters in body
Nov
11
revised Java Ant: How to setup “apply” task with allowing file overwriting?
edited title
Nov
11
asked Java Ant: How to setup “apply” task with allowing file overwriting?
Nov
11
asked Java executable jar. What does this piece of code do?
Nov
8
accepted Velocity - Delete fields when can’t be merged
Nov
7
answered Velocity - Delete fields when can’t be merged
Nov
6
answered Is it necessary to be an expert in “X” to be a qualified manager of people that do “X”?
Nov
5
asked Java: Why charset names are not constants?
Nov
4
comment Firebug: How to inspect elements changing with mouse movements?
What if JS is too complicated to figure out where it is triggered?
Nov
4
asked Firebug: How to inspect elements changing with mouse movements?
Nov
4
awarded  Popular Question
Nov
2
accepted Hibernate ordering
Oct
30
comment Can I use wildcards in “IN” MySQL statement?
Yeah, but it also has its disadvantages: only myisam tables, only one end wildcards.
Oct
30
comment Can I use wildcards in “IN” MySQL statement?
Yeah, looks like the easiest approach. Thanks. Hopefully it doesn't affect performance much.
Oct
30
asked Can I use wildcards in “IN” MySQL statement?
Oct
30
answered What’s your most controversial programming opinion?
Oct
30
comment Jquery .ajax method=”post” but $_POST empty
Ok I give up then :p I've had some issues with ajax posts before but they were related to cross domain stuff.
Oct
30
comment Jquery .ajax method=”post” but $_POST empty
Are you sure that it is ajax call that sending this request, not form itself? Try it without a form, just use a link or a button like in this answer. Maybe your ajax is not being called at all.
Oct
30
comment Jquery .ajax method=”post” but $_POST empty
I don't understand though how this problem is related to a form. Where your ajax is being called? Maybe it is not called at all and you are just submitting a form itself instead of doing ajax call?
Oct
30
comment Jquery .ajax method=”post” but $_POST empty
btw there is a good plugin that automatically gets all fields values from the form and submits it via ajax: jquery.malsup.com/form/#ajaxForm
Oct
30
comment Jquery .ajax method=”post” but $_POST empty
You aren't doing cross domain requests, are you?
Oct
30
comment Jquery .ajax method=”post” but $_POST empty
@Wbdvlpr: open firebug console and check requests being sent. You can see what method it uses (get/post) and what parameters being sent to which url. Then go from there.
Oct
29
comment Trying to build algorithm for optimal tower placement in a game
The main problem is basically traversing a tree with 4x4 nodes with 5 children in every node. I can't render all possible trees and then check them because it would take as long as brute forcing. I need to build trees on the fly, but then I need to remember edges I already visited and so on. Not impossible just challenging (and I don't like trees nor recursion :) )
Oct
29
comment Trying to build algorithm for optimal tower placement in a game
Not sure yet how I can easily convert the part that places a tower and then rolls back avoiding whole subtree to imperative language, but you did a great job, thanks :) Will try to translate it.
Oct
27
comment how to split name and email address in php or using regular expression
@Jass: Are there any advantages of dot being greedy?
Oct
27
comment how to split name and email address in php or using regular expression
What does "!" in regex mean? Just wondering.
Oct
27
answered Is it possible to test a JPA/EJB QL statement with regex?
Oct
27
revised Trying to build algorithm for optimal tower placement in a game
added 448 characters in body
Oct
27
comment Trying to build algorithm for optimal tower placement in a game
Actually I reviewed the code and there were indeed some string concats. Speeded up the code about 30%, gotta love micro optimizations :)
Oct
27
comment Trying to build algorithm for optimal tower placement in a game
I already did all that (except rewriting in C) :) No collections, no classes, no concats, and only primitives.
Oct
26
revised Trying to build algorithm for optimal tower placement in a game
added 184 characters in body
Oct
26
comment Trying to build algorithm for optimal tower placement in a game
Yeah, I am not even going into felling towers one by one, that's another level of complexity. Just lets take the whole field and pretend that it is filled out at once.
Oct
26
comment Trying to build algorithm for optimal tower placement in a game
I added tower values.
Oct
26
revised Trying to build algorithm for optimal tower placement in a game
added 57 characters in body
Oct
26
revised Trying to build algorithm for optimal tower placement in a game
added 1 characters in body
Oct
26
asked Trying to build algorithm for optimal tower placement in a game
Oct
24
answered Regular expression pattern help
Oct
23
comment If only one object field is required in a method, what should be passed as a parameter - an object or a field value?
Sending whole object seems like a better choice to me as well for those reasons. There were no alternative points of view in answers so I had to choose the most popular one. Now that there are some I probably "unaccept" the answer and lets see how many supporters this approach could get.
Oct
23
asked If only one object field is required in a method, what should be passed as a parameter - an object or a field value?
Oct
22
revised java equivalent to php’s hmac-SHA1
deleted 18 characters in body
Oct
22
answered java equivalent to php’s hmac-SHA1
Oct
22
answered Apache Velocity Which Variables’s are Availible in Template
Oct
21
comment Hibernate “IN” clause as ALL instead of ANY
You can write "group by a.id" it would be the same, but current one also works fine, just tested it under MySQL.
Oct
21
comment Hibernate “IN” clause as ALL instead of ANY
Ok I just tested our queries. Yours selects all contracts that have at least A,B,C among their products (so it will select ABCD and XYZABC), mine selects exactly ABC. It is not clear from the question which one is needed, so both are good for different tasks.