User Andrew Dashin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T01:30:39Zhttp://stackoverflow.com/feeds/user/17375http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807702/is-the-implements-clause-also-inheritable/1807724#18077240Answer by Andrew Dashin for Is the implements clause also inheritable?Andrew Dashin2009-11-27T09:43:00Z2009-11-27T09:43:00Z<p>Sure. B is also Runnable due to B's parent (A) is Runnable.</p>
http://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790032#17900320Answer by Andrew Dashin for Can I use throws in constructor?Andrew Dashin2009-11-24T13:23:15Z2009-11-24T13:23:15Z<p>In general it is a good idea to have only simple logic in your constructor (for example setting private fields with arguments values). And set up your objects with other special "assemblers", "preparers" or "factories". The same is about get/set methods- they should be as simple as possible.</p>
<p>Sure it is possible to throw an exception from constuctor. But this is not a good practice.</p>
http://stackoverflow.com/questions/1775238/more-advanced-java-course-or-c/1775811#17758110Answer by Andrew Dashin for More advanced Java Course or C?Andrew Dashin2009-11-21T15:42:52Z2009-11-21T15:42:52Z<p>You already have a Java-basis. It would be great to get familiar with C. This knowledge will open for you new horizonts so you'll be able to decide what to do next - turn back and go deeper in Java, proceed with C or may be learn something new.</p>
<p>IMHO you shuld try everything new until you find <em>your thing</em>.</p>
http://stackoverflow.com/questions/1721781/why-string-is-not-a-string-when-it-is-passed-to-c-from-scheme0Why String is not a String when it is passed to C from Scheme?Andrew Dashin2009-11-12T12:15:32Z2009-11-12T17:28:56Z
<p>From the Plt-Scheme installation I have an example of C/Scheme interaction. There are two files: curses.c and curses-demo.ss. These files are available <a href="http://pre.plt-scheme.org/plt/collects/mzscheme/examples/" rel="nofollow">here</a>.
I've compiled curses.c, and trying to run curses-demo.ss</p>
<p>And I am getting the following error: "put: expects argument of type 'character, string, or byte string'; given "Hello World!""</p>
<p>It looks strange. Have any ideas what's happening?</p>
http://stackoverflow.com/questions/1722558/ajax-prototype-java-getting-partial-status-updates-during-execution/1722739#17227390Answer by Andrew Dashin for AJAX (prototype/java) getting partial status updates during executionAndrew Dashin2009-11-12T14:52:08Z2009-11-12T14:52:08Z<p>You may like <a href="http://directwebremoting.org/dwr/index.html" rel="nofollow">DWR</a>. With help of DWR you could make async requests to the server to get information about the progress of the specific job.</p>
http://stackoverflow.com/questions/1720298/how-can-i-auto-renew-data-from-mysql-without-refresh/1720443#17204430Answer by Andrew Dashin for How can I auto renew data from MySQL without refresh?Andrew Dashin2009-11-12T07:08:42Z2009-11-12T07:08:42Z<p>There is such thing as <a href="http://en.wikipedia.org/wiki/Comet%5F%28programming%29" rel="nofollow">comet</a>. With use of it you can make action to happen in browser by the server side's willing.</p>
http://stackoverflow.com/questions/242841/javascript-foreach-vs-for10JavaScript foreach Vs forAndrew Dashin2008-10-28T10:42:10Z2009-11-01T07:16:40Z
<p>Hi guys. How do you think, is there a big difference in foreach and for loops?
What kind of "for" do you prefer to use and why? Let's say we have an array of associative arrays:</p>
<pre><code>var myArray = [{'key': 'value'}, {'key': 'value1'}];
</code></pre>
<p>So we can iterate:</p>
<pre><code>for (var i = 0; i < myArray.length; i++)
</code></pre>
<p>And</p>
<pre><code>for (var i in myArray)
</code></pre>
<p>I don't see big difference. May there are any perfomance issues?</p>
http://stackoverflow.com/questions/1637931/system-properties-cant-be-resolved-in-spring-xml-using-maven/1638047#16380470Answer by Andrew Dashin for System properties can't be resolved in Spring XML using MavenAndrew Dashin2009-10-28T15:34:44Z2009-10-28T15:34:44Z<p>May be you should use identical variable names? I mean that you pass dataDir, but expect baseDir. Am I wrong?</p>
http://stackoverflow.com/questions/1515740/hot-to-update-mysqlfetcharray/1515768#15157684Answer by Andrew Dashin for Hot to update mysql_fetch_arrayAndrew Dashin2009-10-04T06:40:08Z2009-10-04T06:45:10Z<p>You should use quotes:</p>
<pre><code>mysql_query("UPDATE items SET link = '{$res2}' WHERE id = $row[0]");
</code></pre>
<p>And it would be ideal to use mysql_escape_string() function.</p>
<p>So:</p>
<pre><code>$rez2 = mysql_escape_string(get_final_url($url));
</code></pre>
<p>Also you're trying to use $row[0] as link and as id. Most likely you want $row[0] element to be an ID, and something like $row[n] where n > 0 to be a link. But if you still want to use link you should query in the following manner:</p>
<pre><code>$result2 = mysql_query("UPDATE items SET link = '$res2' WHERE link = {$row[0]}");
</code></pre>
<p>And do not forget to escape $row</p>
<p>It is a <strong>good</strong> idea to use mysql_fetch_assoc() function - in this case you'll get an associative array, so you'll be able access elements by sql column names. And as result you could do something like:</p>
<pre><code>$result = mysql_query("SELECT id, link FROM items LIMIT 3");
while($row = mysql_fetch_assoc($result))
{
$url=($row['link']);
$rez2 = mysql_escape_string(get_final_url($url));
$result2 = mysql_query("UPDATE items SET link = '{$res2}' WHERE id = {$row['id']}")
or die(mysql_error());
}
</code></pre>
<p>Also if ID is a primary key you do not need LIMIT 1 in the update query.</p>
http://stackoverflow.com/questions/1513166/onclick-function-that-mails-page-url-to-admin/1513237#15132374Answer by Andrew Dashin for Onclick function that mails page url to adminAndrew Dashin2009-10-03T08:55:25Z2009-10-04T06:08:33Z<p>This will create onClick handler for your link, and action will be done in case user will accept confirm message.</p>
<pre><code>var onClickHandler = function() {
if (confirm("Are you sure?")) {
$.post("your_php_mail_script.php", {broken_url: document.location});
}
};
$("#your_link_id").bind("click", onClickHandler);
</code></pre>
<p>And that is all. In your script you'll get broken url as POST parameter ($_POST['broken_url']). This will be done asynchronous.
I can't understand what you want to disable and after what action.</p>
http://stackoverflow.com/questions/1515685/jquery-hijack-a-link-and-find-its-parent/1515720#15157201Answer by Andrew Dashin for jQuery: hijack a link and find its parentAndrew Dashin2009-10-04T05:55:10Z2009-10-04T06:06:31Z<p>First of all:</p>
<pre><code> $(function() {
$(".pager A").live("click",
function() {
var $link = $(this);
$.get($(this).attr("href"),
function(response) {
$link.parent().attr("id").replaceWith(response); // This is wrong
});
return false;
});
});
</code></pre>
<p>You shouldn't use <strong>$(this)</strong> in callback function.</p>
<p>And the second - your link's parent element <strong>doesn't</strong> have id attribute. If you want to replace it's content use something like html() or text()</p>
http://stackoverflow.com/questions/1515676/set-cookies-on-file-upload-in-php/1515687#15156870Answer by Andrew Dashin for Set cookies on file upload in PHPAndrew Dashin2009-10-04T05:36:22Z2009-10-04T05:36:22Z<p>setcookie has <strong>"path"</strong> argument. If it is not specified: "The default value is the current directory that the cookie is being set in."
So most likely you're trying to set cookie for something like www.youdomain.com/actions/upload.php and in that case cookie will be set for /actions/ path.</p>
<p>Also check that call setcookie is done <strong>before</strong> any output from your script</p>
http://stackoverflow.com/questions/1514422/is-var-args-can-be-used-as-method-argument-only/1514478#15144780Answer by Andrew Dashin for Is var-args can be used as method argument only???Andrew Dashin2009-10-03T18:24:25Z2009-10-03T18:24:25Z<p>Example:</p>
<pre><code>public class VargArgsExample {
public static void printArgs(long requiredLongArgument, String... notRequiredStringArray) {
System.out.println(requiredLongArgument);
if (notRequiredStringArray != null) {
for(String arg: notRequiredStringArray) {
System.out.println(arg);
}
}
}
public static void main(String[] args) {
printArgs(1L);
printArgs(1L, "aa");
printArgs(1L, "aa", "bb");
}
</code></pre>
<p>}</p>
<p>As you can see this syntax sugar <strong>allows us to call methods without specifing varargs argument</strong>. If no vararg argument is passed than it is null.</p>
<p>There is no need in just another way of variable declaration, so it is not used for it. And that is why you're getting compile-time error.</p>
http://stackoverflow.com/questions/1513239/what-does-it-need-to-be-a-programmer/1513269#15132690Answer by Andrew Dashin for What does it need to be a programmer?Andrew Dashin2009-10-03T09:08:12Z2009-10-03T09:08:12Z<p>Programmer is who writing programs. To become him - start writing programs. That's all.</p>
http://stackoverflow.com/questions/1497569/how-to-execute-sql-script-file-using-jdbc/1497983#14979831Answer by Andrew Dashin for how to execute .sql script file using JDBCAndrew Dashin2009-09-30T13:06:05Z2009-09-30T13:06:05Z<p>You should be able to parse SQL file into statments. And run a single statment a time. If you know that your file consists of simple insert/update/delete statements you can use a semicolon as statement delimiter. In common case you have a task to create your specific SQL-dialect parser.</p>
http://stackoverflow.com/questions/1475850/how-to-know-if-materialized-view-update-is-running1How to know if MATERIALIZED VIEW update is running?Andrew Dashin2009-09-25T07:12:38Z2009-09-25T11:43:25Z
<p>I'm talking about oracle. I have a few materialized views, and they're updated from time to time (it is done with a scheduled task). It is easy to know last refresh date - just query USER_MVIEW_REFRESH_TIMES.
And is there any way to know if some views are being updated in the current moment?</p>
http://stackoverflow.com/questions/1219285/jquery-hide-in-safari/1219483#12194830Answer by Andrew Dashin for jQuery .hide() in Safari ?Andrew Dashin2009-08-02T18:26:34Z2009-08-02T18:26:34Z<p>I think that there is a problem with "blur" event. Look <a href="http://www.quirksmode.org/dom/events/index.html" rel="nofollow">here</a></p>
<blockquote>
<p>Safari and Chrome don’t support these events on links and/or form fields in all circumstances.</p>
</blockquote>
http://stackoverflow.com/questions/922534/tips-to-sync-up-webapps-and-svn/922742#9227420Answer by Andrew Dashin for Tips to sync up webapps and svn?Andrew Dashin2009-05-28T19:27:23Z2009-05-28T19:27:23Z<p>I've added application's exploaded directory to the project in IDE (Idea). When I need to try something "on the hot" - simply make changes in exploaded files. When I have a good result - simply copy changes to the working copy of source.</p>
<p>Probably it isn't the best solution but work for me. The only thing - it is not convinient when I need to change many files. But almost all work could be splited to small portions.</p>
http://stackoverflow.com/questions/919546/what-is-callback-polling/919626#9196260Answer by Andrew Dashin for What is callback polling?Andrew Dashin2009-05-28T07:32:50Z2009-05-28T07:32:50Z<p>So once you've established a connection with a server with a simple ajax-request, server can make a fast response and close connection. </p>
<p>And the idea of commet is on not closing this connection and sending data through it. This data could be a javascript that would be evaluated on the client side.</p>
<p>Also it could be a javascript that will open new connection when the time comes. And a think this is a callback polling - when pooling from the client is initiated on the server side.</p>
http://stackoverflow.com/questions/919387/how-can-i-calculate-the-difference-between-two-arraylists/919591#9195912Answer by Andrew Dashin for How can I calculate the difference between two ArrayLists?Andrew Dashin2009-05-28T07:24:32Z2009-05-28T07:24:32Z<p>You already have the right answer.
And if you want to make more complicated and interesting operations between Lists (collections) use <a href="http://commons.apache.org/collections/" rel="nofollow">apache commons collections</a> (CollectionUtils)
It allows you to make conjuction/disjunction, find intersection, check if one collection is a subset of another and other nice things.</p>
http://stackoverflow.com/questions/623863/problem-constructing-a-mysql-querymost-recent-per-item/623894#6238940Answer by Andrew Dashin for problem constructing a mysql query(most recent per item)Andrew Dashin2009-03-08T16:59:09Z2009-03-08T22:38:22Z<p><code>select p.id, p.type, max(c.whenadd) from photos p, comments c where p.id = c.photo_id group by photo.id order by c.whenadd desc</code> - this will return only commented photos. Use left join to return all photos. But it seems that you don't have foreign key between these two tables. Table comments should have a column photo_id (or something similar) to refer to the corresponding photo in <code>photo</code> table.</p>
http://stackoverflow.com/questions/623892/where-do-i-find-a-standard-trie-based-map-implementation-in-java/623916#623916-1Answer by Andrew Dashin for Where do I find a standard Trie based map implementation in Java?Andrew Dashin2009-03-08T17:09:19Z2009-03-08T17:09:19Z<p>What you need is <code>org.apache.commons.collections.FastTreeMap</code> , I think.</p>
http://stackoverflow.com/questions/623845/why-doesnt-java-have-a-way-of-specifying-unescaped-string-literals/623865#6238650Answer by Andrew Dashin for Why doesn't Java have a way of specifying unescaped String literals?Andrew Dashin2009-03-08T16:47:55Z2009-03-08T16:51:36Z<p>I think this question is like: "Why java is not indentation-sensitive like Python?"
Mentioned syntax is a sugar, but it is redundant (superfluous).</p>
http://stackoverflow.com/questions/568074/protocol-simplicity-versus-properness/623318#6233180Answer by Andrew Dashin for Protocol simplicity versus "properness"Andrew Dashin2009-03-08T09:30:12Z2009-03-08T09:30:12Z<p>These are two <em>right</em> solutions.
If you really have to worry about network traffic your solution is acceptable.
But you have also to remember that code maintenance takes the bigger part of code's lifetime, so making the code cleaner today you'll probably save some time in future (already mentioned maintenance).</p>
<p>In my opinion you should have good arguments founded on strong facts to think about such sort of optimizations.</p>
http://stackoverflow.com/questions/482819/erlang-quiz0Erlang QuizAndrew Dashin2009-01-27T09:52:53Z2009-01-28T02:15:28Z
<p>Hi, folks.</p>
<p>Many of you sometimes face with interesting code, problems, solutions. And all of this could be used as good interview questions or just for fun as any other quiz.
Could you please share such things? I think it would be interesting to create an Erlang quiz - a list with good questions and answers.</p>
http://stackoverflow.com/questions/232982/erlang-syntax3Erlang syntaxAndrew Dashin2008-10-24T10:10:04Z2008-10-27T17:08:43Z
<p>Hi folks, I'm going to create Erlang language support plugin for an Intellij Idea.
The big and first problem I have is in the JFlex erlang syntax definition. Does anybody know where can I get EBNF or BNF for Erlang?</p>
http://stackoverflow.com/questions/232982/erlang-syntax/233215#233215-1Answer by Andrew Dashin for Erlang syntaxAndrew Dashin2008-10-24T11:59:24Z2008-10-24T11:59:24Z<p>Sure. That was the first thing I thought about and I did. But, as I can see there should be lot of work done to make ebnf from this specification. And probably already exists ready solution that I can simply reuse.</p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/90984#9098468Answer by Andrew Dashin for What's your favorite "programmer" cartoon?Andrew Dashin2008-09-18T08:40:46Z2008-09-21T19:22:42Z<p><img src="http://andrewdashin.com/garbage/photo/programmers.gif" alt="Humor" /></p>
http://stackoverflow.com/questions/91256/best-resources-to-prepare-for-the-spring-framework-certification/91284#912840Answer by Andrew Dashin for Best resources to prepare for the "Spring Framework Certification"Andrew Dashin2008-09-18T09:48:02Z2008-09-18T09:48:02Z<p>It is good idea to start from "Spring in Action" (Manning)</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/91094#910940Answer by Andrew Dashin for What do you use to keep notes as a developer?Andrew Dashin2008-09-18T09:08:40Z2008-09-18T09:08:40Z<p>Notes on the Dashboard (MacOSX)</p>
http://stackoverflow.com/questions/1842972/how-do-i-run-a-class-in-a-war-from-the-command-lineComment by Andrew Dashin on How do I run a class in a WAR from the command line?Andrew Dashin2009-12-03T21:22:40Z2009-12-03T21:22:40ZHave you any reasons for this? Why won't you try to keep two different assemblies - one for web and one as a standalone application?http://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790032#1790032Comment by Andrew Dashin on Can I use throws in constructor?Andrew Dashin2009-11-25T09:20:46Z2009-11-25T09:20:46ZSo what? I mean that in most cases constructor shouldn't try to perform any action that could fail.http://stackoverflow.com/questions/1636572/spring-security-2-0-5-custom-login-form-cannot-see-errors-in-language-other-thaComment by Andrew Dashin on Spring security 2.0.5. custom login form. Cannot see errors in language other than English.Andrew Dashin2009-10-28T15:45:30Z2009-10-28T15:45:30ZProably spring-security remembers you. Have you tried to clean up cookies/session?http://stackoverflow.com/questions/1637931/system-properties-cant-be-resolved-in-spring-xml-using-mavenComment by Andrew Dashin on System properties can't be resolved in Spring XML using MavenAndrew Dashin2009-10-28T15:35:59Z2009-10-28T15:35:59Ztoolkit, Yep, I think so.http://stackoverflow.com/questions/1513241/how-do-i-refer-to-the-right-directoryComment by Andrew Dashin on How do I refer to the right Directory?Andrew Dashin2009-10-03T09:53:15Z2009-10-03T09:53:15ZAFAIK it means "Also Known As" :)http://stackoverflow.com/questions/1513241/how-do-i-refer-to-the-right-directoryComment by Andrew Dashin on How do I refer to the right Directory?Andrew Dashin2009-10-03T09:05:20Z2009-10-03T09:05:20ZMight getServletContext().getRealPath() will help youhttp://stackoverflow.com/questions/1497569/how-to-execute-sql-script-file-using-jdbc/1497614#1497614Comment by Andrew Dashin on how to execute .sql script file using JDBCAndrew Dashin2009-09-30T13:02:49Z2009-09-30T13:02:49ZThis solution is usefull for basic things only. For example if you're having a simple set of select/update/insert statements only etc. But if you'll try to create a stored procedure in such way... It'll fail.http://stackoverflow.com/questions/1475850/how-to-know-if-materialized-view-update-is-running/1476844#1476844Comment by Andrew Dashin on How to know if MATERIALIZED VIEW update is running?Andrew Dashin2009-09-25T13:52:26Z2009-09-25T13:52:26ZThank you for the response. But views are updated with external java task.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/90984#90984Comment by Andrew Dashin on What's your favorite "programmer" cartoon?Andrew Dashin2009-06-12T04:49:10Z2009-06-12T04:49:10ZThank you, fixed!http://stackoverflow.com/questions/623892/where-do-i-find-a-standard-trie-based-map-implementation-in-java/623908#623908Comment by Andrew Dashin on Where do I find a standard Trie based map implementation in Java?Andrew Dashin2009-03-09T13:26:03Z2009-03-09T13:26:03ZMy appologies, I did a mistake.http://stackoverflow.com/questions/623863/problem-constructing-a-mysql-querymost-recent-per-item/623894#623894Comment by Andrew Dashin on problem constructing a mysql query(most recent per item)Andrew Dashin2009-03-08T22:39:28Z2009-03-08T22:39:28ZYeah! You're right. (Updated my response)http://stackoverflow.com/questions/623892/where-do-i-find-a-standard-trie-based-map-implementation-in-java/623908#623908Comment by Andrew Dashin on Where do I find a standard Trie based map implementation in Java?Andrew Dashin2009-03-08T17:09:03Z2009-03-08T17:09:03ZTreeMap and HashMap are interfaces.http://stackoverflow.com/questions/623845/why-doesnt-java-have-a-way-of-specifying-unescaped-string-literals/623856#623856Comment by Andrew Dashin on Why doesn't Java have a way of specifying unescaped String literals?Andrew Dashin2009-03-08T16:51:33Z2009-03-08T16:51:33ZJava 7 will have properties also :)http://stackoverflow.com/questions/130396/are-there-constants-in-javascript/131286#131286Comment by Andrew Dashin on Are there constants in Javascript?Andrew Dashin2009-03-08T09:53:25Z2009-03-08T09:53:25ZPretty solution. But such things should be wrapped as a library to not reinvent them in any new project.http://stackoverflow.com/questions/622906/is-it-possible-to-simulate-constants-in-javascript-using-closures/622922#622922Comment by Andrew Dashin on Is it possible to simulate constants in Javascript using closures?Andrew Dashin2009-03-08T09:48:08Z2009-03-08T09:48:08ZFirefox supports this, but IE - doesn't. So writing such code isn't a good practice.