User Shore - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T13:54:36Zhttp://stackoverflow.com/feeds/user/104015http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1419452/how-to-update-multiple-rows-in-the-same-table-of-mysql-with-php0How to update multiple rows in the same table of MySQL with PHP?Shore2009-09-14T02:29:53Z2009-12-16T09:00:03Z
<p>If only one row with a distinct field is to be updated,I can use:</p>
<pre><code>insert into tab(..) value(..) on duplicate key update ...
</code></pre>
<p>But now it's not the case,I need to update 4 rows inside the same table,which have its field "accountId" equal to $_SESSION['accountId'].</p>
<p>What I can get out of my mind at the moment is:</p>
<pre><code>delete from tab where accountId = $_SESSION['accountId'],
</code></pre>
<p>then insert the new rows.</p>
<p>Which obviously is not the best solution.</p>
<p>Has someone a better idea about this?</p>
http://stackoverflow.com/questions/1291866/how-to-constraint-viewport-of-dialog-with-jquery0how to constraint viewport of dialog with jQuery?Shore2009-08-18T04:54:47Z2009-12-11T20:00:03Z
<p>I'm using the plugin offered here:</p>
<p><a href="http://jqueryui.com/demos/dialog/" rel="nofollow">http://jqueryui.com/demos/dialog/</a></p>
<p>I'm poping up the dialog when clicking on a link, and positions where click happens.</p>
<p>But the link is near the edge of page,so the dialog goes out of view.</p>
<p>How to constraint it so that dialog will never go out?</p>
<p>BTW,is there a way to know if dialog has been initiated without using another parameter?</p>
http://stackoverflow.com/questions/1470672/which-single-action-in-seo-do-you-find-most-powerful-2Which single action in SEO do you find most powerful?Shore2009-09-24T09:37:39Z2009-12-09T14:20:19Z
<p>As developing stage comes to the end,</p>
<p>SEO is just to begin.</p>
<p>Let's say,there are enormous SEO methods,but just post the one which you think most effective!</p>
http://stackoverflow.com/questions/1464306/ajax-timeout-but-server-side-not-terminate0Ajax timeout but server side not terminateShore2009-09-23T06:43:41Z2009-12-09T09:55:50Z
<p>I'm using jQuery and use $.ajax to send out request.</p>
<p>My computer is pretty slow(which can be fixed by adding updating the memory),</p>
<p>and the request times out frequently.</p>
<p>But I've found that although it's timeout,</p>
<p>process at server side doesn't terminate.</p>
<p>Is is normal or something wrong?</p>
http://stackoverflow.com/questions/1355823/table-inside-div-but-stil-higher-than-parent-div0Table inside div,but stil higher than parent divShore2009-08-31T04:44:50Z2009-12-09T02:00:03Z
<p>Why does height="100%" attribute fail to work in the following snippet?</p>
<pre><code><table height="100%" width="100%">
</code></pre>
<p><strong>EDIT</strong>:
code as follows:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<div style="width:250px;height:90px;">
<table id="experiences-mirror" width="100%" border="1" cellpadding="0" height="100%">
<caption>Table Name</caption>
<tbody><tr><th>Company</th><th>Job Title</th><th>Industry</th><th>Job Function</th><th>Start Date</th><th>End Date</th></tr>
<tr title="hint">
<td><input name="company1" class="w100" type="text"></td><td><input name="jobTitle1" class="w100" value="" type="text"></td><td><input name="industry1" class="w100" value="" type="text"></td><td><input name="jobFunction1" class="w100" type="text"></td><td><input name="startDate1" class="w100" type="text"></td><td><input name="endDate1" class="w100" type="text"></td>
</tr>
<tr title="hint">
<td><input name="company2" class="w100" type="text"></td><td><input name="jobTitle2" class="w100" type="text"></td><td><input name="industry2" class="w100" type="text"></td><td><input name="jobFunction2" class="w100" type="text"></td><td><input name="startDate2" class="w100" type="text"></td><td><input name="endDate2" class="w100" type="text"></td>
</tr>
<tr title="hint">
<td><input name="company3" class="w100" type="text"></td><td><input name="jobTitle3" class="w100" type="text"></td><td><input name="industry3" class="w100" type="text"></td><td><input name="jobFunction3" class="w100" type="text"></td><td><input name="startDate3" class="w100" type="text"></td><td><input name="endDate3" class="w100" type="text"></td>
</tr>
<tr title="hint">
<td><input name="company4" class="w100" type="text"></td><td><input name="jobTitle4" class="w100" type="text"></td><td><input name="industry4" class="w100" type="text"></td><td><input name="jobFunction4" class="w100" type="text"></td><td><input name="startDate4" class="w100" type="text"></td><td><input name="endDate4" class="w100" type="text"></td>
</tr>
</tbody></table>
</div>
</code></pre>
http://stackoverflow.com/questions/987372/patch-format0patch formatShore2009-06-12T15:40:14Z2009-12-07T04:00:03Z
<p>What does the following mean ?</p>
<pre><code>diff -rBNu src.orig/java/org/apache/nutch/analysis/NutchAnalysisConstants.java src/java/org/apache/nutch/analysis/NutchAnalysisConstants.java
--- src.orig/java/org/apache/nutch/analysis/NutchAnalysisConstants.java 2009-03-10 11:34:01.000000000 -0700
+++ src/java/org/apache/nutch/analysis/NutchAnalysisConstants.java 2009-03-10 14:11:55.000000000 -0700
@@ -4,30 +4,34 @@
+ int CJK = 21;
+ int DIGIT = 22;
int DEFAULT = 0;
String[] tokenImage = {
"<EOF>",
+ "\"OR\"",
"<WORD>",
"<ACRONYM>",
"<SIGRAM>",
@@ -39,6 +43,8 @@
"\"\\\"\"",
"\":\"",
"\"/\"",
+ "\"(\"",
+ "\")\"",
"\".\"",
"\"@\"",
"\"\\\'\"",
</code></pre>
http://stackoverflow.com/questions/936957/linux-file-system-permission-issue0linux file system permission issueShore2009-06-01T21:44:34Z2009-12-06T15:47:22Z
<p>I'm deploying nutch. At first I just left the index file under <code>/root/nutch1.0</code>. This works fine when run from command line. However, when I search from web, it always returns <code>0 hit</code>.</p>
<p>I finally found the reason: It's because the index file is located under <code>/root</code> that causes the failure to open the file. Things returned to normal when I move the index file to another directory.</p>
<p>But my question is:</p>
<p>I didn't change the permissions of the index file (just <code>cp</code> xxx another-directory). Why did the access rights change?</p>
<pre><code>drwxr-x--- 12 root root 4096 Jun 1 14:49 root
drwxr-xr-x 14 root root 4096 Nov 16 2007 usr
</code></pre>
<p>I put files under <code>/usr</code> and it worked.</p>
http://stackoverflow.com/questions/970151/how-to-check-moddeflate-is-enabled-in-apache0how to check mod_deflate is enabled in apache?Shore2009-06-09T13:38:20Z2009-12-06T11:59:59Z
<p>Is there such a command that can tell this?</p>
http://stackoverflow.com/questions/942824/how-to-investigate-ports-opened-by-a-certain-process-in-linux0how to investigate ports opened by a certain process in linux?Shore2009-06-03T02:36:04Z2009-12-05T17:26:02Z
<p>Suppose the PID of the process is already known</p>
http://stackoverflow.com/questions/937160/how-to-use-inittab-to-auto-restart-a-php-programme0how to use inittab to auto-restart a PHP programme?Shore2009-06-01T22:39:52Z2009-12-05T17:25:28Z
<p>Seems it has a respawn parameter,</p>
<p>But I haven't figured out how to use it.</p>
http://stackoverflow.com/questions/908678/is-there-any-good-php-obfuscator0Is there any good PHP obfuscator?Shore2009-05-26T02:25:28Z2009-12-01T08:29:20Z
<p>It should be free,easy to use,</p>
<p>and that's all!</p>
http://stackoverflow.com/questions/1178048/could-someone-recommend-a-good-online-video-to-learn-uml1could someone recommend a good online video to learn UML ?Shore2009-07-24T14:25:53Z2009-12-01T02:00:04Z
<p>I've found this one:
<a href="http://www.softwaretrainingtutorials.com/uml.php" rel="nofollow">http://www.softwaretrainingtutorials.com/uml.php</a></p>
<p>but that's not complete!</p>
http://stackoverflow.com/questions/1035412/any-way-to-implement-web-ui-in-a-modualized-method0Any way to implement web UI in a modualized method?Shore2009-06-23T21:41:25Z2009-11-29T06:00:03Z
<p>Say,divide the who page into multiple subparts,each subpart is composed of several elements.</p>
<p>After each subpart is finished,the whole web UI is also done.</p>
<p>Is this kinda doable or platonic?</p>
<p>I think this is mainly to cope with:</p>
<pre><code>Sometimes each subparts is ok,but when integrate them into a whole set,things will go wrong.How to avoid this?
</code></pre>
<p><strong>EDIT</strong>:It should be in plain html/javascript/css/PHP</p>
http://stackoverflow.com/questions/913296/how-to-see-cookie-information-of-chrome-browser0how to see cookie information of chrome browser?Shore2009-05-26T23:33:33Z2009-11-25T19:15:50Z
<p>Is there such a plugin?</p>
http://stackoverflow.com/questions/1458724/how-to-set-unset-cookie-with-jquery2How to set/unset cookie with jQuery?Shore2009-09-22T08:09:50Z2009-11-22T07:16:19Z
<p>How to set a cookie named 'test' and value '1'?</p>
<p><strong>EDIT</strong></p>
<p>especially,how to unset?</p>
http://stackoverflow.com/questions/970798/what-does-this-configuration-in-apache-mean0what does this configuration in apache mean?Shore2009-06-09T15:29:16Z2009-11-21T20:00:02Z
<pre><code>Header append Vary User-Agent env=!dont-vary
</code></pre>
<p>Can anyone give a detailed explanation for this?</p>
http://stackoverflow.com/questions/884525/how-to-investigate-what-a-process-is-doing0how to investigate what a process is doing?Shore2009-05-19T19:14:26Z2009-11-20T08:55:10Z
<p>I know this can be checked from /proc/PID directory,</p>
<p>but don't know how to,</p>
<p>can any one show me the way?</p>
http://stackoverflow.com/questions/873853/rename-not-supporting-multi-byte-characters1rename not supporting multi-byte charactersShore2009-05-17T03:36:32Z2009-11-19T09:20:28Z
<p>If I write:</p>
<p>rename('php109.tmp','test.jpg');</p>
<p>then it's fine and working.</p>
<p>but if I change it into:</p>
<p>rename('php109.tmp','中文.jpg');</p>
<p>it'll report "No such file or directory...".</p>
<p>But the multi-byte characters can be written into database then read out fine,</p>
<p>why it fails when towards rename ?</p>
http://stackoverflow.com/questions/1357078/whats-the-difference-between-nbsp-and8What's the difference between " " and " "?Shore2009-08-31T11:49:37Z2009-11-18T05:24:07Z
<p>Both of them mean space, but is there any difference?</p>
http://stackoverflow.com/questions/917640/any-way-to-select-without-causing-locking-in-mysql3Any way to select without causing locking in mysql?Shore2009-05-27T19:43:03Z2009-11-15T19:39:51Z
<p>query:
SELECT COUNT(online.account_id) cnt from online;</p>
<p>but online table is also modified by an event,</p>
<p>so frequently I can see lock by running <code>show processlist</code></p>
<p>Is there any grammar in mysql that can make select statement not causing locks?</p>
<p>And I've forgotten to mention above that it's on a mysql slave database,</p>
<p>after I added into my.cnf:transaction-isolation = READ-UNCOMMITTED</p>
<p>the slave will meet with error:</p>
<pre><code> Error 'Binary logging not possible. Message: Transaction level 'READ-UNCOMMITTED' in InnoDB is not safe for binlog mode 'STATEMENT'' on query
</code></pre>
<p>so,Is there a compatible way to do this?</p>
http://stackoverflow.com/questions/1035123/whats-the-current-cloud-computing-market-share-distribution0What's the current cloud computing market share distribution?Shore2009-06-23T20:52:25Z2009-11-10T02:22:20Z
<p>Is that kind of information available for public?</p>
http://stackoverflow.com/questions/1414527/will-all-files-be-compressed-by-using-obstartobgzhandler-at-line-1-with-ph2Will all files be compressed by using ob_start("ob_gzhandler"); at line 1 with PHP?Shore2009-09-12T07:11:24Z2009-11-08T13:43:00Z
<pre><code><?php
ob_start("ob_gzhandler");
?>
<script type="text/javascript" src="Util.js"></script>
<script type="text/javascript" src="connection.js"></script>
....
<?php ob_end_flush(); ?>
</code></pre>
<p>Will the files included by or also be compressed?</p>
http://stackoverflow.com/questions/973098/what-does-http-1-1-302-mean-exactly2What does HTTP/1.1 302 mean exactly?Shore2009-06-10T00:06:06Z2009-11-04T11:18:25Z
<p>Some article I read once said that it means jumping (from one URI to another), but I detected this "302" even when there was actually no jumping at all!</p>
http://stackoverflow.com/questions/1384983/how-to-fix-png-opacity-and-still-support-positioning-at-the-same-time0How to fix "png opacity" and still support positioning at the same time?Shore2009-09-06T05:59:31Z2009-11-02T04:07:05Z
<p><img src="http://maishudi.com/icons%5Fns6.png" alt="alt text" /></p>
<p>How to correct it so that it's always like,like in firefox?</p>
<p><strong>EDIT</strong>:</p>
<p>I tried some fix,but not working for me,</p>
<p>I'm using something like below in my application:</p>
<pre><code>background:transparent url(../static/icons_ns6.png) no-repeat scroll 0 -80px;
</code></pre>
<p>Say,I need to position the background image.</p>
http://stackoverflow.com/questions/1647889/is-it-possible-to-remove-a-specific-page-thats-already-indexed-by-google-1Is it possible to remove a specific page that's already indexed by Google? [closed]Shore2009-10-30T03:32:51Z2009-10-30T03:36:15Z
<p>I'm in this trouble now.</p>
http://stackoverflow.com/questions/1647336/what-does-imgrel-mean-in-this-jquery-plugin0What does img[@rel= mean in this jQuery plugin?Shore2009-10-30T00:20:49Z2009-10-30T00:28:18Z
<p><a href="http://files.cnblogs.com/opper/galleria.js" rel="nofollow">Here</a></p>
<p>Is it a deprecated selector?</p>
http://stackoverflow.com/questions/1642333/php-static-variable0PHP static variableShore2009-10-29T08:44:36Z2009-10-29T10:01:15Z
<pre><code>$count = 5;
function get_count()
{
static $count = 0;
return $count++;
}
echo $count;
++$count;
echo get_count();
echo get_count();
</code></pre>
<p>I guessed it outputs 5 0 1 and it's right,but I need a better explanation?</p>
http://stackoverflow.com/questions/1642437/call-time-reference-issue-with-php0call time reference issue with phpShore2009-10-29T09:07:12Z2009-10-29T09:31:29Z
<pre><code>function get_arr($arr)
{
unset($arr[0]);
}
$arr1 = array(1,2);
$arr2 = array(1,2);
get_arr(&$arr1);
get_arr($arr2);
echo count($arr1);
echo count($arr2);
</code></pre>
<p>I got :</p>
<blockquote>
<p>Warning: Call-time pass-by-reference
has been deprecated; If you would like
to pass it by reference, modify the
declaration of get_arr(). If you
would like to enable call-time
pass-by-reference, you can set
allow_call_time_pass_reference to true
in your INI file</p>
</blockquote>
<p>But the output is:</p>
<pre><code>12
</code></pre>
<p>Which means the call time reference takes effect.</p>
<p>Why the two places output contradictary messages?</p>
http://stackoverflow.com/questions/1642311/php-code-analysis0php code analysisShore2009-10-29T08:36:48Z2009-10-29T08:46:56Z
<pre><code>$test = 'aaaaaa';
$abc = & $test;
unset($test);
echo $abc;
</code></pre>
<p>It outputs 'aaaaaa',which is already unset,can you explain this?</p>
http://stackoverflow.com/questions/1037991/how-much-more-performant-is-postgres-than-mysql-on-fulltext-search0How much more performant is Postgres than MYSQL on fulltext search?Shore2009-06-24T12:14:14Z2009-10-27T23:14:50Z
<p>I've been a MYSQL user,never tried Postgres .</p>
<p>But MYSQL has bottle neck on fulltext search when the data set is huge.</p>
http://stackoverflow.com/questions/1647889/is-it-possible-to-remove-a-specific-page-thats-already-indexed-by-google/1647899#1647899Comment by Shore on Is it possible to remove a specific page that's already indexed by Google?Shore2009-10-31T03:01:07Z2009-10-31T03:01:07ZBut the page returns a json object.http://stackoverflow.com/questions/1647322/whats-the-difference-of-echo-print-printr-in-php/1647335#1647335Comment by Shore on What's the difference of echo,print,print_r in PHP?Shore2009-10-30T01:08:05Z2009-10-30T01:08:05ZWhat is language constructure?http://stackoverflow.com/questions/1642251/how-to-use-cms-systems-like-drupal-and-so-on-for-crawl-onlyComment by Shore on How to use cms systems like drupal and so on for crawl only?Shore2009-10-29T08:38:49Z2009-10-29T08:38:49ZMaybe I should ask this way:how are most cms users retrieving their data?http://stackoverflow.com/questions/1476128/can-someone-explain-this-bat-code/1476171#1476171Comment by Shore on Can someone explain this bat code?Shore2009-09-25T09:15:34Z2009-09-25T09:15:34ZI still doesn't see why delayed expansion is needed.http://stackoverflow.com/questions/1470672/which-single-action-in-seo-do-you-find-most-powerful/1474244#1474244Comment by Shore on Which single action in SEO do you find most powerful?Shore2009-09-25T09:13:34Z2009-09-25T09:13:34ZGood trick,+1 http://stackoverflow.com/questions/1476128/can-someone-explain-this-bat-code/1476171#1476171Comment by Shore on Can someone explain this bat code?Shore2009-09-25T09:11:19Z2009-09-25T09:11:19ZWhat does ~ mean?http://stackoverflow.com/questions/1475322/contradictory-information-about-mysql-result-resource-in-phpComment by Shore on Contradictory information about MySQL result resource in PHPShore2009-09-25T03:50:42Z2009-09-25T03:50:42ZI've updated my post with query in it:)http://stackoverflow.com/questions/1475322/contradictory-information-about-mysql-result-resource-in-php/1475328#1475328Comment by Shore on Contradictory information about MySQL result resource in PHPShore2009-09-25T03:47:20Z2009-09-25T03:47:20ZIt's from mysql_query() call.How can two continuous lines report such contradictory information?http://stackoverflow.com/questions/1475054/how-to-charge-the-timer-on-main-board-by-selfComment by Shore on How to charge the timer on main board by self?Shore2009-09-25T01:58:21Z2009-09-25T01:58:21ZCan I charge it myself?http://stackoverflow.com/questions/1470672/which-single-action-in-seo-do-you-find-most-powerful/1474244#1474244Comment by Shore on Which single action in SEO do you find most powerful?Shore2009-09-25T01:11:53Z2009-09-25T01:11:53ZCan I make h1 hidden,just for search engine?http://stackoverflow.com/questions/1470672/which-single-action-in-seo-do-you-find-most-powerful/1470688#1470688Comment by Shore on Which single action in SEO do you find most powerful?Shore2009-09-24T15:23:48Z2009-09-24T15:23:48ZThe first link is good!http://stackoverflow.com/questions/1472027/how-to-escape-only-in-php/1472046#1472046Comment by Shore on How to escape only "'" in PHP?Shore2009-09-24T14:33:59Z2009-09-24T14:33:59ZIt works like charm!!http://stackoverflow.com/questions/1471748/anyone-knows-more-about-this-rte-plugin-in-jquery/1471761#1471761Comment by Shore on Anyone knows more about this rte plugin in jQuery?Shore2009-09-24T14:14:13Z2009-09-24T14:14:13ZIt turns out that should set 0 to the id of textarea.http://stackoverflow.com/questions/1471748/anyone-knows-more-about-this-rte-plugin-in-jquery/1471761#1471761Comment by Shore on Anyone knows more about this rte plugin in jQuery?Shore2009-09-24T13:57:33Z2009-09-24T13:57:33ZTrust me,it's not working.I think maybe rte is not imediately created,and set_content() is called before creating.http://stackoverflow.com/questions/1471748/anyone-knows-more-about-this-rte-plugin-in-jquery/1471761#1471761Comment by Shore on Anyone knows more about this rte plugin in jQuery?Shore2009-09-24T13:47:43Z2009-09-24T13:47:43ZThis is not working,I need to set it when initialization:
$('.rte1').rte({
controls_rte: rte_toolbar,
controls_html: html_toolbar
}).set_content('My content');