User nickf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T09:51:34Zhttp://stackoverflow.com/feeds/user/9021http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1845145/find-how-many-arguments-are-being-used-in-a-printf-statement0Find how many arguments are being used in a printf() statementnickf2009-12-04T06:01:48Z2009-12-04T06:46:52Z
<p>Given some unknown input, how do you tell which variables are being substituted into a <code>(s)printf</code> statement?</p>
<pre><code>printf("%s %s", "a", "b"); // both used
printf("%s", "a", "b"); // only the first one used
printf('%1$s %1$s', "a", "b"); // " "
printf('%s %1$s', "a", "b"); // " "
printf('%1$s %s %1$s', "a", "b"); // " "
printf('%2$s', "a", "b"); // only the second one used.
</code></pre>
<p>Checking the resultant string for the presence of the first or second variables won't help, because they could have the same value.</p>
<p>In my own situation, there is only ever 2 variables that could be substituted, and I need to know whether the second one is used or not.</p>
http://stackoverflow.com/questions/1845145/find-how-many-arguments-are-being-used-in-a-printf-statement/1845187#18451871Answer by nickf for Find how many arguments are being used in a printf() statementnickf2009-12-04T06:14:19Z2009-12-04T06:14:19Z<p>I've come up with a kludgey way which works in this situation, but would be interested to hear better solutions which are more generic.</p>
<pre><code>if (($result = @sprintf($input, "a")) === false) {
// need two arguments
$result = sprintf($input, "a", "b");
} else {
// only needed one argument
}
</code></pre>
<p>Basically, it just tries it with one argument, and if that didn't work, then you know it needs two.</p>
http://stackoverflow.com/questions/1844991/indexing-boolean-fields0Indexing boolean fieldsnickf2009-12-04T05:13:58Z2009-12-04T05:39:28Z
<p>This is probably a really stupid question, but is there going to be much benefit in indexing a boolean field in a database table?</p>
<p>Given a common situation, like "soft-delete" records which are flagged as inactive, and hence most queries include <code>WHERE deleted = 0</code>, would it help to have that field indexed on its own, or should it be combined with the other commonly-searched fields in a different index?</p>
http://stackoverflow.com/questions/1843675/how-do-you-switch-a-jquery-function-call-change-actions/1843741#18437411Answer by nickf for How do you switch a jQuery function call (change actions)nickf2009-12-03T23:14:10Z2009-12-03T23:14:10Z<p>The way to call a function when you won't know the parameter list until run time is by using <code>apply()</code>.</p>
<pre><code>var action = getUrl ? "attr" : "html";
var params = getUrl ? ['href'], [];
var $e = $('#myLink');
$e[action].apply($e.get(0), params);
</code></pre>
<p>The first parameter to <code>apply</code> is the object which will become <code>this</code> inside the function.</p>
http://stackoverflow.com/questions/1840693/javascript-namespace-question/1840733#18407330Answer by nickf for Javascript Namespace Questionnickf2009-12-03T15:39:56Z2009-12-03T15:39:56Z<p>You don't need to declare the variable as an object beforehand, simply using the brackets like that is all you need. You do have a syntax error, missing a commas before "onHumans", but aside from that, it looks good to me. You should be able to reach the functions via <code>mb.tests.onAnimals.test</code> and <code>mb.tests.onHumans.test</code></p>
http://stackoverflow.com/questions/877597/how-do-you-change-the-document-font-in-latex3How do you change the document font in LaTeX?nickf2009-05-18T12:56:13Z2009-12-03T15:25:43Z
<p>Absolute beginner LaTeX question here:</p>
<p>How do you change the font for the whole document to sans-serif (or anything else)?</p>
http://stackoverflow.com/questions/1839098/css-page-loading-speed/1839111#18391110Answer by nickf for CSS / Page Loading Speednickf2009-12-03T10:40:45Z2009-12-03T10:40:45Z<p>I wouldn't worry about it too much. Run your CSS through a filter to strip comments and whitespace, be <em>aware</em> of small shortcuts like <code>padding: 1em 3em .5em 5px</code> etc, make sure the file is being cached properly, and sent from your server with gzipping, and you'll be fine. CSS is usually such a small fraction of the payload, it's not worth losing sleep over.</p>
<p>The only time where I'd split up a CSS file (for delivery to the client) would be if there were large sections of my site which called for unique styles where most people would never venture: eg, an administration section.</p>
http://stackoverflow.com/questions/1839043/swapping-a-string-where-space-is-found-in-php/1839081#18390812Answer by nickf for Swapping a string where space is found in phpnickf2009-12-03T10:35:14Z2009-12-03T10:35:14Z<p>Ok, from the start - be sure to read <a href="http://php.net/strpos" rel="nofollow">the manual</a> carefully. <code>strpos</code> doesn't do exactly what you think it's doing. Here's how you should check for a space:</p>
<pre><code>if (strpos($query, ' ') === false) // the triple-equals is important!
</code></pre>
<p>After that, it's simply a matter of <a href="http://www.google.com/search?q=permutations%20combinations%20php" rel="nofollow">permutations and combinations</a>. Here's another answer on Stack Overflow which shows you how to do it: <a href="http://stackoverflow.com/questions/1256117/algorithm-that-will-take-numbers-or-words-and-find-all-possible-combinations">algorithm that will take number or words and find all possible combinations</a></p>
http://stackoverflow.com/questions/1839024/mysql-join-with-limit-1-from-two-tables/1839045#18390451Answer by nickf for MySQL join with LIMIT 1 from two tablesnickf2009-12-03T10:29:25Z2009-12-03T10:29:25Z<p>Here you go:</p>
<pre><code>SELECT p_id, name, i_id
FROM properties p INNER JOIN images i ON (p.p_id = i.p_id AND i.main = 1)
</code></pre>
<p>or</p>
<pre><code>SELECT p_id, name, i_id
FROM properties p INNER JOIN images i ON (p.p_id = i.p_id)
WHERE i.main = 1
</code></pre>
http://stackoverflow.com/questions/1838735/validator-plugin-firing-with-links-and-on-submit/1838747#18387470Answer by nickf for Validator plugin firing with links and on submitnickf2009-12-03T09:28:29Z2009-12-03T09:28:29Z<p>Check the <a href="http://docs.jquery.com/Plugins/Validation/valid" rel="nofollow"><code>.valid()</code> method</a> it provides. If you call that in click handlers attached to your links, you should be ok.</p>
http://stackoverflow.com/questions/1838020/is-there-any-difference-in-following-javascript-snippets/1838145#18381453Answer by nickf for Is there any difference in following javascript snippets?nickf2009-12-03T06:51:04Z2009-12-03T06:51:04Z<p><strong>Is there any difference?</strong></p>
<p>If it's placed at the very end of your document, then in most cases, they'll be the same. The problem with the first method is that it is run as soon as it is encountered and the document waits for it to complete. The problem with the second method is that you could accidentally overwrite previously attached events (I'm not 100% sure if this is the case with attachEvent/addEventListener, but it definitely applies if you were to use <code>document.onready</code>).</p>
<p><strong>Where should scripts be placed?</strong></p>
<p>The <a href="http://developer.yahoo.com/performance/rules.html#js%5Fbottom" rel="nofollow">general recommendation</a> is that they are placed at the end of the document, <em>inside</em> the body. The spec doesn't allow for anything except <code>head</code> and <code>body</code> to be directly inside the <code>html</code> tag.</p>
<p>The reason for this recommendation is that since almost all your javascript is going to be run after the document has finished loading, there's no point loading until the very end. If you put it at the start of your document, in the head, then the browser has to download all your scripts before it even gets to the content, meaning the user has to sit looking at a blank page for slightly longer.</p>
<p><strong>Recommendations:</strong></p>
<p>If you're using any of the common javascript toolkits/libraries around these days, they'll often have their own construct for specifying some code to run once the page is ready. In jQuery for example, it's this:</p>
<pre><code>$(function() { /* code here */ });
</code></pre>
<p>Also, good use of javascript packing/minification, caching and gzipping on the server-side will minimise the negatives of putting the scripts up in the head where they are usually placed. Still, it doesn't hurt to chuck it at the end.</p>
http://stackoverflow.com/questions/1837435/how-can-i-use-mysql-table-partitioning-on-this-table0How can I use MySQL table partitioning on this table?nickf2009-12-03T03:25:05Z2009-12-03T04:04:53Z
<p>I have a table that essentially looks like this:</p>
<pre><code>CREATE TABLE myTable (
id INT auto_increment,
field1 TINYINT,
field2 CHAR(2),
field3 INT,
theDate DATE,
otherStuff VARCHAR(20)
PRIMARY KEY (id)
UNIQUE KEY (field1, field2, field3)
)
</code></pre>
<p>I'd like to partition the table based on the month and year of <code>theDate</code>, however <a href="http://dev.mysql.com/doc/refman/5.1/en/partitioning-limitations-partitioning-keys-unique-keys.html" rel="nofollow">the manual</a> is telling me I'm not allowed:</p>
<blockquote>
<p>All columns used in the partitioning expression for a partitioned table must be part of every unique key that the table may have. In other words, every unique key on the table must use every column in the table's partitioning expression</p>
</blockquote>
<p>What are my options here? Can I still partition the table?</p>
http://stackoverflow.com/questions/1833892/converting-a-string-formatted-yyyymmddhhmmss-into-a-javascript-date-object/1833990#18339902Answer by nickf for Converting a string formatted YYYYMMDDHHMMSS into a JavaScript Date object.nickf2009-12-02T16:17:41Z2009-12-02T16:55:58Z<p>How about this for a wacky way to do it:</p>
<pre><code>var date = new Date(myStr.replace(
/^(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/,
'$4:$5:$6 $2/$3/$1'
));
</code></pre>
<p>Zero external libraries, one line of code ;-)</p>
<p><hr></p>
<p><strong>Explanation of the original method :</strong> </p>
<pre><code>// EDIT: this doesn't work! see below.
var date = Date.apply(
null,
myStr.match(/^(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/).slice(1)
);
</code></pre>
<p>The <code>match()</code> function (after it has been <code>slice()</code>d to contain just the right) will return an array containing year, month, day, hour, minute, and seconds. This just happens to be the exact right order for the Date constructor. <code>Function.apply</code> is a way to call a function with the arguments in an array, so I used <code>Date.apply(<that array>)</code>.</p>
<p>for example:</p>
<pre><code>var foo = function(a, b, c) { };
// the following two snippets are functionally equivalent
foo('A', 'B', 'C')
var arr = ['A', 'B', 'C'];
foo.apply(null, arr);
</code></pre>
<p>I've just now realised that this function doesn't actually work, since javascript months are zero-indexed. You could still do it in a similar method, but there'd be an intermediate step, subtracting one from the array before passing it to the constructor. I've left it here, since it was asked about in the comments.</p>
<p>The other option works as expected however.</p>
http://stackoverflow.com/questions/1833999/regular-expression-how-to-match-an-empty-string/1834121#18341213Answer by nickf for regular expression - how to match an empty stringnickf2009-12-02T16:32:51Z2009-12-02T16:32:51Z<p>Checking the length of the trimmed string, or comparing the trimmed string to an empty string is probably the fastest and easiest to read, but there are some cases where you can't use that (for example, when using a framework for validation which only takes a regex).</p>
<p>Since no one else has actually posted a working regex yet...</p>
<pre><code>if (preg_match('/\S/', $text)) {
// string has non-whitespace
}
</code></pre>
<p>or</p>
<pre><code>if (preg_match('/^\s*$/', $text)) {
// string is empty or has only whitespace
}
</code></pre>
http://stackoverflow.com/questions/1833869/how-do-i-format-an-amount-of-milliseconds-into-minutessecondsmilliseconds-in-ph/1834056#18340563Answer by nickf for How do I format an amount of milliseconds into minutes:seconds:milliseconds in PHP?nickf2009-12-02T16:25:01Z2009-12-02T16:25:01Z<p>Don't fall into the trap of using date functions for this! What you have here is a time interval, not a date. The naive approach is to do something like this:</p>
<pre><code>date("h:i:s.u", $mytime / 1000)
</code></pre>
<p>but because the date function is used for (gasp!) dates, it doesn't handle time the way you would want it to in this situation - it takes timezones and daylight savings, etc, into account when formatting a date/time.</p>
<p>Instead, you will probably just want to do some simple maths:</p>
<pre><code>$input = 70135;
$uSec = $input % 1000;
$input = floor($input / 1000);
$seconds = $input % 60;
$input = floor($input / 60);
$minutes = $input % 60;
$input = floor($input / 60);
// and so on, for as long as you require.
</code></pre>
http://stackoverflow.com/questions/1830831/php-file-handling-error-unable-to-figure-out/1830871#18308710Answer by nickf for PHP FILE HANDLING ERROR - Unable to figure out nickf2009-12-02T05:42:08Z2009-12-02T05:42:08Z<p>Ok, for starters - some explanation about the problem is much appreciated. You'll find you will get a lot more assistance if don't just expect everyone to read your code and determine for themselves what you're trying to do.</p>
<p>In your code, this line: <code>$text = $msg1</code> might be a source of your problem. Where did <code>$msg1</code> come from?</p>
<p>In the <code>Random_N</code> function, it will always return the string <code>'temp_file/$RandomNumber.html'</code> because it is enclosed in single quotes. Either change to double quotes, or preferably, use some concatenation:</p>
<pre><code>return 'temp_file/' . $RandomNumber . '.html';
</code></pre>
http://stackoverflow.com/questions/1824644/what-does-the-jquery-function-do/1824710#18247100Answer by nickf for What does the jQuery() function do?nickf2009-12-01T08:13:02Z2009-12-01T08:13:02Z<p>It does different things depending on what you pass to it:</p>
<pre><code>jQuery(String query [, DOMElement context])
jQuery(String query [, jQueryResultSet context])
</code></pre>
<p>This will read the string as a query (eg: <code>#foo > .bar a</code>). It will be run in the context of <code>context</code> if it is specified, otherwise it is taken from <code>document</code>.</p>
<pre><code>jQuery(DOMElement node)
</code></pre>
<p>This converts the node into a jQuery result set containing that node. This is used mostly when you have a reference to an element (eg: in an event handler) and you wish to perform jQuery functions upon it.</p>
<pre><code>jQuery(Function readyHandler)
</code></pre>
<p>This is a shortcut form of this:</p>
<pre><code>jQuery(document).ready(Function readyHandler)
</code></pre>
<p>Running all your jQuery functions once the document has been loaded is so common, this shortcut was added.</p>
<pre><code>jQuery('')
jQuery(null)
</code></pre>
<p>This selects the document.</p>
http://stackoverflow.com/questions/1824654/oracle-move-column-to-the-first-position/1824668#18246681Answer by nickf for Oracle move column to the first positionnickf2009-12-01T08:04:20Z2009-12-01T08:04:20Z<p>The <a href="http://www.orafaq.com/wiki/SQL%5FFAQ#How%5Fdoes%5Fone%5Fadd%5Fa%5Fcolumn%5Fto%5Fthe%5Fmiddle%5Fof%5Fa%5Ftable.3F" rel="nofollow">Oracle FAQ</a> says:</p>
<blockquote>
<p>Oracle only allows columns to be added to the end of an existing table.</p>
</blockquote>
<p>You'd have to recreate your table.</p>
<pre><code>RENAME tab1 TO tab1_old;
CREATE TABLE tab1 AS SELECT id, <the rest of your columns> FROM tab1_old;
</code></pre>
http://stackoverflow.com/questions/1824178/question-about-tortoise-svn-repo-browser/1824195#18241953Answer by nickf for Question about Tortoise SVN Repo-Browsernickf2009-12-01T05:36:52Z2009-12-01T05:36:52Z<p>You'll find that you can only delete from the Repo Browser when you are viewing the HEAD revision. This is identical to deleting a file from your working copy and then checking in the delete. In both cases, you'll be able to restore from the previous revision.</p>
http://stackoverflow.com/questions/1820172/regexp-should-match-site-category-url-but-matches/1820314#18203141Answer by nickf for regexp should match site category URL, but matches /nickf2009-11-30T14:58:33Z2009-11-30T14:58:33Z<p>I'm definitely not one of those <em>"omg, you said HTML and regex in the same sentence, you must die"</em> -types, but this is clearly not a situation where regex is the best tool for the job. (Nor is it even a good tool, nor a functioning tool here).</p>
<p>Parse it with an XML/HTML parser, and save yourself a lot of hassle and abuse from your colleagues.</p>
http://stackoverflow.com/questions/1820025/searching-for-specific-file-extensions-in-a-folder-directory-php/1820108#18201080Answer by nickf for Searching for specific file extensions in a folder/directory (PHP)nickf2009-11-30T14:20:11Z2009-11-30T14:20:11Z<p><code>glob</code> will get you all the files in a given directory, but not the sub directories. If you need that too, you will need to: 10. get recursive, 20. goto 10.</p>
<p>Here's the pseudo pseudocode:</p>
<pre><code>function getFiles($pattern, $dir) {
$files = glob($dir . $pattern);
$folders = glob($dir, GLOB_ONLYDIR);
foreach ($folders as $folder) {
$files = $files + getFiles($folder);
}
return $files;
}
</code></pre>
<p>The above will obviously need to be tweaked to get it working, but hopefully you get the idea (remember not to follow directory links to ".." or "." or you'll be in infinite loop town).</p>
http://stackoverflow.com/questions/1817532/serialized-data-in-mysql-database-needs-to-combined-in-an-array/1817535#18175350Answer by nickf for Serialized data in mysql database needs to combined in an arraynickf2009-11-30T02:01:53Z2009-11-30T02:01:53Z<p>change it to <code>$test[] = unserialize($row[0])</code>.</p>
<p>It will unserialize your data into an array, and then push that array into the <code>$test</code> array. To see how it looks, after your loop, add this line:</p>
<pre><code>print_r($test);
</code></pre>
<p>It will be something like this:</p>
<pre><code>array(
[0] => array(
// ... the first record's data
),
[1] => array(
// ... the second record's data
),
// etc
)
</code></pre>
http://stackoverflow.com/questions/1218068/what-is-the-difference-between-jquerys-space-and-selectors/1817509#18175090Answer by nickf for What is the difference between jQuery's space and > selectors?nickf2009-11-30T01:49:09Z2009-11-30T01:49:09Z<p>As already mentioned, a space will select any descendant, whereas <code>></code> will select only immediate children. If you want to select only grandchildren or great-grandchildren, then you could use this:</p>
<pre><code>#foo > * > * > .bar
</code></pre>
<p>(all elements with class "bar" which are great grandchildren of the element with id "foo")</p>
http://stackoverflow.com/questions/1817486/what-is-the-best-way-of-instantiating-many-javascript-objects/1817490#18174903Answer by nickf for What is the best way of instantiating many JavaScript objects?nickf2009-11-30T01:41:48Z2009-11-30T01:41:48Z<p>The first one is much preferred. In that case, there is only one definition of the <code>bar</code> function, and all <code>Foo</code> objects share it. In the second case, the <code>bar</code> function is being declared every single time, and each object contains their own version of it.</p>
http://stackoverflow.com/questions/1817114/jquery-create-a-unique-id/1817208#18172080Answer by nickf for jquery create a unique idnickf2009-11-29T23:58:48Z2009-11-29T23:58:48Z<p>You shouldn't need to do this. If you can store the id in a variable, you could store the element itself <em>(well, a reference to the element)</em> in a variable too.</p>
http://stackoverflow.com/questions/1788072/cakephp-using-multiple-databases-for-models2CakePHP using multiple databases for modelsnickf2009-11-24T05:49:03Z2009-11-27T21:29:59Z
<p>Is it possible for certain models to be in one database and other models in another (using the same connection)?</p>
<p>I have a number of read-only tables that I want shared between multiple installations of my system. Other tables need to be per-installation. For the sake of example, let's say <code>users</code> is the shared table, and <code>posts</code> is per-installation.</p>
<p>In one schema (let's call it "shared") we have the <code>users</code> table, and in another schema ("mycake") is <code>posts</code>.</p>
<p>I've been able to get the User model reading from the other database by creating a new database connection which points to the shared database (though the two databases are on the same host and are both accessible with the same login details).</p>
<pre><code>class User extends AppModel {
var $useDBConfig = 'sharedConnection';
}
</code></pre>
<p>The problem is when it comes time to join to the <code>posts</code> table. It doesn't prepend the schema name to the table name, and so it can't find <code>posts</code>.</p>
<pre><code>// what it does
SELECT * FROM users User INNER JOIN posts Post ...
// what I'd like it to do:
SELECT * FROM shared.users User INNER JOIN mycake.posts Post ...
</code></pre>
<p>So basically, <strong>is there a way to assign a fully qualified table name to a model and force it to use that in all its queries?</strong> Setting <code>var $useTable = 'shared.users';</code> doesn't help... </p>
http://stackoverflow.com/questions/1808804/style-visibility-not-working-in-firefox/1808826#18088261Answer by nickf for style.visibility not working in FireFoxnickf2009-11-27T13:37:34Z2009-11-27T13:37:34Z<p>We'd really need to see the actual HTML output to be able to debug it for you.</p>
<p>The correct output should look something like this:</p>
<pre><code>onclick="document.getElementById('panMessage').style.display='none';"
</code></pre>
<p>Note that you don't need <code>javascript:</code> in the event handlers.</p>
http://stackoverflow.com/questions/1808747/remove-duplicate-columns-being-printed-in-a-loop/1808778#18087781Answer by nickf for remove duplicate columns being printed in a loopnickf2009-11-27T13:27:34Z2009-11-27T13:27:34Z<p>On every iteration through the loop, you're printing two divs, when I suspect you only want one. How about this instead:</p>
<pre><code>foreach ($rpp as $row) {
if ($row['name'] == 'body') {
echo '<div id="col1">'
. '<p>' . $row['content_html'] . '</p>'
. '</div>';
} else {
echo '<div id="col2">'
. '<p class="testimonial">' . $row['content_html'] . '</p>'
. '</div>';
}
}
</code></pre>
http://stackoverflow.com/questions/1807079/how-to-reverse-the-default-ordering-in-mysql/1807092#18070920Answer by nickf for How to reverse the default ordering in Mysql?nickf2009-11-27T06:27:12Z2009-11-27T06:27:12Z<p>I think you would be better served by specifying the order you actually want. Tables, by their nature, have no order. It is probably just displayed in the order in which the rows were inserted - though there's no guarantee it will stay in that order.</p>
<p>Chances are, you probably just want to add this:</p>
<pre><code>ORDER BY id DESC
</code></pre>
<p>...since most of the time, people use an auto-incrementing field called "id"</p>
http://stackoverflow.com/questions/1804068/action-after-a-delay/1804135#18041352Answer by nickf for action after a delaynickf2009-11-26T14:53:06Z2009-11-26T14:53:06Z<p>There's a few things wrong here.</p>
<ol>
<li><p><code>$('slideToBuyBottomBtnClosed')</code> will be trying to find all elements with that as their tag name, that is <code><slideToBuyBottomBtnClosed></code> elements. You probably want to use a hash at the start to select by id, or a dot to select by class name, depending on your code.</p></li>
<li><p>There's a couple of typos (sildeToBuyContent)</p></li>
<li><p>Coming to the actual issue with timeouts, the problem is on this line:</p>
<p><code>setTimeout($("sildeToBuyContent").setStyle("overflow","visible"), 1000)</code></p></li>
</ol>
<p>When it comes to here, it will evaluate the contents of the brackets before passing them to the <code>setTimeout</code> function, just as it would if you typed <code>function(3 + 2)</code>. If you want that to run after one second, you can pass it an actual function like this:</p>
<pre><code>setTimeout(function() {
$('#slideToBuyContent').setStyle("overflow", "visible");
}, 1000);
</code></pre>
<p>or as a string to be evaluated (though this is much messier in my opinion);</p>
<pre><code>setTimeout("$('#slideToBuyContent').setStyle('overflow', 'visible')", 1000);
</code></pre>
<p>There's also this method, which probably won't work in your situation, but it would save you creating another anonymous function:</p>
<pre><code>setTimeout($('#slideToBuyContent').setStyle, 1000, 'overflow', 'visible');
</code></pre>
http://stackoverflow.com/questions/1845145/find-how-many-arguments-are-being-used-in-a-printf-statement/1845172#1845172Comment by nickf on Find how many arguments are being used in a printf() statementnickf2009-12-04T06:33:12Z2009-12-04T06:33:12ZAlso: <code>sprintf("% % % %s", "a", "b") == "% %s"</code> and sprintf("% % % % %s", "a", "b") ==> error, too few args`.http://stackoverflow.com/questions/1845145/find-how-many-arguments-are-being-used-in-a-printf-statement/1845172#1845172Comment by nickf on Find how many arguments are being used in a printf() statementnickf2009-12-04T06:31:06Z2009-12-04T06:31:06ZThere's a lot of things to consider however. For example: <code>sprintf("%% %s", "a", "b") == "% a"</code>, whereas <code>sprintf("% % %s", "a", "b") == "% b"</code>.http://stackoverflow.com/questions/1845145/find-how-many-arguments-are-being-used-in-a-printf-statement/1845172#1845172Comment by nickf on Find how many arguments are being used in a printf() statementnickf2009-12-04T06:11:27Z2009-12-04T06:11:27Zyeah, that was pretty much exactly what I was asking for help with.http://stackoverflow.com/questions/1843756/easiest-way-to-create-a-confirmation-message-with-jquery-javascript/1843761#1843761Comment by nickf on Easiest way to create a confirmation message with jQuery/JavaScript?nickf2009-12-03T23:18:46Z2009-12-03T23:18:46Zcan't beat it for easiness.http://stackoverflow.com/questions/1839748/php-conditional-problemComment by nickf on php conditional problemnickf2009-12-03T13:21:34Z2009-12-03T13:21:34Zcould you post the output from <code>print_r($denomination)</code> ?http://stackoverflow.com/questions/1839043/swapping-a-string-where-space-is-found-in-php/1839081#1839081Comment by nickf on Swapping a string where space is found in phpnickf2009-12-03T13:18:36Z2009-12-03T13:18:36ZThe manual has a section highlighted in red with a very large warning sign, which reads: <code>This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE, such as 0 or "". Please read the section on Booleans for more information. Use the === operator for testing the return value of this function.</code>http://stackoverflow.com/questions/1839043/swapping-a-string-where-space-is-found-in-php/1839132#1839132Comment by nickf on Swapping a string where space is found in phpnickf2009-12-03T10:46:57Z2009-12-03T10:46:57Zthis doesn't handle multiple spaces (3 or more words)http://stackoverflow.com/questions/1839043/swapping-a-string-where-space-is-found-in-php/1839065#1839065Comment by nickf on Swapping a string where space is found in phpnickf2009-12-03T10:46:18Z2009-12-03T10:46:18Zdepends if you want to find "Johnathon Doe" and "John Henry Doe". It also won't make use of indices with a wildcard at the start of the string.http://stackoverflow.com/questions/1839024/mysql-join-with-limit-1-from-two-tables/1839056#1839056Comment by nickf on MySQL join with LIMIT 1 from two tablesnickf2009-12-03T10:44:20Z2009-12-03T10:44:20Zthat <i>may</i> not be the required output though: "I need to produce a query which returns all of the properties with the id of their main image." ..anyway, who wants to buy a house with no photos ;-phttp://stackoverflow.com/questions/1838735/validator-plugin-firing-with-links-and-on-submit/1838747#1838747Comment by nickf on Validator plugin firing with links and on submitnickf2009-12-03T10:26:46Z2009-12-03T10:26:46Zno worries, Phil. People round these parts show appreciation with them pretty voting controls over on the left there... Just sayin' ;-)http://stackoverflow.com/questions/1837432/how-to-generate-random-password-with-php/1837443#1837443Comment by nickf on How to generate random password with PHP?nickf2009-12-03T08:45:26Z2009-12-03T08:45:26Zif you do go with a method like this, i'd recommend removing all vowels, as well as <code>l</code>, <code>1</code>, <code>0</code> and <code>o</code>, since they can be confusing for users, depending on your font.http://stackoverflow.com/questions/1838461/advice-on-framework-designComment by nickf on Advice on framework designnickf2009-12-03T08:43:43Z2009-12-03T08:43:43Zany reason you're going with the super-spacing around <code>-></code> and <code>::</code>? I've never seen anyone write code like that before. To me at least, it's very confusing.http://stackoverflow.com/questions/1838024/how-to-unselect-a-link-using-jquery/1838039#1838039Comment by nickf on How to unselect a link using jquerynickf2009-12-03T06:30:08Z2009-12-03T06:30:08Zno need to bring jQuery into it: <code>this.blur()</code> works too.http://stackoverflow.com/questions/1837435/how-can-i-use-mysql-table-partitioning-on-this-table/1837556#1837556Comment by nickf on How can I use MySQL table partitioning on this table?nickf2009-12-03T05:23:10Z2009-12-03T05:23:10ZHi Lytol, I had considered that, however I'd heard that they're actually slower than just having one large table. Do you have any insights?http://stackoverflow.com/questions/206384/how-to-format-json-date/207370#207370Comment by nickf on How to format JSON Date?nickf2009-12-03T03:58:38Z2009-12-03T03:58:38Zhow does it return it?