User Shore - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T13:54:36Z http://stackoverflow.com/feeds/user/104015 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1419452/how-to-update-multiple-rows-in-the-same-table-of-mysql-with-php 0 How to update multiple rows in the same table of MySQL with PHP? Shore 2009-09-14T02:29:53Z 2009-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-jquery 0 how to constraint viewport of dialog with jQuery? Shore 2009-08-18T04:54:47Z 2009-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 -2 Which single action in SEO do you find most powerful? Shore 2009-09-24T09:37:39Z 2009-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-terminate 0 Ajax timeout but server side not terminate Shore 2009-09-23T06:43:41Z 2009-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-div 0 Table inside div,but stil higher than parent div Shore 2009-08-31T04:44:50Z 2009-12-09T02:00:03Z <p>Why does height="100%" attribute fail to work in the following snippet?</p> <pre><code>&lt;table height="100%" width="100%"&gt; </code></pre> <p><strong>EDIT</strong>: code as follows:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;div style="width:250px;height:90px;"&gt; &lt;table id="experiences-mirror" width="100%" border="1" cellpadding="0" height="100%"&gt; &lt;caption&gt;Table Name&lt;/caption&gt; &lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Company&lt;/th&gt;&lt;th&gt;Job Title&lt;/th&gt;&lt;th&gt;Industry&lt;/th&gt;&lt;th&gt;Job Function&lt;/th&gt;&lt;th&gt;Start Date&lt;/th&gt;&lt;th&gt;End Date&lt;/th&gt;&lt;/tr&gt; &lt;tr title="hint"&gt; &lt;td&gt;&lt;input name="company1" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="jobTitle1" class="w100" value="" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="industry1" class="w100" value="" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="jobFunction1" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="startDate1" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="endDate1" class="w100" type="text"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr title="hint"&gt; &lt;td&gt;&lt;input name="company2" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="jobTitle2" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="industry2" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="jobFunction2" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="startDate2" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="endDate2" class="w100" type="text"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr title="hint"&gt; &lt;td&gt;&lt;input name="company3" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="jobTitle3" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="industry3" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="jobFunction3" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="startDate3" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="endDate3" class="w100" type="text"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr title="hint"&gt; &lt;td&gt;&lt;input name="company4" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="jobTitle4" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="industry4" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="jobFunction4" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="startDate4" class="w100" type="text"&gt;&lt;/td&gt;&lt;td&gt;&lt;input name="endDate4" class="w100" type="text"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/987372/patch-format 0 patch format Shore 2009-06-12T15:40:14Z 2009-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 = { "&lt;EOF&gt;", + "\"OR\"", "&lt;WORD&gt;", "&lt;ACRONYM&gt;", "&lt;SIGRAM&gt;", @@ -39,6 +43,8 @@ "\"\\\"\"", "\":\"", "\"/\"", + "\"(\"", + "\")\"", "\".\"", "\"@\"", "\"\\\'\"", </code></pre> http://stackoverflow.com/questions/936957/linux-file-system-permission-issue 0 linux file system permission issue Shore 2009-06-01T21:44:34Z 2009-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-apache 0 how to check mod_deflate is enabled in apache? Shore 2009-06-09T13:38:20Z 2009-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-linux 0 how to investigate ports opened by a certain process in linux? Shore 2009-06-03T02:36:04Z 2009-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-programme 0 how to use inittab to auto-restart a PHP programme? Shore 2009-06-01T22:39:52Z 2009-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-obfuscator 0 Is there any good PHP obfuscator? Shore 2009-05-26T02:25:28Z 2009-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-uml 1 could someone recommend a good online video to learn UML ? Shore 2009-07-24T14:25:53Z 2009-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-method 0 Any way to implement web UI in a modualized method? Shore 2009-06-23T21:41:25Z 2009-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-browser 0 how to see cookie information of chrome browser? Shore 2009-05-26T23:33:33Z 2009-11-25T19:15:50Z <p>Is there such a plugin?</p> http://stackoverflow.com/questions/1458724/how-to-set-unset-cookie-with-jquery 2 How to set/unset cookie with jQuery? Shore 2009-09-22T08:09:50Z 2009-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-mean 0 what does this configuration in apache mean? Shore 2009-06-09T15:29:16Z 2009-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-doing 0 how to investigate what a process is doing? Shore 2009-05-19T19:14:26Z 2009-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-characters 1 rename not supporting multi-byte characters Shore 2009-05-17T03:36:32Z 2009-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-and 8 What's the difference between "&nbsp;" and " "? Shore 2009-08-31T11:49:37Z 2009-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-mysql 3 Any way to select without causing locking in mysql? Shore 2009-05-27T19:43:03Z 2009-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-distribution 0 What's the current cloud computing market share distribution? Shore 2009-06-23T20:52:25Z 2009-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-ph 2 Will all files be compressed by using ob_start("ob_gzhandler"); at line 1 with PHP? Shore 2009-09-12T07:11:24Z 2009-11-08T13:43:00Z <pre><code>&lt;?php ob_start("ob_gzhandler"); ?&gt; &lt;script type="text/javascript" src="Util.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="connection.js"&gt;&lt;/script&gt; .... &lt;?php ob_end_flush(); ?&gt; </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-exactly 2 What does HTTP/1.1 302 mean exactly? Shore 2009-06-10T00:06:06Z 2009-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-time 0 How to fix "png opacity" and still support positioning at the same time? Shore 2009-09-06T05:59:31Z 2009-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 -1 Is it possible to remove a specific page that's already indexed by Google? [closed] Shore 2009-10-30T03:32:51Z 2009-10-30T03:36:15Z <p>I'm in this trouble now.</p> http://stackoverflow.com/questions/1647336/what-does-imgrel-mean-in-this-jquery-plugin 0 What does img[@rel= mean in this jQuery plugin? Shore 2009-10-30T00:20:49Z 2009-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-variable 0 PHP static variable Shore 2009-10-29T08:44:36Z 2009-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-php 0 call time reference issue with php Shore 2009-10-29T09:07:12Z 2009-10-29T09:31:29Z <pre><code>function get_arr($arr) { unset($arr[0]); } $arr1 = array(1,2); $arr2 = array(1,2); get_arr(&amp;$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-analysis 0 php code analysis Shore 2009-10-29T08:36:48Z 2009-10-29T08:46:56Z <pre><code>$test = 'aaaaaa'; $abc = &amp; $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-search 0 How much more performant is Postgres than MYSQL on fulltext search? Shore 2009-06-24T12:14:14Z 2009-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#1647899 Comment by Shore on Is it possible to remove a specific page that's already indexed by Google? Shore 2009-10-31T03:01:07Z 2009-10-31T03:01:07Z But the page returns a json object. http://stackoverflow.com/questions/1647322/whats-the-difference-of-echo-print-printr-in-php/1647335#1647335 Comment by Shore on What's the difference of echo,print,print_r in PHP? Shore 2009-10-30T01:08:05Z 2009-10-30T01:08:05Z What is language constructure? http://stackoverflow.com/questions/1642251/how-to-use-cms-systems-like-drupal-and-so-on-for-crawl-only Comment by Shore on How to use cms systems like drupal and so on for crawl only? Shore 2009-10-29T08:38:49Z 2009-10-29T08:38:49Z Maybe 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#1476171 Comment by Shore on Can someone explain this bat code? Shore 2009-09-25T09:15:34Z 2009-09-25T09:15:34Z I 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#1474244 Comment by Shore on Which single action in SEO do you find most powerful? Shore 2009-09-25T09:13:34Z 2009-09-25T09:13:34Z Good trick,+1 http://stackoverflow.com/questions/1476128/can-someone-explain-this-bat-code/1476171#1476171 Comment by Shore on Can someone explain this bat code? Shore 2009-09-25T09:11:19Z 2009-09-25T09:11:19Z What does ~ mean? http://stackoverflow.com/questions/1475322/contradictory-information-about-mysql-result-resource-in-php Comment by Shore on Contradictory information about MySQL result resource in PHP Shore 2009-09-25T03:50:42Z 2009-09-25T03:50:42Z I've updated my post with query in it:) http://stackoverflow.com/questions/1475322/contradictory-information-about-mysql-result-resource-in-php/1475328#1475328 Comment by Shore on Contradictory information about MySQL result resource in PHP Shore 2009-09-25T03:47:20Z 2009-09-25T03:47:20Z It'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-self Comment by Shore on How to charge the timer on main board by self? Shore 2009-09-25T01:58:21Z 2009-09-25T01:58:21Z Can I charge it myself? http://stackoverflow.com/questions/1470672/which-single-action-in-seo-do-you-find-most-powerful/1474244#1474244 Comment by Shore on Which single action in SEO do you find most powerful? Shore 2009-09-25T01:11:53Z 2009-09-25T01:11:53Z Can I make h1 hidden,just for search engine? http://stackoverflow.com/questions/1470672/which-single-action-in-seo-do-you-find-most-powerful/1470688#1470688 Comment by Shore on Which single action in SEO do you find most powerful? Shore 2009-09-24T15:23:48Z 2009-09-24T15:23:48Z The first link is good! http://stackoverflow.com/questions/1472027/how-to-escape-only-in-php/1472046#1472046 Comment by Shore on How to escape only "'" in PHP? Shore 2009-09-24T14:33:59Z 2009-09-24T14:33:59Z It works like charm!! http://stackoverflow.com/questions/1471748/anyone-knows-more-about-this-rte-plugin-in-jquery/1471761#1471761 Comment by Shore on Anyone knows more about this rte plugin in jQuery? Shore 2009-09-24T14:14:13Z 2009-09-24T14:14:13Z It 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#1471761 Comment by Shore on Anyone knows more about this rte plugin in jQuery? Shore 2009-09-24T13:57:33Z 2009-09-24T13:57:33Z Trust 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#1471761 Comment by Shore on Anyone knows more about this rte plugin in jQuery? Shore 2009-09-24T13:47:43Z 2009-09-24T13:47:43Z This is not working,I need to set it when initialization: $('.rte1').rte({ controls_rte: rte_toolbar, controls_html: html_toolbar }).set_content('My content');