User Swish - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T15:05:15Zhttp://stackoverflow.com/feeds/user/1852http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1440360/lastinsertid-from-a-bulk-insert/1440512#14405120Answer by Swish for lastInsertId from a bulk insert?Swish2009-09-17T18:21:43Z2009-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-1Answer by Swish for Regex to find string inside string inside stringSwish2009-09-02T20:58:19Z2009-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>/<([hH][1-3]).*>(.*?)<.*\/$1>/
</code></pre>
<p>Untested, but I think it should work.</p>
http://stackoverflow.com/questions/1326414/mysql-join-syntax/1326429#13264292Answer by Swish for MySQL Join SyntaxSwish2009-08-25T06:46:39Z2009-08-25T06:46:39Z<p>I believe they are equivalent.</p>
http://stackoverflow.com/questions/1326116/php-fatal-error-after-a-form-post/1326301#13263011Answer by Swish for PHP: Fatal error after a form POSTSwish2009-08-25T05:54:38Z2009-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#12805670Answer by Swish for Extract parameter value from url using regular expressionsSwish2009-08-14T22:50:25Z2009-08-14T23:32:47Z<p>Not tested but this should work:</p>
<pre><code>/\?v=([a-z0-9\-]+)\&?/i
</code></pre>
http://stackoverflow.com/questions/1269166/some-uploads-fail-in-php/1269371#12693710Answer by Swish for Some uploads fail in PHPSwish2009-08-13T00:04:07Z2009-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#12562685Answer by Swish for PHP ob_* from cronjob?Swish2009-08-10T17:52:33Z2009-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#12456971Answer by Swish for How can my WxPerl application ignore keypresses while a method runs?Swish2009-08-07T16:20:34Z2009-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#12423010Answer by Swish for MySQL - Find rows matching all rows from joined tableSwish2009-08-07T00:40:18Z2009-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#12422650Answer by Swish for jquery - pass text on the page into a dialogSwish2009-08-07T00:27:25Z2009-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><a href="#" id="mylink">Some Text here</a>
$('#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-1Answer by Swish for Javascript Regex: How to bold specific words with regex? Swish2009-08-04T23:42:26Z2009-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, '<b>$1$2$3</b>');
</code></pre>
http://stackoverflow.com/questions/1228575/how-do-i-alter-array-keys-and-values-while-using-a-recursivearrayiterator/1229845#12298450Answer by Swish for How do I alter array keys and values while using a RecursiveArrayIterator?Swish2009-08-04T20:47:11Z2009-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(&$aNestedArray);
</code></pre>
http://stackoverflow.com/questions/1225062/are-there-any-good-alternatives-to-websvn/1225369#12253690Answer by Swish for Are there any good alternatives to WebSVN?Swish2009-08-04T01:29:32Z2009-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#12253510Answer by Swish for Yet Another world city auto complete field questionSwish2009-08-04T01:17:59Z2009-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#12253430Answer by Swish for using PHP to rename files with spacesSwish2009-08-04T01:12:23Z2009-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 != '.') && ($fname != '..') && !is_dir("./$fname" ) && strstr($fname, ' '))
{
$old_files[] = $fname;
}
</code></pre>
http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain/937311#9373110Answer by Swish for Apache is incorrectly converting jsp pages to "text/plain"Swish2009-06-01T23:33:59Z2009-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#2858390Answer by Swish for What are your favorite Vim tricks?Swish2008-11-12T23:40:28Z2008-11-12T23:40:28Z<p>To turn auto indent on/off for pasting with add the following to the .vimrc:</p>
<pre><code>nnoremap <F2> :set invpaste paste?<CR>
imap <F2> <C-O><F2>
set pastetoggle=<F2>
</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#1037550Answer by Swish for What was your first home computer?Swish2008-09-19T17:09:01Z2008-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#987710Answer by Swish for Learning PHP for fun and profitSwish2008-09-19T01:50:11Z2008-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#974141Answer by Swish for Batch script to copy newest fileSwish2008-09-18T21:57:27Z2008-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#888150Answer by Swish for What is your single most favorite command-line trick using Bash?Swish2008-09-18T00:03:11Z2008-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#790400Answer by Swish for How do I programatically set the value of an select box element using javascript?Swish2008-09-17T01:43:51Z2008-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#602140Answer by Swish for One big SQL Select statement or several small ones (Performance)?Swish2008-09-13T00:41:35Z2008-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-3Answer by Swish for Best way to stop SQL Injection in PHPSwish2008-09-13T00:28:00Z2008-09-13T00:28:00Z<p>I would say something like this in addition to mysql_real_escape_string():</p>
<pre><code><?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;
}
?>
</code></pre>
http://stackoverflow.com/questions/55574/learning-ruby-on-rails/59822#598221Answer by Swish for Learning Ruby on RailsSwish2008-09-12T19:54:09Z2008-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#533020Answer by Swish for What do you use to capture webpages, diagram/pictures and code snippets for later reference?Swish2008-09-10T01:47:31Z2008-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#532974Answer by Swish for Mouse for programmerSwish2008-09-10T01:40:57Z2008-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#532892Answer by Swish for Retaining HTTP POST data when a request is interrupted by a login pageSwish2008-09-10T01:35:26Z2008-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#409477Answer by Swish for How to Automatically Start a Download in PHP?Swish2008-09-03T00:07:32Z2008-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-tables7PHP Script to populate MySQL tablesSwish2008-08-21T00:46:52Z2008-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#1098222Comment by Swish on HTTP Live Streaming, FFMPEG & FFSERVER, and iPhone OS 3Swish2009-09-09T23:11:19Z2009-09-09T23:11:19ZAnyone 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#1292358Comment by Swish on Do you hide email addresses to "spam bots" on websites?Swish2009-08-18T19:05:33Z2009-08-18T19:05:33ZI have used this method as wellhttp://stackoverflow.com/questions/1280557/extract-parameter-value-from-url-using-regular-expressions/1280567#1280567Comment by Swish on Extract parameter value from url using regular expressionsSwish2009-08-14T23:33:29Z2009-08-14T23:33:29Z@MyWhriledView Updated for the hyphenhttp://stackoverflow.com/questions/1269312/custom-url-rewrite-in-wordpressComment by Swish on Custom URL rewrite in wordpressSwish2009-08-12T23:47:35Z2009-08-12T23:47:35ZCan 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#95139Comment by Swish on What are your favorite Vim tricks?Swish2009-08-06T23:17:22Z2009-08-06T23:17:22ZCan't believe I have used vim this long and didn't know this onehttp://stackoverflow.com/questions/1240796/how-can-i-reference-a-hash-with-a-variable-name/1240849#1240849Comment by Swish on How can I reference a hash with a variable name?Swish2009-08-06T19:29:10Z2009-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#1230475Comment by Swish on Javascript Regex: How to bold specific words with regex? Swish2009-08-04T23:48:46Z2009-08-04T23:48:46ZHe 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 workhttp://stackoverflow.com/questions/1225082/define-vs-variable-in-php/1225108#1225108Comment by Swish on DEFINE vs Variable in PHPSwish2009-08-04T01:26:31Z2009-08-04T01:26:31ZA 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#941515Comment by Swish on Is it possible to capture search term from Google search?Swish2009-06-02T21:22:34Z2009-06-02T21:22:34ZInstead of stristr() use preg_match("/google\.[a-z]{2,4}$/i", $referringPage['host']) to prevent the google.domain.com case mentioned abovehttp://stackoverflow.com/questions/941879/php-setting-permissions-so-i-can-write-a-file/941920#941920Comment by Swish on PHP: Setting permissions so I can write a file?Swish2009-06-02T21:09:04Z2009-06-02T21:09:04ZMay 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#376628Comment by Swish on PHP: printing undefined variables without warningSwish2008-12-19T00:42:48Z2008-12-19T00:42:48ZFully agree with the suggestion that this is not best practice.http://stackoverflow.com/questions/11362/what-is-your-favorite-password-storage-tool/11365#11365Comment by Swish on What is your favorite password storage tool?Swish2008-09-18T20:19:37Z2008-09-18T20:19:37ZI 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/…</a>