User scronide - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T21:50:53Zhttp://stackoverflow.com/feeds/user/22844http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1281964/drupal-for-users-creating-sub-users/1283139#12831392Answer by scronide for Drupal for users creating "sub"-users?scronide2009-08-15T23:53:23Z2009-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#12803081Answer by scronide for CSS Positioning inside of an HTML Tablescronide2009-08-14T21:26:40Z2009-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#12534041Answer by scronide for PHP preg_replace problemscronide2009-08-10T06:37:42Z2009-08-10T06:37:42Z<p>This should do the job for the anchor tags, at least:</p>
<pre><code><?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
);
?>
</code></pre>
http://stackoverflow.com/questions/1253194/any-way-i-can-share-a-information-within-2-difference-domain/1253207#12532070Answer by scronide for Any way I can share a information within 2 difference domain?scronide2009-08-10T05:17:01Z2009-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#8322762Answer by scronide for Javascript multiple replacescronide2009-05-06T23:23:40Z2009-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#8309460Answer by scronide for What's wrong with this gmail contact importer script for Drupal?scronide2009-05-06T18:16:37Z2009-05-06T18:16:37Z<p>Without testing it directly, I would try replacing lines 96 - 104 with this:</p>
<pre><code>$mnode = $enodes->item(0);
if (isset($mnode) && is_object($mnode)) {
$email = $mnode->getAttribute('address');
// NOTE: Keep in mind that $mnode->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#7659261Answer by scronide for jQuery Change Div Button States & Click Disablescronide2009-04-19T19:17:59Z2009-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#7625382Answer by scronide for Figure out why this simple comparison is showing not equal in PHPscronide2009-04-17T23:14:57Z2009-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#7621692Answer by scronide for How would I fix the last day of the month errors that result with this php code?scronide2009-04-17T20:54:53Z2009-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><?php
for ($i = 0; $i < 12; $i++) {
$month = date('F', mktime(0, 0, 0, date('m') + $i, 1, date('Y')));
?>
<a href="http://mydomain.com/<?php echo strtolower($month); ?>" title="<?php echo $month; ?>"><?php echo $month; ?></a><br />
<?php
}
?>
</code></pre>
http://stackoverflow.com/questions/426063/are-release-candidates-safe-to-use-for-production/426103#4261030Answer by scronide for Are release candidates safe to use for production?scronide2009-01-08T21:39:03Z2009-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#4235131Answer by scronide for What's wrong with my MySQL query?scronide2009-01-08T07:26:28Z2009-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#4196100Answer by scronide for What is the difference between "JPG" / "JPEG" / "PNG" / "BMP" / "GIF" / "TIFF" Image?scronide2009-01-07T08:45:02Z2009-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#4195031Answer by scronide for Screen scraping through AJAX and javascriptscronide2009-01-07T07:46:16Z2009-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#4193513Answer by scronide for Why CakePHP doesn't support a foreign key with multiple columnsscronide2009-01-07T06:03:41Z2009-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#4155731Answer by scronide for How would I go about creating a new MySQL table with the results of "myisam_ftdump -c"?scronide2009-01-06T05:38:16Z2009-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#4124922Answer by scronide for Auto-Indent in Notepad++scronide2009-01-05T07:26:53Z2009-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 > TextFX Edit > Reindent C++ code</code>.</p>
http://stackoverflow.com/questions/402200/layering-images-in-css-possible-to-put-2-images-in-same-element/411705#4117051Answer by scronide for Layering images in CSS - possible to put 2 images in same element?scronide2009-01-04T21:27:46Z2009-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#4105841Answer by scronide for Javascript and Translationsscronide2009-01-04T06:49:50Z2009-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#4105462Answer by scronide for What's the best alternative to an out of control switch statement?scronide2009-01-04T06:10:30Z2009-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#4104584Answer by scronide for datetime vs timestamp?scronide2009-01-04T04:26:29Z2009-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#2209514Answer by scronide for Where can I find a free, lightweight YUI-like compressor for PHP?scronide2008-10-21T06:17:41Z2008-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#2208899Answer by scronide for How does Google Reader get every item in an RSS feed?scronide2008-10-21T05:49:00Z2008-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#1906215Answer by scronide for Where can I find real-world examples of applications written in python?scronide2008-10-10T09:18:17Z2008-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#1906060Answer by scronide for XML Text Formatscronide2008-10-10T09:10:17Z2008-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#1904181Answer by scronide for group collaboration open source php appscronide2008-10-10T07:30:48Z2008-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#1734431Answer by scronide for PHP Arrays: A good way to check if an array is associative or sequential?scronide2008-10-06T07:17:18Z2008-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#1734027Answer by scronide for How should I express fractions like 15/16ths in HTML?scronide2008-10-06T07:02:25Z2008-10-06T07:02:25Z<pre><code>1/2 -- &frac12;
1/4 -- &frac14;
3/4 -- &frac34;
1/8 -- &frac18;
3/8 -- &frac38;
5/8 -- &frac58;
7/8 -- &frac78;
1/3 -- &#8531;
2/3 -- &#8532;
1/5 -- &#8533;
2/5 -- &#8534;
3/5 -- &#8535;
4/5 -- &#8536;
1/6 -- &#8537;
5/6 -- &#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#1697981Answer by scronide for PHP DateTime microseconds always returns 0scronide2008-10-04T05:28:32Z2008-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#1506473Answer by scronide for Checking if array is multidimensional or not?scronide2008-09-29T21:02:18Z2008-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#1141773Comment by scronide on Merge or combine an array like this? on PHPscronide2009-07-17T19:07:17Z2009-07-17T19:07:17ZThis 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#1141696Comment by scronide on Merge or combine an array like this? on PHPscronide2009-07-17T06:54:47Z2009-07-17T06:54:47ZThis 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#1141589Comment by scronide on Merge or combine an array like this? on PHPscronide2009-07-17T06:08:21Z2009-07-17T06:08:21ZYou've introduced a syntax error: "= +=".http://stackoverflow.com/questions/1141566/merge-or-combine-an-array-like-this-on-php/1141597#1141597Comment by scronide on Merge or combine an array like this? on PHPscronide2009-07-17T06:06:03Z2009-07-17T06:06:03ZYou 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#1141589Comment by scronide on Merge or combine an array like this? on PHPscronide2009-07-17T06:04:12Z2009-07-17T06:04:12ZYou'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#762145Comment by scronide on How would I fix the last day of the month errors that result with this php code?scronide2009-04-17T20:58:24Z2009-04-17T20:58:24ZThis 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#419617Comment by scronide on What is the difference between "JPG" / "JPEG" / "PNG" / "BMP" / "GIF" / "TIFF" Image?scronide2009-01-07T08:58:04Z2009-01-07T08:58:04ZBrowser 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#102054Comment by scronide on What is your bug/task tracking tool?scronide2009-01-07T07:23:42Z2009-01-07T07:23:42ZI 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#419351Comment by scronide on Why CakePHP doesn't support a foreign key with multiple columnsscronide2009-01-07T07:12:40Z2009-01-07T07:12:40ZWhether a key is composite or not depends on the properties of the columns used.http://stackoverflow.com/questions/412427/auto-indent-in-notepad/412449#412449Comment by scronide on Auto-Indent in Notepad++scronide2009-01-05T07:05:31Z2009-01-05T07:05:31ZNote 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#399357Comment by scronide on Fastest way to retrieve a <title> in PHPscronide2009-01-02T19:46:45Z2009-01-02T19:46:45ZI'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-pregmatchallComment by scronide on javascript equivalent of php's preg_match_allscronide2009-01-02T19:30:22Z2009-01-02T19:30:22ZAs 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('<br>', "\n", $str);http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/185508#185508Comment by scronide on Prevent direct access to a PHP page.scronide2008-10-09T06:41:20Z2008-10-09T06:41:20ZMy only regret is that I have bone-itis.http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175483#175483Comment by scronide on What's the most egregious pop culture perversion of programming?scronide2008-10-09T03:07:34Z2008-10-09T03:07:34Zunrealtrip is speaking crazy talkhttp://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential/173443#173443Comment by scronide on PHP Arrays: A good way to check if an array is associative or sequential?scronide2008-10-06T07:56:01Z2008-10-06T07:56:01ZThe glue parameter of implode() became optional in PHP 4.3.0. Your example array -- $x = array("1" => "b", "0" => "a"); -- has an associative index of non-sequential strings. is_associative() will return true for that array, as expected.