User serg555 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T18:23:37Zhttp://stackoverflow.com/feeds/user/20128http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1816255/when-is-it-wise-to-use-regular-expressions-with-html/1817987#18179870Answer by serg555 for When is it wise to use regular expressions with HTML?serg5552009-11-30T05:33:17Z2009-11-30T05:33:17Z<p>You can use regexp when either you parse HTML you have control over or you are writing a parser for one specific HTML page. You should not use regexp when trying to build universal parser.</p>
http://stackoverflow.com/questions/678728/low-level-programming-how-to-find-data-in-a-memory-of-another-running-process3Low level programming: How to find data in a memory of another running process?serg5552009-03-24T18:55:33Z2009-11-21T19:14:33Z
<p>I am trying to write a statistics tool for a game by extracting values from game's process memory (as there is no other way). The biggest challenge is to find out required addresses that store data I am interested. What makes it even more harder is dynamic memory allocation - I need to find not only addresses that store data but also pointers to those memory blocks, because addresses are changing every time game restarts. </p>
<p>For now I am just manually searching game memory using memory editor (ArtMoney), and looking for addresses that change their values as data changes (or don't change). After address is found I am looking for a pointer that points to this memory block in a similar way. </p>
<p>I wonder what techniques/tools exist for such tasks? Maybe there are some articles I can read? Is mastering disassembler the only way to go? For example game trainers are solving similar tasks, but they make them in days and I am struggling already for weeks.</p>
<p>Thanks.</p>
<p>PS. It's all under windows.</p>
http://stackoverflow.com/questions/1747007/what-am-i-doing-wrong-with-my-regex/1747183#17471833Answer by serg555 for What am I doing wrong with my Regex?serg5552009-11-17T07:32:50Z2009-11-17T07:32:50Z<p>To answer your question without useless life lessons, you are having troubles because of greedy quantifiers. Try making them lazy by adding question marks:</p>
<pre><code><meta\\s+?name=\"description\"\\s+?content=\"(?<Description>.*?)\"\\s*?/>
</code></pre>
<p>Sure this regex won't work for all pages in the world, but if you need just make some quick replacement script for your own templates, regex is the fastest and easiest solution and the way to go.</p>
http://stackoverflow.com/questions/521244/software-for-multiple-copy-paste3Software for multiple copy/paste?serg5552009-02-06T17:26:42Z2009-11-16T22:49:15Z
<p>While coding I find that often it is needed to copy several parts of the code from one place to another (no, it is not copy/paste antipattern) and you end up switching back and force between files.</p>
<p>Does anyone know any good windows-wide software (or Eclipse plugin) that can handle multiple copy/paste? So I can copy several different things at the same time and paste them in any order. </p>
<p>I tried couple but they didn't feel as natural as Ctrl-C/V.</p>
http://stackoverflow.com/questions/1722193/how-to-proper-initialize-the-nvelocity-engine/1726625#17266250Answer by serg555 for How to proper initialize the nvelocity engine?serg5552009-11-13T01:44:05Z2009-11-13T01:44:05Z<p><a href="http://velocity.apache.org/engine/devel/developer-guide.html#Velocity%5FConfiguration%5FKeys%5Fand%5FValues" rel="nofollow">Here</a> is a list of available properties.</p>
http://stackoverflow.com/questions/1718760/java-ant-how-to-setup-apply-task-with-allowing-file-overwriting0Java Ant: How to setup "apply" task with allowing file overwriting?serg5552009-11-11T23:12:49Z2009-11-12T00:23:45Z
<p>My command line app call looks like this:</p>
<pre><code>java -jar myapp.jar --output c:\test.txt c:\test.txt
</code></pre>
<p>Which reads test.txt, processes it and saves result to the same file.</p>
<p>I am trying to make ant task out of it but can't figure out how to make it use same path for input and output.</p>
<pre><code> <target name="compress">
<apply executable="java" parallel="false">
<fileset dir="c:/test/" includes="*.txt">
</fileset>
<arg line="-jar"/>
<arg path="myapp.jar"/>
<srcfile/>
<arg line="--output"/>
<mapper type="glob" from="*" to="c:/test/*"/>
<targetfile/>
</apply>
</target>
</code></pre>
<p>Which doesn't work. Using <code><mapper type="identity"/></code> and setting <code>dest="c:/test/"</code> for apply task doesn't work either. Looks like it just doesn't want to rewrite existing files. Is there a way to make it work without writing output to a separated folder, then deleting all files from the original folder and copying files back to original folder?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1718026/java-executable-jar-what-does-this-piece-of-code-do2Java executable jar. What does this piece of code do?serg5552009-11-11T20:58:31Z2009-11-11T21:08:10Z
<p>I am looking at Yahoo's YUI compressor executable jar and they have this class, linked from Manifest file as "Main-Class":</p>
<pre><code>package com.yahoo.platform.yui.compressor;
import java.lang.reflect.Method;
public class Bootstrap {
public static void main(String args[]) throws Exception {
ClassLoader loader = new JarClassLoader();
Thread.currentThread().setContextClassLoader(loader);
Class c = loader.loadClass(YUICompressor.class.getName());
Method main = c.getMethod("main", new Class[]{String[].class});
main.invoke(null, new Object[]{args});
}
}
</code></pre>
<p>Which looks like a useless wrapper to me. Why not just directly put <code>YUICompressor</code> as the Main-Class? Is there any reason for doing it this way?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1661759/velocity-delete-fields-when-cant-be-merged/1693768#16937680Answer by serg555 for Velocity - Delete fields when can't be mergedserg5552009-11-07T17:21:17Z2009-11-07T17:21:17Z<p>Not sure if it is what you are asking, but if you want to prevent unassigned template vars from showing up in merged templates, you can use <a href="http://velocity.apache.org/engine/devel/user-guide.html#quietreferencenotation" rel="nofollow">quiet notation</a> by writing <code>$!{name}</code>, there is also a global setting for that.</p>
http://stackoverflow.com/questions/1690118/is-it-necessary-to-be-an-expert-in-x-to-be-a-qualified-manager-of-people-that-d/1690278#16902780Answer by serg555 for Is it necessary to be an expert in "X" to be a qualified manager of people that do "X"?serg5552009-11-06T20:42:21Z2009-11-06T20:42:21Z<p>If it is a technical manager who makes decisions which framework to use then being the best expert in a team is essential I think. </p>
<p>If it is a manager who makes decisions which features to include in the system and how it should look as a final product without telling you how, I am starting to think that not being expert in the technical department actually helps a lot. </p>
<p>When I am deciding on adding some feature as a programmer my biggest concern is how hard it would be to implement, no matter how hard I try to look at it from user's perspective. Not knowing about technical difficulties opens your mind in a way and you have completely different vision and priorities, which is more close to the customers/end users I think.</p>
http://stackoverflow.com/questions/1684040/java-why-charset-names-are-not-constants6Java: Why charset names are not constants?serg5552009-11-05T22:18:23Z2009-11-05T23:52:10Z
<p>Charset issues are confusing and complicated by themselves, but on top of that you have to remember exact names of your charsets. Is it <code>"utf8"</code>? Or <code>"utf-8"</code>? Or maybe <code>"UTF-8"</code>? When searching internet for code samples you will see all of the above. Why not just make them named constants and use <code>Charset.UTF8</code>?</p>
http://stackoverflow.com/questions/1128907/java-need-efficient-notifications-between-site-users2Java: Need efficient notifications between site users.serg5552009-07-15T01:16:19Z2009-11-05T03:25:03Z
<p>I have a simple ajax game between 2 users with java backend (tomcat, spring). I need some good way of notifying one user that his opponent made a turn. Now all communication is done through database and waiting for opponent to finish his turn looks like this:</p>
<pre><code>while(!timeout && !opponentIsDone) {
//...get the game record from db and check if opponent made turn
Thread.sleep(100);
}
</code></pre>
<p>Can I somehow get rid of this loop with sleep() and get instantly notified without a delay (but with timeout)? I can probably make some global static var and communicate through it, but I still will need similar loop only maybe timeout will be smaller. </p>
<p>I can't just call some method once the turn is done because it is all need to go to the browser through ajax and I can't push data there, only pull. So I need to have process that waits for the opponent.</p>
<p>I am looking for some light and simple solution.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1675405/firebug-how-to-inspect-elements-changing-with-mouse-movements1Firebug: How to inspect elements changing with mouse movements?serg5552009-11-04T17:30:02Z2009-11-04T17:33:54Z
<p>Sometimes I need to inspect elements that are only showing up on a page if you put mouse over some area. The problem is that if you start moving mouse towards firebug console in order to see the changes, mouse-out event is triggered and all changes I am trying to inspect disappear. How to deal with such cases?</p>
<p>Basically I am looking for something that would either:</p>
<ul>
<li>Switch to firebug console without moving a mouse (using keyboard shortcuts maybe? But I can't figure out how to use firebug with keyboard only)</li>
<li>Have an ability to "freeze" the page so your mouse movements don't trigger any events anymore.</li>
</ul>
<p>Thanks.</p>
http://stackoverflow.com/questions/1652318/can-i-use-wildcards-in-in-mysql-statement2Can I use wildcards in "IN" MySQL statement?serg5552009-10-30T21:04:47Z2009-10-30T21:18:43Z
<p>I would like to run something like:</p>
<pre><code>select * from table where field in ("%apple%", "%orange%")
</code></pre>
<p>Is there a way? Or at least is there a better way than dynamically building query for every keyword:</p>
<pre><code>select * from table where field like "%apple%" or field like "%orange%"
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1651203#16512030Answer by serg555 for What's your most controversial programming opinion?serg5552009-10-30T17:24:05Z2009-10-30T17:24:05Z<p><strong>Copy/Pasting is not an antipattern, it fact it helps with not making more bugs</strong></p>
<p>My rule of thumb - typing only something that cannot be copy/pasted. If creating similar method, class, or file - copy existing one and change what's needed. (I am not talking about duplicating a code that should have been put into a single method).</p>
<p>I usually never even type variable names - either copy pasting them or using IDE autocompletion. If need some DAO method - copying similar one and changing what's needed (even if 90% will be changed). May look like extreme laziness or lack of knowledge to some, but I almost never have to deal with problems caused my misspelling something trivial, and they are usually tough to catch (if not detected on a compile level). </p>
<p>Whenever I step away from my copy-pasting rule and start typing stuff I always misspelling something (it's just a statistics, nobody can write perfect text off the bat) and then spending more time trying to figure out where.</p>
http://stackoverflow.com/questions/1626189/trying-to-build-algorithm-for-optimal-tower-placement-in-a-game5Trying to build algorithm for optimal tower placement in a gameserg5552009-10-26T17:36:04Z2009-10-30T01:06:34Z
<p>This is going to be a long post and just for fun, so if you don't have much time better go help folks with more important questions instead :)</p>
<p>There is a game called "Tower Bloxx" recently released on xbox. One part of the game is to place different colored towers on a field in a most optimal way in order to maximize number of most valuable towers. I wrote an algorithm that would determine the most efficient tower placement but it is not very efficient and pretty much just brute forcing all possible combinations. For 4x4 field with 4 tower types it solves it in about 1 hr, 5 tower types would take about 40 hours which is too much.</p>
<p><strong>Here are the rules:</strong>
There are 5 types of towers that could be placed on a field. There are several types of fields, the easiest one is just 4x4 matrix, others fields have some "blanks" where you can't build. Your aim is to put as many the most valuable towers on a field as possible to maximize total tower value on a field (lets assume that all towers are built at once, there is no turns).</p>
<p><strong>Tower types</strong> (in order from less to most valuable):</p>
<ul>
<li>Blue - can be placed anywhere, value = 10</li>
<li>Red - can be placed only besides blue, value = 20</li>
<li>Green - placed besides red and blue, value = 30 </li>
<li>Yellow - besides green, red and blue, value = 40</li>
<li>White - besides yellow, green, red and blue, value = 100</li>
</ul>
<p>Which means that for example green tower should have at least 1 red and 1 blue towers at either north, south, west or east neighbor cells (diagonals don't count). White tower should be surrounded with all other colors.</p>
<p><strong>Here is my algorithm for 4 towers on 4x4 field:</strong></p>
<ol>
<li>Total number of combinations = 4^16</li>
<li>Loop through [1..4^16] and convert every number to base4 string in order to encode tower placement, so 4^16 = "3333 3333 3333 3333" which would represent our tower types (0=blue,...,3=yellow)</li>
<li>Convert tower placement string into matrix.</li>
<li>For every tower in a matrix check its neighbors and if any of requirements fails this whole combination fails.</li>
<li>Put all correct combinations into an array and then sort this array as strings in lexicographic order to find best possible combination (first need to sort characters in a string).</li>
</ol>
<p>The only optimization I came up with is to skip combinations that don't contain any most valuable towers. It skips some processing but I still loop through all 4^16 combinations.</p>
<p>Any thought how this can be improved? Code samples would be helpful if in java or php.</p>
<p><strong>-------Update--------</strong></p>
<p>After adding more illegal states (yellow cannot be built in the corners, white cannot be built in corners and on the edges, field should contain at least one tower of each type), realizing that only 1 white tower could be possibly built on 4x4 field and optimizing java code the total time was brought down from 40 to ~16 hours. Maybe threading would bring it down to 10 hrs but that's probably brute forcing limit.</p>
http://stackoverflow.com/questions/1631888/is-it-possible-to-test-a-jpa-ejb-ql-statement-with-regex/1632180#16321801Answer by serg555 for Is it possible to test a JPA/EJB QL statement with regex?serg5552009-10-27T16:48:21Z2009-10-27T16:48:21Z<p>The easiest regex would be something like:</p>
<pre><code>select(.*?)from(.*?)where(.*)
</code></pre>
<p>Depending on your language you should be able to set flags for regex to be case insensitive. The result of it will be 3 captured groups that contain required information (surrounded by spaces). It would be easier just to use <code>trim()</code> or similar function in your language to strip unneded spaces rather than making regex more complex.</p>
http://stackoverflow.com/questions/1615229/regular-expression-pattern-help/1617163#16171630Answer by serg555 for Regular expression pattern helpserg5552009-10-24T06:24:10Z2009-10-24T06:24:10Z<p>Try <code>\\\\\\[</code>, should work.</p>
<p>Because those two characters have special meaning in regexp they have to be masked like this: <code>\\\[</code>. Now when we are putting this regexp into a string for php every backslash has to be masked again because backslash has a special meaning in a string.</p>
http://stackoverflow.com/questions/1614539/if-only-one-object-field-is-required-in-a-method-what-should-be-passed-as-a-para5If only one object field is required in a method, what should be passed as a parameter - an object or a field value?serg5552009-10-23T16:26:54Z2009-10-23T19:46:14Z
<p>Lets say there is a method that searches for book authors by book id. What should be passed as a parameter to such method - only book.id (int) or whole book object?</p>
<p>Or another example. In java I need to do some work with current url of the page. What should be passed to such method - only request.getRequestURL() or whole request?</p>
<p>I kind of see benefits from each method but can't come up with good rule when to use what.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1609899/java-equivalent-to-phps-hmac-sha1/1610042#16100420Answer by serg555 for java equivalent to php's hmac-SHA1serg5552009-10-22T21:22:39Z2009-10-22T21:30:58Z<p>Haven't tested it, but try this:</p>
<pre><code> BigInteger hash = new BigInteger(1, digest);
String enc = hash.toString(16);
if ((enc.length() % 2) != 0) {
enc = "0" + enc;
}
</code></pre>
<p>This is snapshot from my method that makes java's md5 and sha1 match php.</p>
http://stackoverflow.com/questions/1608051/apache-velocity-which-variabless-are-availible-in-template/1609432#16094320Answer by serg555 for Apache Velocity Which Variables's are Availible in Templateserg5552009-10-22T19:28:18Z2009-10-22T19:28:18Z<p>I don't think there is an easy way of doing that without overriding some of velocity classes.</p>
<p>Here is some options how I would do it:</p>
<ol>
<li>Add all possible variables (I am
assuming there is a predefined set
of them). If it is performance heavy
look into caching.</li>
<li>Ask users which data they need before rendering template (if it is
a one time thing just a form, if
those variables don't change often
write them into db).</li>
<li>Ask users to provide list of variables they need in some specific
format inside the template for easy parsing before
rendering a template, like: <code><!--%%__VARS__%%users,latest%%__VARS__%%--></code></li>
<li>Use regexp to search the template file and look for $var instances,
which could be tricky.</li>
</ol>
http://stackoverflow.com/questions/1603582/hibernate-in-clause-as-all-instead-of-any/1603929#16039290Answer by serg555 for Hibernate "IN" clause as ALL instead of ANYserg5552009-10-21T22:04:44Z2009-10-21T22:04:44Z<p>In the <a href="http://www.sergiy.ca/how-to-write-many-to-many-search-queries-in-mysql-and-hibernate/" rel="nofollow">blog</a> I went over such hibernate queries, take a look at example #4.</p>
<p>Here is a snapshot (replace Articles with Contracts and Tags with Products):</p>
<pre><code>String[] tags = {"Java", "Hibernate"};
String hql = "select a from Article a " +
"join a.tags t " +
"where t.name in (:tags) " +
"and a.id in (" +
"select a2.id " +
"from Article a2 " +
"join a2.tags t2 " +
"group by a2 " +
"having count(t2)=:tag_count) " +
"group by a " +
"having count(t)=:tag_count";
Query query = session.createQuery(hql);
query.setParameterList("tags", tags);
query.setInteger("tag_count", tags.length);
List<Article> articles = query.list();
</code></pre>
http://stackoverflow.com/questions/1590126/interested-in-grabbing-xbox-friends-list/1592764#15927640Answer by serg555 for Interested in Grabbing XBOX Friend's Listserg5552009-10-20T06:13:59Z2009-10-20T06:13:59Z<p>As far as I know there is no open API nor you can scrap the data easily as logging in into live is real beach - it does some data manipulations with javascript before submitting the form. So if you want to login you need to either crack that js algorithm or run your own js engine, none of which is easy. I tried doing that some time ago and gave up.</p>
http://stackoverflow.com/questions/1527185/any-tournament-apis-out-there1Any Tournament APIs out there?serg5552009-10-06T18:09:42Z2009-10-20T00:09:23Z
<p>Are there any APIs for helping running tournaments that can draw brackets, count scores, etc? Something on PHP/javascript would be nice but I can't find any.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1527185/any-tournament-apis-out-there/1591801#15918010Answer by serg555 for Any Tournament APIs out there?serg5552009-10-20T00:09:23Z2009-10-20T00:09:23Z<p>There is a pretty useful <a href="http://frank-mich.com/jQuery/" rel="nofollow">jquery plugin</a> that draws a binary tree which can be used for building tourney brackets.</p>
http://stackoverflow.com/questions/1589799/how-to-force-a-page-to-reload-if-all-what-was-changed-in-url-is-hash2How to force a page to reload if all what was changed in url is hash?serg5552009-10-19T16:45:38Z2009-10-19T19:27:43Z
<p>I am trying to reload current page with different url hash, but it doesn't work as expected.</p>
<p>(Clarification how I want it to work: Reload the page and then scroll to the new hash.)</p>
<p><strong>Approach #1:</strong></p>
<pre><code>window.location.hash = "#" + newhash;
</code></pre>
<p>Only scrolls to this anchor without reloading the page.</p>
<p><strong>Approach #2:</strong></p>
<pre><code>window.location.hash = "#" + newhash;
window.location.reload(true);
</code></pre>
<p>Kinda works but it first scrolls to the anchor, then reloads the page, then scrolls to the anchor again.</p>
<p><strong>Approach #3:</strong></p>
<pre><code>window.location.href = window.location.pathname + window.location.search + "&random=" + Math.round(Math.random()*100000) + "#" + newhash;
</code></pre>
<p>Works but I would rather not add random garbage to the url.</p>
<p>Is there a better solution?</p>
http://stackoverflow.com/questions/1586779/preg-match-text-in-php-between-html-tags/1586793#15867932Answer by serg555 for Preg match text in php between html tagsserg5552009-10-19T03:04:54Z2009-10-19T03:04:54Z<pre><code>preg_match("'<p class=\"review\">(.*?)</p>'si", $source, $match);
if($match) echo "result=".$match[1];
</code></pre>
http://stackoverflow.com/questions/1581457/is-it-possible-for-php-to-follow-a-url/1581484#15814843Answer by serg555 for Is it possible for PHP to follow a URL?serg5552009-10-17T05:21:34Z2009-10-17T05:21:34Z<pre><code> $cr = curl_init("http://example.com");
curl_setopt($cr, CURLOPT_RETURNTRANSFER, true);
curl_setopt($cr, CURLOPT_FOLLOWLOCATION, 1);
curl_exec($cr);
$info = curl_getinfo($cr);
echo "url=".$info["url"];
</code></pre>
http://stackoverflow.com/questions/318940/any-tips-on-how-to-organize-eclipse-environment-on-multiple-monitors6Any tips on how to organize Eclipse environment on multiple monitors?serg5552008-11-25T21:29:29Z2009-10-15T12:19:41Z
<p>I can't find a good way of putting Eclipse windows on two monitors. Currently I just detached (clicked on a header and dragged) a few windows to a secondary monitor (package explorer, console, and outline) while leaving primary monitor with maximized source editing window. </p>
<p>It works pretty well except few annoying issues. Detached windows are not in focus while you are editing your code. Which means that, for example, last build shortcut (<kbd>Alt</kbd>-<kbd>Shift</kbd>-<kbd>X</kbd>, <kbd>Q</kbd>) doesn't work because it can't find build file (because package explorer is not in focus). Also "Selected resources" option in a file search menu is not picking up current package selection.</p>
<p>So I was wondering is detaching windows a right way to go? Do you have any better solutions so at least package explorer stays in focus?</p>
<p>Thanks.</p>
<p>PS. Btw "unable to find build" error started showing up only in 3.4 ver for some reason.</p>
http://stackoverflow.com/questions/930562/why-do-programmers-have-to-learn-for-their-whole-lives-and-arent-you-afraid-of-t38Why do programmers have to learn for their whole lives and aren't you afraid of that?serg5552009-05-30T20:41:42Z2009-10-14T20:49:40Z
<p>Programming technologies are evolving so fast that programmers constantly have to learn more and more to catch up whether you want it or not. Often it is not just learning more in the same direction but starting from a scratch. </p>
<p>Lets say you were a topnotch programmer in 1999 who quit for 10 years and went to a job interview in 2009 (funny even to imagine) - how much of your knowledge is still needed? And if we take a carpenter, engineer, doctor or even mathematician - they all are still good specialists after 10 years.</p>
<p>So why programming is so not stable? Is it because it is just relatively new or because something important is still missing after 50 years and we can't find it to settle in that direction? Do you think after some time situation will change? </p>
<p>Learning something new all the time is exciting and all, but it is starting to worry me that as I become older it will be harder and harder. After all "you can't teach an old dog new tricks" and I'm afraid that at the end I just end up behind college students and become one of those "cobol dinosaurs", only it will be probably "java dinosaurs" by that time.</p>
http://stackoverflow.com/questions/1556378/algorithm-that-searches-for-related-items-based-on-common-tags5Algorithm that searches for related items based on common tagsserg5552009-10-12T19:17:21Z2009-10-12T20:19:22Z
<p>Lets take StackOverflow questions as example. Each of them has multiple tags assigned. How to build an algorithm that would find related questions based on how many common tags they have (sorted by number of common tags)?</p>
<p>For now I can't think about anything better than just selecting all questions that have at least one common tag into an array and then looping through them all assigning number of common tags to each item, then sorting this array. </p>
<p>Is there more clever way of doing it? Perfect solution would be a single sql query.</p>
http://stackoverflow.com/questions/29516/template-engines-for-spring-framework/64037#64037Comment by serg555 on Template Engines for Spring Frameworkserg5552009-11-16T17:23:12Z2009-11-16T17:23:12ZVelocity also has form tags (macroses) for Spring that make data binding for forms easier.http://stackoverflow.com/questions/1719254/jsp-programmatically-renderComment by serg555 on JSP programmatically renderserg5552009-11-12T02:25:33Z2009-11-12T02:25:33ZI 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...http://stackoverflow.com/questions/1718760/java-ant-how-to-setup-apply-task-with-allowing-file-overwriting/1719029#1719029Comment by serg555 on Java Ant: How to setup "apply" task with allowing file overwriting?serg5552009-11-12T00:37:06Z2009-11-12T00:37:06ZPerfect, thanks.http://stackoverflow.com/questions/1675405/firebug-how-to-inspect-elements-changing-with-mouse-movements/1675427#1675427Comment by serg555 on Firebug: How to inspect elements changing with mouse movements?serg5552009-11-04T17:36:28Z2009-11-04T17:36:28ZWhat if JS is too complicated to figure out where it is triggered?http://stackoverflow.com/questions/1652318/can-i-use-wildcards-in-in-mysql-statement/1652348#1652348Comment by serg555 on Can I use wildcards in "IN" MySQL statement?serg5552009-10-30T22:09:03Z2009-10-30T22:09:03ZYeah, but it also has its disadvantages: only myisam tables, only one end wildcards.http://stackoverflow.com/questions/1652318/can-i-use-wildcards-in-in-mysql-statement/1652348#1652348Comment by serg555 on Can I use wildcards in "IN" MySQL statement?serg5552009-10-30T21:15:56Z2009-10-30T21:15:56ZYeah, looks like the easiest approach. Thanks. Hopefully it doesn't affect performance much.http://stackoverflow.com/questions/1650516/jquery-ajax-methodpost-but-post-empty/1650543#1650543Comment by serg555 on Jquery .ajax method="post" but $_POST emptyserg5552009-10-30T16:16:58Z2009-10-30T16:16:58ZOk I give up then :p I've had some issues with ajax posts before but they were related to cross domain stuff.http://stackoverflow.com/questions/1650516/jquery-ajax-methodpost-but-post-empty/1650543#1650543Comment by serg555 on Jquery .ajax method="post" but $_POST emptyserg5552009-10-30T16:06:16Z2009-10-30T16:06:16ZAre 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.http://stackoverflow.com/questions/1650516/jquery-ajax-methodpost-but-post-empty/1650543#1650543Comment by serg555 on Jquery .ajax method="post" but $_POST emptyserg5552009-10-30T16:00:40Z2009-10-30T16:00:40ZI 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?http://stackoverflow.com/questions/1650516/jquery-ajax-methodpost-but-post-empty/1650543#1650543Comment by serg555 on Jquery .ajax method="post" but $_POST emptyserg5552009-10-30T15:54:46Z2009-10-30T15:54:46Zbtw there is a good plugin that automatically gets all fields values from the form and submits it via ajax: <a href="http://jquery.malsup.com/form/#ajaxForm" rel="nofollow">jquery.malsup.com/form/#ajaxForm</a>http://stackoverflow.com/questions/1650516/jquery-ajax-methodpost-but-post-empty/1650543#1650543Comment by serg555 on Jquery .ajax method="post" but $_POST emptyserg5552009-10-30T15:47:57Z2009-10-30T15:47:57ZYou aren't doing cross domain requests, are you?http://stackoverflow.com/questions/1650516/jquery-ajax-methodpost-but-post-empty/1650543#1650543Comment by serg555 on Jquery .ajax method="post" but $_POST emptyserg5552009-10-30T15:45:01Z2009-10-30T15:45:01Z@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.http://stackoverflow.com/questions/1626189/trying-to-build-algorithm-for-optimal-tower-placement-in-a-game/1642109#1642109Comment by serg555 on Trying to build algorithm for optimal tower placement in a gameserg5552009-10-29T18:42:07Z2009-10-29T18:42:07ZThe 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 :) )http://stackoverflow.com/questions/1626189/trying-to-build-algorithm-for-optimal-tower-placement-in-a-game/1642109#1642109Comment by serg555 on Trying to build algorithm for optimal tower placement in a gameserg5552009-10-29T15:32:00Z2009-10-29T15:32:00ZNot 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.http://stackoverflow.com/questions/1632173/how-to-split-name-and-email-address-in-php-or-using-regular-expression/1632217#1632217Comment by serg555 on how to split name and email address in php or using regular expressionserg5552009-10-27T16:59:18Z2009-10-27T16:59:18Z@Jass: Are there any advantages of dot being greedy?