User Swish - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T15:05:15Z http://stackoverflow.com/feeds/user/1852 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1440360/lastinsertid-from-a-bulk-insert/1440512#1440512 0 Answer by Swish for lastInsertId from a bulk insert? Swish 2009-09-17T18:21:43Z 2009-09-17T18:21:43Z <p>If you used a datetime instead of just a date you could lookup the inserted id based on the user and the datetime values, but it is probably better so just not do a bulk insert if you need that data. Otherwise you end up running more queries anyway.</p> http://stackoverflow.com/questions/1370027/regex-to-find-string-inside-string-inside-string/1370076#1370076 -1 Answer by Swish for Regex to find string inside string inside string Swish 2009-09-02T20:58:19Z 2009-09-02T20:58:19Z <p>If you only want to capture the ultimately nested text you could just drop all tags inside the header tag with:</p> <pre><code>/&lt;([hH][1-3]).*&gt;(.*?)&lt;.*\/$1&gt;/ </code></pre> <p>Untested, but I think it should work.</p> http://stackoverflow.com/questions/1326414/mysql-join-syntax/1326429#1326429 2 Answer by Swish for MySQL Join Syntax Swish 2009-08-25T06:46:39Z 2009-08-25T06:46:39Z <p>I believe they are equivalent.</p> http://stackoverflow.com/questions/1326116/php-fatal-error-after-a-form-post/1326301#1326301 1 Answer by Swish for PHP: Fatal error after a form POST Swish 2009-08-25T05:54:38Z 2009-08-25T05:54:38Z <p>Just a guess, but maybe it has something to do with the assignment operation inside the function:</p> <pre><code>array_push($search['subdivision'], $y = $i['subdivision']); </code></pre> <p>Try this instead:</p> <pre><code>$y = $i['subdivision']; array_push($search['subdivision'], $y); </code></pre> http://stackoverflow.com/questions/1280557/extract-parameter-value-from-url-using-regular-expressions/1280567#1280567 0 Answer by Swish for Extract parameter value from url using regular expressions Swish 2009-08-14T22:50:25Z 2009-08-14T23:32:47Z <p>Not tested but this should work:</p> <pre><code>/\?v=([a-z0-9\-]+)\&amp;?/i </code></pre> http://stackoverflow.com/questions/1269166/some-uploads-fail-in-php/1269371#1269371 0 Answer by Swish for Some uploads fail in PHP Swish 2009-08-13T00:04:07Z 2009-08-13T00:04:07Z <p>These are good things to check for problems like this: <a href="http://us.php.net/manual/en/features.file-upload.common-pitfalls.php" rel="nofollow">Common Pitfalls</a> and the general <a href="http://us.php.net/manual/en/features.file-upload.php" rel="nofollow">Handling File Uploads</a></p> http://stackoverflow.com/questions/1256250/php-ob-from-cronjob/1256268#1256268 5 Answer by Swish for PHP ob_* from cronjob? Swish 2009-08-10T17:52:33Z 2009-08-10T17:52:33Z <p>You probably need to use an absolute path on 'somefile.php'. It is probably getting created in the pwd of cron. Or you could do a chdir at the beginning of the script of in the cron statement.</p> http://stackoverflow.com/questions/1242695/how-can-my-wxperl-application-ignore-keypresses-while-a-method-runs/1245697#1245697 1 Answer by Swish for How can my WxPerl application ignore keypresses while a method runs? Swish 2009-08-07T16:20:34Z 2009-08-07T16:20:34Z <p>I would use some sort of global or singleton to ensure the method only runs when it's not already running. Then it will just exit on subsequent keystrokes.</p> http://stackoverflow.com/questions/1242223/mysql-find-rows-matching-all-rows-from-joined-table/1242301#1242301 0 Answer by Swish for MySQL - Find rows matching all rows from joined table Swish 2009-08-07T00:40:18Z 2009-08-07T00:40:18Z <p>Would probably be faster if you broke this up into two queries. First, a join of the words and trackwords to net you all the trackids you need. Then go back to the track table and do:</p> <pre><code>WHERE t.id IN(...trackids here...) </code></pre> <p>but based on the query above all you're returning is t.id which you have from tw.trackid already.</p> http://stackoverflow.com/questions/1242237/jquery-pass-text-on-the-page-into-a-dialog/1242265#1242265 0 Answer by Swish for jquery - pass text on the page into a dialog Swish 2009-08-07T00:27:25Z 2009-08-07T00:27:25Z <p>Expanding on the previous answer, if you just want a dialog box it should be (jquery required):</p> <pre><code>&lt;a href="#" id="mylink"&gt;Some Text here&lt;/a&gt; $('#mylink').click(function(){ alert($(this).text()); return false; }); </code></pre> http://stackoverflow.com/questions/1230445/javascript-regex-how-to-bold-specific-words-with-regex/1230475#1230475 -1 Answer by Swish for Javascript Regex: How to bold specific words with regex? Swish 2009-08-04T23:42:26Z 2009-08-04T23:57:02Z <pre><code>var needle = 'cows'; var regexp = new RegExp('(^|\s)('+needle+')(\s|$)', 'ig'); var old_string = 'cows at www.cows.com, milk some COWs'; var new_string = old_string.replace(regexp, '&lt;b&gt;$1$2$3&lt;/b&gt;'); </code></pre> http://stackoverflow.com/questions/1228575/how-do-i-alter-array-keys-and-values-while-using-a-recursivearrayiterator/1229845#1229845 0 Answer by Swish for How do I alter array keys and values while using a RecursiveArrayIterator? Swish 2009-08-04T20:47:11Z 2009-08-04T20:47:11Z <p>Could it come down to passing by reference vs passing by value?</p> <p>For example try changing:</p> <pre><code>$cArray = new ArrayObject($aNestedArray); </code></pre> <p>to:</p> <pre><code>$cArray = new ArrayObject(&amp;$aNestedArray); </code></pre> http://stackoverflow.com/questions/1225062/are-there-any-good-alternatives-to-websvn/1225369#1225369 0 Answer by Swish for Are there any good alternatives to WebSVN? Swish 2009-08-04T01:29:32Z 2009-08-04T01:29:32Z <p>Not sure if it has the features you're looking for or not, I don't have experience with WebSVN, but we have been using <a href="http://beanstalkapp.com" rel="nofollow">Beanstalk</a> for over a year and have been pretty happy.</p> http://stackoverflow.com/questions/1225291/yet-another-world-city-auto-complete-field-question/1225351#1225351 0 Answer by Swish for Yet Another world city auto complete field question Swish 2009-08-04T01:17:59Z 2009-08-04T01:17:59Z <p>If you want to save the cost of going to the database all the time cache this data as a flat file in JSON format and load it via an AJAX request. Update the file from the db whenever it changes or daily or something like that. Populate your dropdown from the JSON data. You can loop through the array and add/remove suggestions as the user types.</p> http://stackoverflow.com/questions/1225321/using-php-to-rename-files-with-spaces/1225343#1225343 0 Answer by Swish for using PHP to rename files with spaces Swish 2009-08-04T01:12:23Z 2009-08-04T01:12:23Z <p>Add a:</p> <pre><code>print "$file\n"; </code></pre> <p>before the rename statement to see what you're getting.</p> <p>Also, you should add a strstr($fname, ' ') to your if statement before adding the file to the array so you only operate on filenames containing a space:</p> <pre><code>if ( ($fname != '.') &amp;&amp; ($fname != '..') &amp;&amp; !is_dir("./$fname" ) &amp;&amp; strstr($fname, ' ')) { $old_files[] = $fname; } </code></pre> http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain/937311#937311 0 Answer by Swish for Apache is incorrectly converting jsp pages to "text/plain" Swish 2009-06-01T23:33:59Z 2009-06-01T23:33:59Z <p>Are you proxying back to a cluster? Maybe one of the servers is configured wrong.</p> http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/285839#285839 0 Answer by Swish for What are your favorite Vim tricks? Swish 2008-11-12T23:40:28Z 2008-11-12T23:40:28Z <p>To turn auto indent on/off for pasting with add the following to the .vimrc:</p> <pre><code>nnoremap &lt;F2&gt; :set invpaste paste?&lt;CR&gt; imap &lt;F2&gt; &lt;C-O&gt;&lt;F2&gt; set pastetoggle=&lt;F2&gt; </code></pre> <p>That will give you a visual cue as well</p> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103755#103755 0 Answer by Swish for What was your first home computer? Swish 2008-09-19T17:09:01Z 2008-09-19T17:09:01Z <p>Commodore VIC-20 Woot Woot!<img src="http://kennmakk.files.wordpress.com/2008/01/vic20.jpg" alt="alt text" /> </p> http://stackoverflow.com/questions/90446/learning-php-for-fun-and-profit/98771#98771 0 Answer by Swish for Learning PHP for fun and profit Swish 2008-09-19T01:50:11Z 2008-09-19T01:50:11Z <p><a href="http://nettuts.com/php/learn-php-from-scratch-a-training-regimen/" rel="nofollow">NETTUTS</a> has an ongoing series that seems like a good start:</p> <p><a href="http://nettuts.com/php/learn-php-from-scratch-a-training-regimen/" rel="nofollow">Learn PHP FRom Scratch: A Training Regimen</a></p> <p><a href="http://nettuts.com/php/learn-php-from-scratch-part-2/" rel="nofollow">Week2</a></p> <p>As someone who has been coding PHP for 5 years it seemed like a good intro, I'm currently reading a similar series on RoR</p> http://stackoverflow.com/questions/97371/batch-script-to-copy-newest-file/97414#97414 1 Answer by Swish for Batch script to copy newest file Swish 2008-09-18T21:57:27Z 2008-09-18T21:57:27Z <p>I know you asked for Windows but thought I'd add this anyway,in Unix/Linux you could do:</p> <pre><code>cp `ls -t1 | head -1` /somedir/ </code></pre> <p>Which will list all files in the current directory sorted by modification time and then cp the most recent to /somedir/</p> http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/88815#88815 0 Answer by Swish for What is your single most favorite command-line trick using Bash? Swish 2008-09-18T00:03:11Z 2008-09-18T00:03:11Z <p>Good for making an exact recursive copy/backup of a directory including symlinks (rather than following them or ignoring them like cp):</p> <pre><code>$ mkdir new_dir $ cd old_dir $ tar cf - . | ( cd ../old_dir; tar xf - ) </code></pre> http://stackoverflow.com/questions/78932/how-do-i-programatically-set-the-value-of-an-select-box-element-using-javascript/79040#79040 0 Answer by Swish for How do I programatically set the value of an select box element using javascript? Swish 2008-09-17T01:43:51Z 2008-09-17T01:43:51Z <p>Why not add a variable for the element's Id and make it a reusable function?</p> <pre><code>function SelectElement(selectElementId, valueToSelect) { var element = document.getElementById(selectElementId); element.value = valueToSelect; } </code></pre> http://stackoverflow.com/questions/55463/one-big-sql-select-statement-or-several-small-ones-performance/60214#60214 0 Answer by Swish for One big SQL Select statement or several small ones (Performance)? Swish 2008-09-13T00:41:35Z 2008-09-13T00:41:35Z <p>Be careful when dealing with a merge table however. It has been my experience that although a single join can be good in most situations, when merge tables are involved you can run into strange situations.</p> http://stackoverflow.com/questions/60174/best-way-to-stop-sql-injection-in-php/60205#60205 -3 Answer by Swish for Best way to stop SQL Injection in PHP Swish 2008-09-13T00:28:00Z 2008-09-13T00:28:00Z <p>I would say something like this in addition to mysql_real_escape_string():</p> <pre><code>&lt;?php // Quote variable to make safe function quote_smart($value) { // Stripslashes if (get_magic_quotes_gpc()) { $value = stripslashes($value); } // Quote if not integer if (!is_numeric($value)) { $value = "'" . mysql_real_escape_string($value) . "'"; } return $value; } ?&gt; </code></pre> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/59822#59822 1 Answer by Swish for Learning Ruby on Rails Swish 2008-09-12T19:54:09Z 2008-09-12T19:54:09Z <p>This looks like a great resource for people like me who are coming from PHP to RoR</p> <p><a href="http://railsforphp.com/" rel="nofollow">http://railsforphp.com/</a> There's also a book <a href="http://www.pragprog.com/titles/ndphpr" rel="nofollow">Rails for PHP Developers</a></p> http://stackoverflow.com/questions/53139/what-do-you-use-to-capture-webpages-diagram-pictures-and-code-snippets-for-later/53302#53302 0 Answer by Swish for What do you use to capture webpages, diagram/pictures and code snippets for later reference? Swish 2008-09-10T01:47:31Z 2008-09-10T01:47:31Z <p><a href="https://addons.mozilla.org/en-US/firefox/addon/3615" rel="nofollow">Delicious Bookmarks</a> extension for Firefox</p> http://stackoverflow.com/questions/53132/mouse-for-programmer/53297#53297 4 Answer by Swish for Mouse for programmer Swish 2008-09-10T01:40:57Z 2008-09-10T01:40:57Z <p>@aku</p> <p><strong>Natural Wireless Laser Mouse 6000</strong></p> <p>I have been using the same mouse for about 4 months and love it. Was a little odd at first, but great as soon as I got used to it.</p> <p><img src="http://www.gizmodo.com.au/2007/10/22/nwlm6000.jpg" alt="alt text" title="Natural Wireless Laser Mouse 6000" /></p> http://stackoverflow.com/questions/53260/retaining-http-post-data-when-a-request-is-interrupted-by-a-login-page/53289#53289 2 Answer by Swish for Retaining HTTP POST data when a request is interrupted by a login page Swish 2008-09-10T01:35:26Z 2008-09-10T01:35:26Z <p>Just store all the necessary data from the POST in the session until after the login process is completed. Or have some sort of temp table in the db to store in and then retrieve it. Obviously this is pseudo-code but:</p> <pre><code>if ( !loggedIn ) { StorePostInSession(); ShowLoginForm(); } if ( postIsStored ) { RetrievePostFromSession(); } </code></pre> <p>Or something along those lines.</p> http://stackoverflow.com/questions/40943/how-to-automatically-start-a-download-in-php/40947#40947 7 Answer by Swish for How to Automatically Start a Download in PHP? Swish 2008-09-03T00:07:32Z 2008-09-03T00:49:42Z <p>Send the following headers before outputting the file:</p> <pre><code>header("Content-Disposition: attachment; filename=\"" . basename($File) . "\""); header("Content-Type: application/force-download"); header("Content-Length: " . filesize($File)); header("Connection: close"); </code></pre> <p>@grom: Interesting about the 'application/octet-stream' MIME type. I wasn't aware of that, have always just used 'application/force-download' :)</p> http://stackoverflow.com/questions/19162/php-script-to-populate-mysql-tables 7 PHP Script to populate MySQL tables Swish 2008-08-21T00:46:52Z 2008-08-31T00:21:27Z <p>Is anyone aware of a script/class (preferably in PHP) that would parse a given MySQL table's structure and then fill it with x number of rows of random test data based on the field types? I have never seen or heard of something like this and thought I would check before writing one myself.</p> http://stackoverflow.com/questions/1093667/http-live-streaming-ffmpeg-ffserver-and-iphone-os-3/1098222#1098222 Comment by Swish on HTTP Live Streaming, FFMPEG & FFSERVER, and iPhone OS 3 Swish 2009-09-09T23:11:19Z 2009-09-09T23:11:19Z Anyone got this actually working with a live stream from a dv source yet? I've been trying and keep getting errors from the segmenter... http://stackoverflow.com/questions/1292326/do-you-hide-email-addresses-to-spam-bots-on-websites/1292358#1292358 Comment by Swish on Do you hide email addresses to "spam bots" on websites? Swish 2009-08-18T19:05:33Z 2009-08-18T19:05:33Z I have used this method as well http://stackoverflow.com/questions/1280557/extract-parameter-value-from-url-using-regular-expressions/1280567#1280567 Comment by Swish on Extract parameter value from url using regular expressions Swish 2009-08-14T23:33:29Z 2009-08-14T23:33:29Z @MyWhriledView Updated for the hyphen http://stackoverflow.com/questions/1269312/custom-url-rewrite-in-wordpress Comment by Swish on Custom URL rewrite in wordpress Swish 2009-08-12T23:47:35Z 2009-08-12T23:47:35Z Can you give examples of the non-rewritten urls, the not clean ones that wordpress uses for those articles? http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/95139#95139 Comment by Swish on What are your favorite Vim tricks? Swish 2009-08-06T23:17:22Z 2009-08-06T23:17:22Z Can't believe I have used vim this long and didn't know this one http://stackoverflow.com/questions/1240796/how-can-i-reference-a-hash-with-a-variable-name/1240849#1240849 Comment by Swish on How can I reference a hash with a variable name? Swish 2009-08-06T19:29:10Z 2009-08-06T19:29:10Z +1 For typing faster than me :) http://stackoverflow.com/questions/1230445/javascript-regex-how-to-bold-specific-words-with-regex/1230475#1230475 Comment by Swish on Javascript Regex: How to bold specific words with regex? Swish 2009-08-04T23:48:46Z 2009-08-04T23:48:46Z He said he wanted space as the delimiter. To make it work with start and end of strings it could be '(^|\s)'+needle+'(\s|$)' not tested but I think that should work http://stackoverflow.com/questions/1225082/define-vs-variable-in-php/1225108#1225108 Comment by Swish on DEFINE vs Variable in PHP Swish 2009-08-04T01:26:31Z 2009-08-04T01:26:31Z A constant is not a variable by definition (no pun intended) ;-) http://stackoverflow.com/questions/941469/is-it-possible-to-capture-search-term-from-google-search/941515#941515 Comment by Swish on Is it possible to capture search term from Google search? Swish 2009-06-02T21:22:34Z 2009-06-02T21:22:34Z Instead of stristr() use preg_match(&quot;/google\.[a-z]{2,4}$/i&quot;, $referringPage['host']) to prevent the google.domain.com case mentioned above http://stackoverflow.com/questions/941879/php-setting-permissions-so-i-can-write-a-file/941920#941920 Comment by Swish on PHP: Setting permissions so I can write a file? Swish 2009-06-02T21:09:04Z 2009-06-02T21:09:04Z May not work on the containing folder if php is running as a module and the webserver doesn't have permissions to chmod the containing directory (or from the CLI if the user calling the script doesn't either). http://stackoverflow.com/questions/376623/php-printing-undefined-variables-without-warning/376628#376628 Comment by Swish on PHP: printing undefined variables without warning Swish 2008-12-19T00:42:48Z 2008-12-19T00:42:48Z Fully agree with the suggestion that this is not best practice. http://stackoverflow.com/questions/11362/what-is-your-favorite-password-storage-tool/11365#11365 Comment by Swish on What is your favorite password storage tool? Swish 2008-09-18T20:19:37Z 2008-09-18T20:19:37Z I use the portable version from <a href="http://www.portableapps.com" rel="nofollow">portableapps.com</a> and love it, you can download it at <a href="http://portableapps.com/apps/utilities/keepass_portable" rel="nofollow">portableapps.com/apps/utilities/&hellip;</a>