User scronide - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:50:53Z http://stackoverflow.com/feeds/user/22844 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1281964/drupal-for-users-creating-sub-users/1283139#1283139 2 Answer by scronide for Drupal for users creating "sub"-users? scronide 2009-08-15T23:53:23Z 2009-08-15T23:53:23Z <p>You should be able to do much of you want using roles, permissions and the <a href="http://drupal.org/project/subuser" rel="nofollow">Subuser</a> module for Drupal 6.</p> http://stackoverflow.com/questions/1280115/css-positioning-inside-of-an-html-table/1280308#1280308 1 Answer by scronide for CSS Positioning inside of an HTML Table scronide 2009-08-14T21:26:40Z 2009-08-14T21:26:40Z <p><a href="http://www.w3.org/TR/CSS2/visuren.html#choose-position" rel="nofollow">CSS 2.1 Specification</a>:</p> <blockquote> <p>The effect of 'position:relative' on table-row-group, table-header-group, table-footer-group, table-row, table-column-group, table-column, table-cell, and table-caption elements is undefined.</p> </blockquote> <p>So the browsers fall back to the next parent whose behavior is considered defined: <code>table</code>. </p> <p>One solution is to force those rows to display as blocks:</p> <pre><code>tr.aRelativelyPositionedClass { display: block; } </code></pre> http://stackoverflow.com/questions/1252073/php-pregreplace-problem/1253404#1253404 1 Answer by scronide for PHP preg_replace problem scronide 2009-08-10T06:37:42Z 2009-08-10T06:37:42Z <p>This should do the job for the anchor tags, at least:</p> <pre><code>&lt;?php function prepend_proxy($matches) { $url = 'http://example.prefix'; $prepend = $matches[2] ? $matches[2] : $url; $prepend = 'proxy2.php?url='. $prepend; return $matches[1] . $prepend . $matches[3]; } $new_content = preg_replace_callback( '|(href=[\'"]?)(https?://)?([^\'"\s]+[\'"]?)|i', 'prepend_proxy', $content ); ?&gt; </code></pre> http://stackoverflow.com/questions/1253194/any-way-i-can-share-a-information-within-2-difference-domain/1253207#1253207 0 Answer by scronide for Any way I can share a information within 2 difference domain? scronide 2009-08-10T05:17:01Z 2009-08-10T05:17:01Z <p>You could either <code>$_POST</code> or <code>$_GET</code> from one domain to the other, or read and write from the filesystem or a shared database.</p> http://stackoverflow.com/questions/832257/javascript-multiple-replace/832276#832276 2 Answer by scronide for Javascript multiple replace scronide 2009-05-06T23:23:40Z 2009-05-06T23:23:40Z <p>Match against a global regular expression:</p> <pre><code>anotherString = someString.replace(/cat/g, 'dog'); </code></pre> http://stackoverflow.com/questions/827343/whats-wrong-with-this-gmail-contact-importer-script-for-drupal/830946#830946 0 Answer by scronide for What's wrong with this gmail contact importer script for Drupal? scronide 2009-05-06T18:16:37Z 2009-05-06T18:16:37Z <p>Without testing it directly, I would try replacing lines 96 - 104 with this:</p> <pre><code>$mnode = $enodes-&gt;item(0); if (isset($mnode) &amp;&amp; is_object($mnode)) { $email = $mnode-&gt;getAttribute('address'); // NOTE: Keep in mind that $mnode-&gt;getAttribute('rel') tells you what kind of email it is. // NOTE: Also remember that there can be multiple emails per entry! if (!empty($email)) { if (empty($name)) { $contacts[] = $email; } else { $contacts[$name] = $email; } } } </code></pre> <p>gd:email is an optional element according to the <a href="http://code.google.com/apis/gdata/elements.html#gdEmail" rel="nofollow">Google Data API</a>. It's optional in Gmail's implementation too. The module you're using assumes it exists and fails when it doesn't.</p> <p>Multiple e-mail addresses per contact remain unhandled, as per the NOTE: comment.</p> http://stackoverflow.com/questions/763909/jquery-change-div-button-states-click-disable/765926#765926 1 Answer by scronide for jQuery Change Div Button States & Click Disable scronide 2009-04-19T19:17:59Z 2009-04-19T19:17:59Z <p>I would change your click() handler to this:</p> <pre><code>$("div.__button_image").click(function () { $(this).removeClass("__button_image_hover"); $(this).addClass("__button_image_clicked"); /* * Add look class to all buttons, then remove it from this one */ $("div.__button_image").addClass("look"); $(this).removeClass("look"); /* * Remove click handler from all buttons */ $("div.__button_image").unbind('click'); jQuery.get('/do/request'); }); </code></pre> http://stackoverflow.com/questions/762467/figure-out-why-this-simple-comparison-is-showing-not-equal-in-php/762538#762538 2 Answer by scronide for Figure out why this simple comparison is showing not equal in PHP scronide 2009-04-17T23:14:57Z 2009-04-17T23:14:57Z <p>Try converting and rounding before you compare them:</p> <pre><code>$storedTotal = round(floatval($storedTotal), 2); $calculatedTotal = round(floatval($calculatedTotal), 2); if ($storedTotal != calculatedTotal) { ... </code></pre> http://stackoverflow.com/questions/762106/how-would-i-fix-the-last-day-of-the-month-errors-that-result-with-this-php-code/762169#762169 2 Answer by scronide for How would I fix the last day of the month errors that result with this php code? scronide 2009-04-17T20:54:53Z 2009-04-17T20:54:53Z <p>Use 1 instead of date('d') in your code; however, any time you see duplicated code, where only a number changes, you should be thinking about loops:</p> <pre><code>&lt;?php for ($i = 0; $i &lt; 12; $i++) { $month = date('F', mktime(0, 0, 0, date('m') + $i, 1, date('Y'))); ?&gt; &lt;a href="http://mydomain.com/&lt;?php echo strtolower($month); ?&gt;" title="&lt;?php echo $month; ?&gt;"&gt;&lt;?php echo $month; ?&gt;&lt;/a&gt;&lt;br /&gt; &lt;?php } ?&gt; </code></pre> http://stackoverflow.com/questions/426063/are-release-candidates-safe-to-use-for-production/426103#426103 0 Answer by scronide for Are release candidates safe to use for production? scronide 2009-01-08T21:39:03Z 2009-01-08T21:39:03Z <p>By definition, no, but you should use your own judgment based on the product, vendor, the updates it contains and what your needs are.</p> http://stackoverflow.com/questions/418428/whats-wrong-with-my-mysql-query/423513#423513 1 Answer by scronide for What's wrong with my MySQL query? scronide 2009-01-08T07:26:28Z 2009-01-08T07:26:28Z <p>Add a multi-column index to <code>table4</code> based on the <code>content_type</code>, <code>value_type</code> and <code>function</code> columns.</p> <p>Your query isn't selecting all the columns from <code>table4</code>, it's selecting all the rows; this isn't much of a problem when there's only two.</p> <p>Note that a MySQL query execution plan might not give the give the answer you expect when you're working with a small number of records; it can be faster for the database to do a full table scan in those circumstances.</p> http://stackoverflow.com/questions/419584/what-is-the-difference-between-jpg-jpeg-png-bmp-gif-tiff-im/419610#419610 0 Answer by scronide for What is the difference between "JPG" / "JPEG" / "PNG" / "BMP" / "GIF" / "TIFF" Image? scronide 2009-01-07T08:45:02Z 2009-01-07T08:45:02Z <p><a href="http://en.wikipedia.org/wiki/Image_file_formats" rel="nofollow">http://en.wikipedia.org/wiki/Image_file_formats</a></p> <p>Use JPEG, PNG or GIF for web applications based on their strengths:</p> <ul> <li>JPEG is best for photos</li> <li>GIF is best for icons and line-art</li> <li>PNG is a fair replacement for both and has the best support for transparency</li> </ul> http://stackoverflow.com/questions/419457/screen-scraping-through-ajax-and-javascript/419503#419503 1 Answer by scronide for Screen scraping through AJAX and javascript scronide 2009-01-07T07:46:16Z 2009-01-07T07:46:16Z <p>Ajax/XMLHttpRequest calls are restricted to a same-site policy for security reasons; you can't use them to directly load remote sites. Firefox 3.1 <a href="https://developer.mozilla.org/En/HTTP_Access_Control" rel="nofollow">apparently</a> added support for cross-site requests, but I haven't heard if any other browsers jumped.</p> http://stackoverflow.com/questions/418980/why-cakephp-doesnt-support-a-foreign-key-with-multiple-columns/419351#419351 3 Answer by scronide for Why CakePHP doesn't support a foreign key with multiple columns scronide 2009-01-07T06:03:41Z 2009-01-07T06:03:41Z <p>Only the CakePHP team would know for sure. One of the team, Nate Abdele, <a href="http://groups.google.com/group/cake-php/msg/255c641339eef6ac" rel="nofollow">said this</a> about multi-column primary keys back in February 2007:</p> <blockquote> <p>I could come up with a million other reasons why multi-column primary keys are a dumb idea, but I think the most important one for 2007 is that it breaks REST architecture on the web, as there is no single point of reference to a piece of data, and that data may now change up on you without you knowing it, so objects can no longer be consistently referenced from a single URI.</p> </blockquote> <p>I assume this would be his argument against multi-column foreign keys too.</p> http://stackoverflow.com/questions/414327/how-would-i-go-about-creating-a-new-mysql-table-with-the-results-of-myisamftdum/415573#415573 1 Answer by scronide for How would I go about creating a new MySQL table with the results of "myisam_ftdump -c"? scronide 2009-01-06T05:38:16Z 2009-01-06T05:38:16Z <p>Dump the results > to a file and use a <a href="http://dev.mysql.com/doc/refman/5.1/en/load-data.html" rel="nofollow">LOAD DATA INFILE</a> query to import the contents back into your new table.</p> <p>Note:</p> <blockquote> <p>For security reasons, when reading text files located on the server, the files must either reside in the database directory or be readable by all. Also, to use LOAD DATA INFILE on server files, you must have the FILE privilege. </p> </blockquote> http://stackoverflow.com/questions/412427/auto-indent-in-notepad/412492#412492 2 Answer by scronide for Auto-Indent in Notepad++ scronide 2009-01-05T07:26:53Z 2009-01-05T07:26:53Z <p>Notepad++ will only auto-insert subsequent indents if you manually indent the first line in a block; otherwise you can re-indent your code after the fact using <code>TextFX &gt; TextFX Edit &gt; Reindent C++ code</code>.</p> http://stackoverflow.com/questions/402200/layering-images-in-css-possible-to-put-2-images-in-same-element/411705#411705 1 Answer by scronide for Layering images in CSS - possible to put 2 images in same element? scronide 2009-01-04T21:27:46Z 2009-01-04T21:27:46Z <p>Layered backgrounds are part of the <a href="http://www.w3.org/TR/css3-background/#layering" rel="nofollow">CSS3 Working Draft</a> but, as far as I know, support for them is limited to WebKit/KHTML-based browsers such as Safari, Chrome, Konqueror and OmniWeb.</p> <p>Using your example code, this would look like:</p> <pre><code>body { font-size: 62.5%; /* Resets 1em to 10px */ font-family: Verdana, Arial, Sans-Serif; background-color: #9D5922; color: #000; margin-left: auto; margin-right: auto; margin: 0; padding: 0; background: url("images/top.gif") left bottom repeat, url("images/desk.gif") left bottom repeat; } </code></pre> http://stackoverflow.com/questions/407550/javascript-and-translations/410584#410584 1 Answer by scronide for Javascript and Translations scronide 2009-01-04T06:49:50Z 2009-01-04T06:49:50Z <p>I usually load the appropriate language values as a JavaScript object in a separate file which the rest of my code can reference:</p> <pre><code>var messages = { "loading": "Chargement" } alert(messages.loading); </code></pre> <p>The language library will be cached on the client side after the first load and you can improve load efficiency by splitting values into separate files that are loaded based on context: e.g. a small library for public operations, an additional one behind a login, etc.</p> http://stackoverflow.com/questions/410532/whats-the-best-alternative-to-an-out-of-control-switch-statement/410546#410546 2 Answer by scronide for What's the best alternative to an out of control switch statement? scronide 2009-01-04T06:10:30Z 2009-01-04T06:10:30Z <p>There's nothing wrong with having 20 cases in a switch statement. You can tidy the code by refactoring and, at the very least, move the case processing into methods/functions.</p> http://stackoverflow.com/questions/409286/datetime-vs-timestamp/410458#410458 4 Answer by scronide for datetime vs timestamp? scronide 2009-01-04T04:26:29Z 2009-01-04T04:26:29Z <p>I always use DATETIME fields for anything other than row metadata (date created or modified).</p> <p>As <a href="http://dev.mysql.com/doc/refman/5.1/en/datetime.html" rel="nofollow">mentioned</a> in the MySQL documentation:</p> <blockquote> <p>The DATETIME type is used when you need values that contain both date and time information. MySQL retrieves and displays DATETIME values in 'YYYY-MM-DD HH:MM:SS' format. The supported range is '1000-01-01 00:00:00' to '9999-12-31 23:59:59'.</p> <p>...</p> <p>The TIMESTAMP data type has a range of '1970-01-01 00:00:01' UTC to '2038-01-09 03:14:07' UTC. It has varying properties, depending on the MySQL version and the SQL mode the server is running in.</p> </blockquote> <p>You're quite likely to hit the lower limit on TIMESTAMPs in general use -- e.g. storing birthdays.</p> http://stackoverflow.com/questions/220915/where-can-i-find-a-free-lightweight-yui-like-compressor-for-php/220951#220951 4 Answer by scronide for Where can I find a free, lightweight YUI-like compressor for PHP? scronide 2008-10-21T06:17:41Z 2008-10-21T06:17:41Z <p>Compressing JavaScript has benefits because the script has to be sent over the Net to the client before it can be interpreted -- the smaller the file size, the faster it reaches the end user. PHP is interpreted directly on the server, so compressing the code won't affect how fast it runs.</p> <p>If it's speed gains you want, you should look into a <a href="http://en.wikipedia.org/wiki/PHP_accelerator" rel="nofollow">PHP accelerator</a> that will cache the compiled PHP bytecode of your app.</p> http://stackoverflow.com/questions/220878/how-does-google-reader-get-every-item-in-an-rss-feed/220889#220889 9 Answer by scronide for How does Google Reader get every item in an RSS feed? scronide 2008-10-21T05:49:00Z 2008-10-21T05:54:47Z <p>Google follows one instance of the feed for all its users, so they've been tracking and storing Slashdot articles, for example, long before any new subscriber starts reading.</p> <p>To do the same, you would have to poll the RSS feeds you want at regular intervals and store any unique articles you find locally.</p> http://stackoverflow.com/questions/190612/where-can-i-find-real-world-examples-of-applications-written-in-python/190621#190621 5 Answer by scronide for Where can I find real-world examples of applications written in python? scronide 2008-10-10T09:18:17Z 2008-10-10T09:18:17Z <p><a href="http://sourceforge.net/softwaremap/trove_list.php?form_cat=18" rel="nofollow">SourceForge.net Software Map</a></p> <p>Filter > Require + Programming Language + Python > Apply</p> http://stackoverflow.com/questions/190503/xml-text-format/190606#190606 0 Answer by scronide for XML Text Format scronide 2008-10-10T09:10:17Z 2008-10-10T09:10:17Z <p>You can reformat XML files in Eclipse using Source > Format</p> http://stackoverflow.com/questions/188489/group-collaboration-open-source-php-app/190418#190418 1 Answer by scronide for group collaboration open source php app scronide 2008-10-10T07:30:48Z 2008-10-10T07:30:48Z <p>If you really want something similar to BaseCamp, you should try out <a href="http://www.projectpier.org/" rel="nofollow">ProjectPier</a>.</p> <p>If you think you'll need more community features than a project management tool can offer, I would suggest jumping into <a href="http://drupal.org/" rel="nofollow">Drupal</a>.</p> http://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential/173443#173443 1 Answer by scronide for PHP Arrays: A good way to check if an array is associative or sequential? scronide 2008-10-06T07:17:18Z 2008-10-06T07:57:00Z <pre><code>function is_associative($arr) { return (array_merge($arr) !== $arr || !is_numeric(implode(array_keys($arr)))); } </code></pre> http://stackoverflow.com/questions/173332/how-should-i-express-fractions-like-15-16ths-in-html/173402#173402 7 Answer by scronide for How should I express fractions like 15/16ths in HTML? scronide 2008-10-06T07:02:25Z 2008-10-06T07:02:25Z <pre><code>1/2 -- &amp;frac12; 1/4 -- &amp;frac14; 3/4 -- &amp;frac34; 1/8 -- &amp;frac18; 3/8 -- &amp;frac38; 5/8 -- &amp;frac58; 7/8 -- &amp;frac78; 1/3 -- &amp;#8531; 2/3 -- &amp;#8532; 1/5 -- &amp;#8533; 2/5 -- &amp;#8534; 3/5 -- &amp;#8535; 4/5 -- &amp;#8536; 1/6 -- &amp;#8537; 5/6 -- &amp;#8538; </code></pre> <p>...but you could also encode them as decimals: 15/16 = 0.9375 ;)</p> http://stackoverflow.com/questions/169428/php-datetime-microseconds-always-returns-0/169798#169798 1 Answer by scronide for PHP DateTime microseconds always returns 0 scronide 2008-10-04T05:28:32Z 2008-10-04T05:28:32Z <p><a href="http://www.php.net/manual/en/function.date-create.php" rel="nofollow">date_create</a></p> <blockquote> <p>time: String in a format accepted by strtotime(), defaults to "now".</p> </blockquote> <p><a href="http://www.php.net/manual/en/function.strtotime.php" rel="nofollow">strtotime</a></p> <blockquote> <p>time: The string to parse, according to the GNU » Date Input Formats syntax. Before PHP 5.0.0, microseconds weren't allowed in the time, since PHP 5.0.0 they are allowed but ignored.</p> </blockquote> http://stackoverflow.com/questions/145337/checking-if-array-is-multidimensional-or-not/150647#150647 3 Answer by scronide for Checking if array is multidimensional or not? scronide 2008-09-29T21:02:18Z 2008-09-29T21:02:18Z <p>For PHP 4.2.0 or newer:</p> <pre><code>function is_multi($array) { return (count($array) != count($array, 1)); } </code></pre> http://stackoverflow.com/questions/1141566/merge-or-combine-an-array-like-this-on-php/1141773#1141773 Comment by scronide on Merge or combine an array like this? on PHP scronide 2009-07-17T19:07:17Z 2009-07-17T19:07:17Z This does the trick, but it's important to note that array_replace() only exists since PHP 5.3.0 (20090630). http://stackoverflow.com/questions/1141566/merge-or-combine-an-array-like-this-on-php/1141696#1141696 Comment by scronide on Merge or combine an array like this? on PHP scronide 2009-07-17T06:54:47Z 2009-07-17T06:54:47Z This won't work because it assumes the child array values are keyed on 0, when none of those in the example are. http://stackoverflow.com/questions/1141566/merge-or-combine-an-array-like-this-on-php/1141589#1141589 Comment by scronide on Merge or combine an array like this? on PHP scronide 2009-07-17T06:08:21Z 2009-07-17T06:08:21Z You've introduced a syntax error: &quot;= +=&quot;. http://stackoverflow.com/questions/1141566/merge-or-combine-an-array-like-this-on-php/1141597#1141597 Comment by scronide on Merge or combine an array like this? on PHP scronide 2009-07-17T06:06:03Z 2009-07-17T06:06:03Z You lose the keys relying on array_push. You'd have to replace that with $another[$y] = $z instead. http://stackoverflow.com/questions/1141566/merge-or-combine-an-array-like-this-on-php/1141589#1141589 Comment by scronide on Merge or combine an array like this? on PHP scronide 2009-07-17T06:04:12Z 2009-07-17T06:04:12Z You'll lose the keys with array_merge. You'd have to use the + operator instead. http://stackoverflow.com/questions/762106/how-would-i-fix-the-last-day-of-the-month-errors-that-result-with-this-php-code/762145#762145 Comment by scronide on How would I fix the last day of the month errors that result with this php code? scronide 2009-04-17T20:58:24Z 2009-04-17T20:58:24Z This also retains the problem of the original code: +$i month won't work for dates that don't exist in the next month. http://stackoverflow.com/questions/419584/what-is-the-difference-between-jpg-jpeg-png-bmp-gif-tiff-im/419617#419617 Comment by scronide on What is the difference between "JPG" / "JPEG" / "PNG" / "BMP" / "GIF" / "TIFF" Image? scronide 2009-01-07T08:58:04Z 2009-01-07T08:58:04Z Browser support isn't limited to JPEG, PNG and GIF: formats such as BMP, ICO, SVG and XBM -- amongst others -- are natively supported in many browsers. http://stackoverflow.com/questions/101774/what-is-your-bug-task-tracking-tool/102054#102054 Comment by scronide on What is your bug/task tracking tool? scronide 2009-01-07T07:23:42Z 2009-01-07T07:23:42Z I find its whizzy web interface to be as flaky as it is heavy, which is a pity because more than half our staff use Macs. That said, the workflow and time tracking are both very welcome. http://stackoverflow.com/questions/418980/why-cakephp-doesnt-support-a-foreign-key-with-multiple-columns/419351#419351 Comment by scronide on Why CakePHP doesn't support a foreign key with multiple columns scronide 2009-01-07T07:12:40Z 2009-01-07T07:12:40Z Whether a key is composite or not depends on the properties of the columns used. http://stackoverflow.com/questions/412427/auto-indent-in-notepad/412449#412449 Comment by scronide on Auto-Indent in Notepad++ scronide 2009-01-05T07:05:31Z 2009-01-05T07:05:31Z Note that this auto-indent setting in Notepad++ assumes you do the first indent in a block manually; it doesn't auto-format the code for you. http://stackoverflow.com/questions/399332/fastest-way-to-retrieve-a-title-in-php/399357#399357 Comment by scronide on Fastest way to retrieve a <title> in PHP scronide 2009-01-02T19:46:45Z 2009-01-02T19:46:45Z I'm relatively sure that will produce an error if the pattern isn't found. Initialise $title first, assign preg_match() to a boolean and check for that before attempting to access the first element of the $title_matches array. http://stackoverflow.com/questions/407256/javascript-equivalent-of-phps-pregmatchall Comment by scronide on javascript equivalent of php's preg_match_all scronide 2009-01-02T19:30:22Z 2009-01-02T19:30:22Z As you don't need to match a regex pattern, you should be using str_replace() in PHP instead of preg_match_all() for your example: $str = str_replace('&lt;br&gt;', &quot;\n&quot;, $str); http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/185508#185508 Comment by scronide on Prevent direct access to a PHP page. scronide 2008-10-09T06:41:20Z 2008-10-09T06:41:20Z My only regret is that I have bone-itis. http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175483#175483 Comment by scronide on What's the most egregious pop culture perversion of programming? scronide 2008-10-09T03:07:34Z 2008-10-09T03:07:34Z unrealtrip is speaking crazy talk http://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential/173443#173443 Comment by scronide on PHP Arrays: A good way to check if an array is associative or sequential? scronide 2008-10-06T07:56:01Z 2008-10-06T07:56:01Z The glue parameter of implode() became optional in PHP 4.3.0. Your example array -- $x = array(&quot;1&quot; =&gt; &quot;b&quot;, &quot;0&quot; =&gt; &quot;a&quot;); -- has an associative index of non-sequential strings. is_associative() will return true for that array, as expected.