User Adriano Varoli Piazza - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T01:33:11Zhttp://stackoverflow.com/feeds/user/22184http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1651742/cakephp-acl-and-or-auth/1652611#16526111Answer by Adriano Varoli Piazza for CakePHP: ACL and/or AuthAdriano Varoli Piazza2009-10-30T22:17:44Z2009-10-30T22:17:44Z<p>Short answer: Maybe.
Long answer: seems that, for the case you explain, Auth should be enough (provided you also use Sanitize, but that's something you should also do if using ACL anyway).</p>
<p>As for the use of sessions, I don't think you have to worry about Cake using them for anonymous users, but I really haven't read the code. Anyway, I don't think that it will be easy to turn them off for non logged in users but leaving them on for logged in people.</p>
http://stackoverflow.com/questions/1631636/how-can-i-replace-parenthesis-in-vim/1631685#16316853Answer by Adriano Varoli Piazza for How can I replace parenthesis in vimAdriano Varoli Piazza2009-10-27T15:37:50Z2009-10-27T16:23:33Z<p>On Vim 7.2 (WinXP), the command you used only removes 'fig.', but not the parentheses.
Using <code>%s/(fig\.)//g</code> gives the intended result.</p>
<p><strong>Edit</strong> Escaped the dot too, as it matches any character, not just a dot.</p>
http://stackoverflow.com/questions/829665/ie6-forms-focus-disabled-on-input-fields-multiple-ies-after-ie83IE6 forms: focus disabled on input fields? (Multiple IEs after IE8)Adriano Varoli Piazza2009-05-06T13:49:40Z2009-10-15T11:54:25Z
<p>I recently installed IE8, and found quirks using the old copies of IE I have for testing sites with. After reinstalling the "Multiple IEs" I use, I find that now I cannot focus on input fields, either with the keyboard or mouse.</p>
<p>I've found that other people have experienced this behavior, but not a solution for it. Has anyone here got any advice?</p>
<p><strong>EDIT:</strong></p>
<p>By 'Multiple IE versions' I mean <a href="http://tredosoft.com/Multiple%5FIE" rel="nofollow">this</a> package and, lately, <a href="http://finalbuilds.edskes.net/iecollection.htm" rel="nofollow">this</a>. But I have the same problem with both. I can read the 'not supported anymore' disclaimer, but still, this is much easier and less resource-consuming than virtualization. If it worked, which it did up to a couple weeks ago.</p>
http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1510375#15103758Answer by Adriano Varoli Piazza for What's the worst security hole you've ever seen?Adriano Varoli Piazza2009-10-02T15:49:17Z2009-10-02T15:49:17Z<p><em>"Pedo mellon a minno"</em>, "Speak friend and enter", on the gates of Moria.</p>
http://stackoverflow.com/questions/1294066/accented-words-in-email-subject-break-spacing-how-do-i-stop-this2accented words in email subject break spacing - how do I stop this?Adriano Varoli Piazza2009-08-18T13:57:31Z2009-09-23T21:06:37Z
<p>We have a custom php email marketing app, and an interesting problem:
If the subject line of the message contains a word with accents, it 'swallows' the spaces between it and the following word.
An example: the phrase </p>
<p><em>Ángel Ríos escucha y sorprende</em> </p>
<p>is shown (by at least gmail and lotus notes) as </p>
<p><em>ÁngelRíos escucha y sorprende</em></p>
<p>The particular line in the message source shows:</p>
<p><code>Subject: =?ISO-8859-1?Q?=C1ngel?= =?ISO-8859-1?Q?R=EDos?= escucha y sorprende</code></p>
<p>(semi-full headers):</p>
<pre><code>Delivered-To: me@gmail.com
Received: {elided}
Return-Path: <return@path>
Received: {elided}
Received: (qmail 23734 invoked by uid 48); 18 Aug 2009 13:51:14 -0000
Date: 18 Aug 2009 13:51:14 -0000
To: "Adriano" <me@gmail.com>
Subject: =?ISO-8859-1?Q?=C1ngel?= =?ISO-8859-1?Q?R=EDos?= escucha y sorprende
MIME-Version: 1.0
From: {elided}
X-Mailer: PHP
X-Lista: 1290
X-ID: 48163
Content-Type: text/html; charset="ISO-8859-1"
Content-Transfer-Encoding: quoted-printable
Message-ID: <kokrte.rpq06m@example.com>
</code></pre>
<p><strong>EDIT:</strong> </p>
<p>The app uses an old version of Html Mime Mail to prepare messages, I'll try to upgrade to a newer version. Anyway, this is the function that encodes the subject:</p>
<pre><code>/**
* Function to encode a header if necessary
* according to RFC2047
*/
function _encodeHeader($input, $charset = 'ISO-8859-1')
{
preg_match_all('/(\w*[\x80-\xFF]+\w*)/', $input, $matches);
foreach ($matches[1] as $value) {
$replacement = preg_replace('/([\x80-\xFF])/e', '"=" . strtoupper(dechex(ord("\1")))', $value);
$input = str_replace($value, '=?' . $charset . '?Q?' . $replacement . '?=', $input);
}
return $input;
}
</code></pre>
<p>And here it's the code where the subject is encoded:</p>
<pre><code>if (!empty($this->headers['Subject'])) {
$subject = $this->_encodeHeader($this->headers['Subject'],
$this->build_params['head_charset']);
unset($this->headers['Subject']);
}
</code></pre>
<p><strong>Wrap-up</strong></p>
<p>The problem was that, indeed, the program wasn't encoding the space in the case mentioned. <a href="http://stackoverflow.com/questions/1294066/accented-words-in-email-subject-break-spacing-how-do-i-stop-this/1294391#1294391">The accepted answer</a> solved my problem, after a slight modification (mentioned in the comments to that answer) because the installed version of PHP didn't support a particular implementation detail.</p>
<p><strong>Final answer</strong></p>
<p>Although the accepted answer did solve the problem, we found that it, combined with many thousands of emails, was chewing all the available memory on the server. I checked the website of the original developer of this email framework, and found that the function had been updated to the following:</p>
<pre><code>function _encodeHeader($input, $charset = 'ISO-8859-1') {
preg_match_all('/(\w*[\x80-\xFF]+\w*)/', $input, $matches);
foreach ($matches[1] as $value) {
$replacement = preg_replace('/([\x80-\xFF])/e', '"=" . strtoupper(dechex(ord("\1")))', $value);
$input = str_replace($value, $replacement , $input);
}
if (!empty($matches[1])) {
$input = str_replace(' ', '=20', $input);
$input = '=?' . $charset . '?Q?' .$input . '?=';
}
return $input;
}
</code></pre>
<p>which neatly solved the problem and stayed under the mem limit.</p>
http://stackoverflow.com/questions/1445686/remove-colon-using-vi/1445707#14457072Answer by Adriano Varoli Piazza for Remove colon using VIAdriano Varoli Piazza2009-09-18T16:52:21Z2009-09-18T16:58:34Z<p><code>s/\d\+:\d\+:\d\+ CDT//g</code> works for me:</p>
<p>initial content:</p>
<pre><code>xxxxx xxxxx 24:00:00 CDT
</code></pre>
<p>after command:</p>
<pre><code>xxxxx xxxxx
</code></pre>
<p>if you want to be sure it will only affect timestamps (as is, that regex above changes any number of digits > 1), use</p>
<pre><code>s/\d\d:\d\d:\d\d CDT//g
</code></pre>
<p>where the final g changes all occurrences of the pattern, not just the first one.</p>
<p>If you have more than one timezone in the list, group them:</p>
<pre><code>:s/\d\+:\d\+:\d\+^Y \(CDT\|UDT\)//g
</code></pre>
http://stackoverflow.com/questions/1444968/is-there-a-php-and-mysql-book-that-deals-with-real-world-programming/1445002#14450021Answer by Adriano Varoli Piazza for Is there a PHP and MySQL book that deals with real world programming?Adriano Varoli Piazza2009-09-18T14:43:36Z2009-09-18T14:52:40Z<p>I found <a href="http://oreilly.com/catalog/9780596005436/" rel="nofollow">Web database applications with PHP and MySQL</a>, (O'Reilly) by Hugh E. Williams and David Lane to be quite good, and covers most of what you mention (it's not so blog-slanted as your post, the app programmed in the book is a wine store). Might be getting a bit long in the tooth by now, though, but it does cover PHP 5 and MySQL 4.1</p>
<p><strong>Edit</strong>: if you want to learn frameworks, I'd recommend both <a href="http://www.apress.com/book/view/9781430209775" rel="nofollow">Beginning CakePHP: From Novice To Professional</a> by David Golding, and <a href="http://www.apress.com/book/view/143021578x" rel="nofollow">Practical CakePHP Projects</a>, by Kai Chan and John Omokore, both books by Apress. I'd say 'check <a href="http://www.apress.com/book/view/1590598628" rel="nofollow">Beginning PHP and MySQL: From Novice to Professional</a>', but I haven't read that one.</p>
http://stackoverflow.com/questions/1426938/how-necessary-or-convenient-is-it-to-write-portable-sql5How necessary or convenient is it to write portable SQL?Adriano Varoli Piazza2009-09-15T12:39:30Z2009-09-15T18:06:57Z
<p>Time and again, I've seen people here and everywhere else advocating avoidance of nonportable extensions to the SQL language, <a href="http://stackoverflow.com/questions/1426744/php-mysql-only-allowing-one-vote-per-member">this</a> being the latest example. I recall only one article stating what I'm about to say, and I don't have that link anymore.</p>
<p>Have you actually benefited from writing portable SQL and dismissing your dialect's proprietary tools/syntax?</p>
<p>I've never seen a case of someone taking pains to build a complex application on mysql and then saying <em>You know what would be just peachy? Let's switch to (PostGreSQL|Oracle|SQL Server)!</em></p>
<p>Common libraries in -say- PHP do abstract the intricacies of SQL, but at what cost? You end up unable to use efficient constructs and functions, for a presumed glimmer of portability you most likely will never use. This sounds like textbook YAGNI to me.</p>
<p><strong>EDIT:</strong> Maybe the example I mentioned is too snarky, but I think the point remains: if you are planning a move from one DBMS to another, you are likely redesigning the app anyway, or you wouldn't be doing it at all.</p>
http://stackoverflow.com/questions/1428335/what-this-php-regex-does/1428394#14283942Answer by Adriano Varoli Piazza for what this php regex does?Adriano Varoli Piazza2009-09-15T16:58:40Z2009-09-15T17:22:40Z<p>It replaces every occurrence of a character with ordinal value between 0 and 31 (mostly control characters and spacing, except the actual space character) with its numeric value. The e at the end of the regex means 'evaluate the pattern as if it was PHP code', and allows for the string concatenation and the use of sprintf inside preg_replace. The regex is delimited by # instead of the more common /, for no reason in this case (it's usually done if the regex string contains /, to avoid escaping them).</p>
<p>For example:</p>
<pre><code><?php
$str = "\t 22 \n ducks";
$str = preg_replace('#([\x00-\x1F])#e', '"\x" . sprintf("%02x", ord("\1"))', $str);
echo $str;
?>
</code></pre>
<p>Outputs:</p>
<pre><code>\x09 22 \x0a ducks
</code></pre>
<p>Take out the <code>e</code> from the pattern, and you get this:</p>
<pre><code>"\x" . sprintf("%02x", ord(" ")) 22 "\x" . sprintf("%02x", ord(" ")) ducks
</code></pre>
<p>at least here.</p>
http://stackoverflow.com/questions/150284/what-is-the-difference-between-reduce-and-reduceex/150309#1503096Answer by Adriano Varoli Piazza for What is the difference between __reduce__ and __reduce_ex__ ?Adriano Varoli Piazza2008-09-29T19:41:37Z2009-08-18T21:02:03Z<p><a href="http://docs.python.org/lib/node320.html" rel="nofollow">The docs</a> say that </p>
<blockquote>
<p>If provided, at pickling time
<code>__reduce__()</code> will be called with no
arguments, and it must return either a
string or a tuple.</p>
</blockquote>
<p>On the other hand, </p>
<blockquote>
<p>It is sometimes useful to know the
protocol version when implementing
<code>__reduce__</code>. This can be done by
implementing a method named
<code>__reduce_ex__</code> instead of
<code>__reduce__</code>. <code>__reduce_ex__</code>, when it
exists, is called in preference over
<code>__reduce__</code> (you may still provide
<code>__reduce__</code> for backwards
compatibility). The <code>__reduce_ex__</code>
method will be called with a single
integer argument, the protocol
version.</p>
</blockquote>
<p>On the gripping hand, <a href="http://mail.python.org/pipermail/python-3000/2008-February/012094.html" rel="nofollow">Guido says</a> that this is an area that could be cleaned up.</p>
http://stackoverflow.com/questions/1296409/apple-keyboard-with-or-without-numpad/1296427#12964270Answer by Adriano Varoli Piazza for Apple keyboard, with or without numpad ?Adriano Varoli Piazza2009-08-18T20:49:30Z2009-08-18T20:49:30Z<p>It depends: are you going to code or work on numbers? spreadsheets? money-related SQL?
I like having the numpad on my keyboard, but YMMV. Also, the Insert, Del, etc keys are more comfortable to me further away.</p>
http://stackoverflow.com/questions/1295666/using-office-2007-ui-ribbon-dll-file-with-my-project/1295740#12957401Answer by Adriano Varoli Piazza for Using Office 2007 UI ribbon .dll file with my projectAdriano Varoli Piazza2009-08-18T18:43:39Z2009-08-18T18:43:39Z<p>A quick googling turns out <a href="http://weblogs.asp.net/bsimser/archive/2006/12/20/ribbon-ui-control-roundup-for-developers.aspx" rel="nofollow">Ribbon UI Control Roundup for Developers </a>, which should cover your needs.</p>
http://stackoverflow.com/questions/1293236/extract-all-the-links-between-specified-html-tags-from-an-html-file-with-sed/1293693#12936930Answer by Adriano Varoli Piazza for Extract all the links between specified html tags from an html file with sedAdriano Varoli Piazza2009-08-18T13:03:42Z2009-08-18T13:03:42Z<p>Do you have access to AWK? A combination of AWK and sed might do what you want, provided that:</p>
<ul>
<li>The html is relatively simple</li>
<li>The html doesn't change suddenly (I mean in form, not in content)</li>
<li>The html is not excessively convoluted.</li>
</ul>
<p>It's false that you can't process HTML with regular expressions. It's true that in the general case, you can't process HTML (or XML) with regexes, because they allow arbitrary nesting and regexes don't do recursion well -or at all-. But if your HTML is relatively 'flat' you can certainly do much with regexes.</p>
<p>I can't tell you exactly what to do, because I've forgotten what little AWK and sed I learned in college, but this strikes me as something doable:</p>
<ul>
<li>Find the string <code><div id="links"></code></li>
<li>Now find the string <code><table></code></li>
<li>Now find the string <code><td>...</td></code> and get a link from it (this is the regex part).</li>
<li>Append it to var <code>$links</code></li>
<li>Until you find the string <code></table></code></li>
<li>Finally, print <code>$links</code> separating each link with <code>\n</code>.</li>
</ul>
<p>Again, this is just pseudocode for the simple case. But it might just work.</p>
<p>I mention AWK because, even if you don't have access to Perl, sed and AWK tend to be both installed.</p>
<p>Finally, for a pure sed solution, you could also take a look at <a href="http://sed.sourceforge.net/grabbag/scripts/list%5Furls.sed" rel="nofollow">this sed recipe</a> and adapt it to your needs.</p>
http://stackoverflow.com/questions/1246006/what-is-the-use-of-synonym-in-sql-server-2008/1246026#12460262Answer by Adriano Varoli Piazza for What is the use of SYNONYM in SQL Server 2008?Adriano Varoli Piazza2009-08-07T17:31:49Z2009-08-07T17:31:49Z<p>Seems (from <a href="http://msdn.microsoft.com/en-us/library/ms177544.aspx" rel="nofollow">here</a>) to create an alias for another table, so that you can refer to it easily. Like as <code>select * from table longname as ln</code> but permanent and pervasive.</p>
<p>Edit: works for user-defined functions, local and remote objects, not only tables. </p>
http://stackoverflow.com/questions/1244515/what-is-the-best-text-editor-for-web-development/1244581#12445817Answer by Adriano Varoli Piazza for What is the best text editor for web development?Adriano Varoli Piazza2009-08-07T13:00:36Z2009-08-07T13:00:36Z<p>I don't want to appear as 'the vim freak', but that's what I use and recommend. Incredibly powerful once you master search-replace, regexes, macros and commands.</p>
http://stackoverflow.com/questions/1223298/what-do-i-call-in-php-to-check-if-a-string-matches-a-pattern/1223356#12233561Answer by Adriano Varoli Piazza for What do I call in PHP to check if a string matches a pattern?Adriano Varoli Piazza2009-08-03T16:43:10Z2009-08-03T18:01:17Z<p>For these cases, in which you know exactly the urls to match, and they aren't patterns, <code>strpos</code> is simpler than the <code>preg</code> functions.</p>
<p><a href="http://www.php.net/manual/en/function.strpos.php" rel="nofollow"><code>strpos</code></a> takes the string to check, the match, an optional offset, and returns FALSE if the match wasn't in the string.</p>
<pre><code>$url_chk = strtolower($original_url);
if (strpos($url_chk, 'bit.ly') === FALSE
|| strpos($url_chk, 'tinyurl.com') === FALSE
|| strpos($url_chk, 'tr.im') === FALSE) {
echo "Sorry, we do not shorten short URLs.";
} else {
echo "We can shorten that!";
}
</code></pre>
<p><strong>EDIT</strong>: I change the original url to lowercase to simplify the match, since the user might have submitted the url as tinyURL.com, for example.</p>
<p><strong>SECOND EDIT</strong> To answer your followup: it seems the string with the shortened url is created in the line</p>
<pre><code>$shorten_url = "{$config['host']}/$code";
</code></pre>
<p>which means that <code>$config['host']</code> should contain the relevant portion of the URL. But it's not clear where that comes from. At a guess, it's created in config.php.</p>
<p>Our suggestions using <code>die()</code> or <code>echo()</code> are just suggestions, don't embed this directly into your sprintf or your code without actually adapting them.</p>
http://stackoverflow.com/questions/153184/the-best-c-book/153236#1532361Answer by Adriano Varoli Piazza for The best c++ bookAdriano Varoli Piazza2008-09-30T14:19:48Z2009-08-03T15:49:20Z<p>1) If the people know something about other programming languages, I'd say Thinking in C++, also for (2). </p>
<p>I sincerely feel it made me into a better programmer, with its "Let's start from C, teach you something about the hardware level, how those abstractions work, and then the high level stuff". Especially, all the stuff you could do with just structs in C++ is amazing, and it's so clearly described there...</p>
<p>Plus, it's free if you want to read it online. </p>
<p>It's not an easy book, but then again, C++ isn't either. It's very readable, though.</p>
http://stackoverflow.com/questions/1222122/is-dvorak-typing-appropriate-for-programming/1222198#12221980Answer by Adriano Varoli Piazza for Is Dvorak typing appropriate for programming?Adriano Varoli Piazza2009-08-03T12:52:35Z2009-08-03T12:52:35Z<p>I use a Dvorak-es layout -optimized for the frequency of letters in the Spanish language- both for programming and typing, and the special keys (){}[]<>/* etc. are the same in this and Qwerty. </p>
<p>If you're doing the switch to Dvorak, perhaps it would pay to design your own <em>"Programmer's Dvorak"</em> layout with the standard QWERTY positions for these keys. At least on Windows you could use the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=8BE579AA-780D-4253-9E0A-E17E51DB2223&displaylang=en" rel="nofollow">MS Keyboard Layout creator</a> to do this.</p>
http://stackoverflow.com/questions/1109347/scroll-issues-with-script-aculo-us-cakephp-autocomplete-result-list0Scroll issues with Script.aculo.us / CakePHP autocomplete result listAdriano Varoli Piazza2009-07-10T12:52:45Z2009-08-02T12:14:35Z
<p>Using the Ajax helper for CakePHP (currently 1.2.3.8166) to provide an $ajax->autoComplete list of results, and giving a result list back as the rendered view, if you use the mouse (and even the mouse wheel) to scroll results, all is well. Using the arrow keys, on the other hand, has the nasty effect of awkwardly scrolling the view: if I press down, the select box and the whole page move to the bottom of the browser's view pane; pressing up has the opposite effect of moving it to the top.</p>
<p>Has anyone else noticed this behaviour, and thought of something? the resulting list is provided by, e.g., this code (this gets $people from the autoComplete() function in the controller):</p>
<pre><code><ul>
<?php foreach($people as $person): ?>
<li><?php echo $person['Person']['id']; ?></li>
<?php endforeach; ?>
</ul>
</code></pre>
<p>(Just an example, I actually show the id and name / surname / commercial name).</p>
<p>The CSS for the list is as follows:</p>
<pre><code>div.auto_complete {
position: absolute;
width: 250px;
background-color: white;
border: 1px solid #888;
margin: 0px; padding: 0px;
}
div.auto_complete ul{
list-style: none;
margin: 0px;
}
</code></pre>
http://stackoverflow.com/questions/1100867/how-do-you-specify-an-http-status-code-in-cakephp/1100898#11008983Answer by Adriano Varoli Piazza for How do you specify an HTTP status code in Cakephp?Adriano Varoli Piazza2009-07-08T22:34:14Z2009-08-02T12:08:26Z<p>Perhaps something <a href="http://book.cakephp.org/view/425/redirect" rel="nofollow">in this section of the cakephp manual</a> can help you.</p>
<blockquote>
<p>redirect(string $url, integer $status,
boolean $exit)</p>
<p>The flow control method you’ll use
most often is redirect(). This method
takes its first parameter in the form
of a CakePHP-relative URL. When a user
has successfully placed an order, you
might wish to redirect them to a
receipt screen. The second parameter
of redirect() allows you to define an
HTTP status code to accompany the
redirect. You may want to use 301
(moved permanently) or 303 (see
other), depending on the nature of the
redirect.</p>
<p>The method will issue an exit() after
the redirect unless you set the third
parameter to false.</p>
</blockquote>
http://stackoverflow.com/questions/1109347/scroll-issues-with-script-aculo-us-cakephp-autocomplete-result-list/1212244#12122442Answer by Adriano Varoli Piazza for Scroll issues with Script.aculo.us / CakePHP autocomplete result listAdriano Varoli Piazza2009-07-31T12:21:11Z2009-07-31T12:21:11Z<p>I received the answer to this problem on the cake-php newsgroup (available on <a href="http://groups.google.com/group/cake-php" rel="nofollow">http://groups.google.com/group/cake-php</a> ).
The poster pointed to <a href="http://groups.google.com/group/cake-php/browse%5Fthread/thread/16b28ce78784ac26" rel="nofollow">this page with the solution</a>, and I copy it here:</p>
<ol>
<li>Open the controls.js file (should be in <code>app/webroot/js</code>)</li>
<li><p>Search for the markPrevious function and change it to:</p>
<pre><code>markPrevious: function() {
if (this.index > 0) {
this.index--;
} else {
this.index = this.entryCount-1;
this.update.scrollTop = this.update.scrollHeight;
}
selection = this.getEntry(this.index);
selection_top = selection.offsetTop;
if (selection_top < this.update.scrollTop) {
this.update.scrollTop = this.update.scrollTop-
selection.offsetHeight;
}
},
</code></pre></li>
<li><p>Search the markNext function and change it to:</p>
<pre><code>markNext: function() {
if(this.index < this.entryCount-1) {
this.index++;
} else {
this.index = 0;
this.update.scrollTop = 0;
}
selection = this.getEntry(this.index);
selection_bottom = selection.offsetTop+selection.offsetHeight;
if(selection_bottom > this.update.scrollTop+this.update.offsetHeight) {
this.update.scrollTop = this.update.scrollTop + selection.offsetHeight;
}
},
</code></pre></li>
<li><p>Search for the updateChoices function and change lines</p>
<pre><code>this.stopIndicator();
this.index = 0;
</code></pre>
<p>to</p>
<pre><code>this.stopIndicator();
this.update.scrollTop = 0;
this.index = 0;
</code></pre></li>
<li><p>Finally, try the behavior. If it doesn't work at first, try deleting the cache files in <code>app/tmp/cache</code> (or clear your favorite server-side cache), your browser cache, and try again. Clearing <code>app/tmp/cache</code> worked for me.</p></li>
</ol>
http://stackoverflow.com/questions/979757/cakephp-query/1101163#11011630Answer by Adriano Varoli Piazza for cakephp queryAdriano Varoli Piazza2009-07-08T23:50:23Z2009-07-08T23:50:23Z<p>As <a href="http://stackoverflow.com/questions/979757/cakephp-query/980238#980238">paolo</a> said, but adding 'recursive' to the query:</p>
<pre><code>$this->Form->find('all', array(
'fields' => array('Form.id'), // just return the id, thank you
'order' => 'Form.id DESC', // sort the query result by id DESC
'limit' => 1, // gimme the top id
'recursive' => -1, // don't scan associated models in the query
));
</code></pre>
<p>but I'd also use</p>
<pre><code>$this->Form->find('first', array(
'fields' => array('Form.id'),
'order' => array('Form.id DESC'),
'recursive' => -1,
)
);
</code></pre>
<p>Which is not much shorter, but is more expressive of what you want.</p>
<p>And I'd suggest you take care, because there's a form helper already, and confusion could happen. On the other hand, you use the $form variable in views, generally, while this is controller code.</p>
http://stackoverflow.com/questions/1057222/what-are-the-absolute-and-relative-costs-of-different-operations-in-php/1058419#10584192Answer by Adriano Varoli Piazza for What are the absolute and relative costs of different operations in PHP?Adriano Varoli Piazza2009-06-29T13:46:51Z2009-06-29T13:46:51Z<p>Be careful! Some days ago, <a href="http://code.google.com/intl/es/speed/articles/optimizing-php.html" rel="nofollow">this article at google code</a> appeared on just this subject. It was refuted almost immediately by <a href="http://groups.google.com/group/make-the-web-faster/browse%5Fthread/thread/ddfbe82dd80408cc" rel="nofollow">this refutation</a>. So watch out and <strong>test everytime</strong>.</p>
http://stackoverflow.com/questions/391291/how-do-i-remove-word-markup-crap-when-inserting-to-a-form2How do I remove Word markup crap when inserting to a form?Adriano Varoli Piazza2008-12-24T11:35:03Z2009-06-26T02:10:36Z
<p>I'm building a CMS in PHP and one dread I have is that the users will have to fill the data in from existing Word (and Excel, but nevermind that) documents. Now, I've seen what happens when they carelessly copy and paste from Word to a textarea: the database got filled with crap markup.</p>
<p>Now, I could certainly strip all markup myself, but I'd have to start learning about it first. So I ask you: have you tested some functionality - plugins of the usual suspects (tinyMCE, FCKeditor, etc) that helps here? Bonus for the least intrusive solution.</p>
http://stackoverflow.com/questions/803807/new-unix-account-shell-setup/803833#8038330Answer by Adriano Varoli Piazza for New Unix Account Shell SetupAdriano Varoli Piazza2009-04-29T19:15:12Z2009-04-29T19:15:12Z<ul>
<li>Setup a decent .bashrc with, e.g. coloured output and a custom $PS1</li>
<li>Add a working .vimrc (install vim if necessary). At the very least, set nocompatible.</li>
<li>if possible, add a pleasant vim colorscheme.</li>
<li>Select the Dvorak - spanish keyboard layout</li>
<li>Setup the GUI environment if present. Preferably GNOME, with the 'everyone hates this' file manager mode active.</li>
</ul>
http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/343760#34376022Answer by Adriano Varoli Piazza for Worst UI You've Ever UsedAdriano Varoli Piazza2008-12-05T13:05:34Z2009-04-21T17:00:24Z<p>The Realtek sound control panel. Because you <em>obviously</em> need an equalizer setting to 'sewer pipe', 'underwater', or 'cave'.</p>
http://stackoverflow.com/questions/770744/what-commands-must-i-learn-to-become-an-effective-linux-shell-script-programmer/770758#7707582Answer by Adriano Varoli Piazza for What commands must I learn to become an effective Linux shell script programmer?Adriano Varoli Piazza2009-04-21T01:54:54Z2009-04-21T01:54:54Z<p>I'd recommend especially that you become familiar with locate, grep and find. sed, awk and vim are next, and around these are cat, less, tail / head, ls (yes, ls!), and the many ways in which bash can help you. </p>
<p>Especially about Bash: beware of bashisms!</p>
http://stackoverflow.com/questions/643983/whats-the-best-way-to-replace-the-ternary-operator-in-python/644093#6440935Answer by Adriano Varoli Piazza for What's the best way to replace the ternary operator in Python?Adriano Varoli Piazza2009-03-13T18:49:35Z2009-03-13T18:49:35Z<p>The Ternary operator <a href="http://stackoverflow.com/questions/643983/whats-the-best-way-to-replace-the-ternary-operator-in-python/644001#644001">mentioned</a> is only available from Python 2.5. From the <a href="http://en.wikipedia.org/wiki/Ternary%5Foperation" rel="nofollow">WeekeePeedeea</a>:</p>
<blockquote>
<p>Though it had been delayed for several
years by disagreements over syntax, a
ternary operator for Python was
approved as Python Enhancement
Proposal 308 and was added to the 2.5
release in September 2006. </p>
<p>Python's ternary operator differs from
the common ?: operator in the order of
its operands; the general form is <code>op1
if condition else op2</code>. This form
invites considering op1 as the normal
value and op2 as an exceptional case. </p>
<p>Before 2.5, one could use the ugly
syntax <code>(lambda x:op2,lambda
x:op1)[condition]()</code> which also takes
care of only evaluating expressions
which are actually needed in order to
prevent side effects.</p>
</blockquote>
http://stackoverflow.com/questions/604622/does-python-have-something-like-perl-5-10s-state-variables/604652#6046522Answer by Adriano Varoli Piazza for Does Python have something like Perl 5.10's "state" variables?Adriano Varoli Piazza2009-03-03T00:29:13Z2009-03-03T11:27:33Z<p>You could also use something like</p>
<pre><code>def static_num2():
k = 0
while True:
k += 1
yield k
static = static_num2().next
for i in range(0,10) :
print static()
</code></pre>
<p>to avoid a global var. Lifted from <a href="http://www.daniweb.com/forums/thread33025.html" rel="nofollow">this link</a> about the same question.</p>
http://stackoverflow.com/questions/588687/best-book-resources-to-learn-javascript-so-i-can-use-jquery-and-other-libraries/590248#5902480Answer by Adriano Varoli Piazza for Best book/resources to learn JavaScript so I can use jQuery and other libraries?Adriano Varoli Piazza2009-02-26T12:01:11Z2009-02-26T12:01:11Z<p>I'm having great success with <a href="http://oreilly.com/catalog/9780596515782/" rel="nofollow">Head First Ajax</a>. It doesn't much cover frameworks, but it gives you the low-down to be able to understand what they do.</p>
<p>For online tutorials, <a href="http://www.quirksmode.org/" rel="nofollow">QuirksMode</a> is a great reference, in my opinion.</p>
http://stackoverflow.com/questions/1805148/why-is-pythonruby-interpretedComment by Adriano Varoli Piazza on Why is (python|ruby) interpreted?Adriano Varoli Piazza2009-11-26T19:08:42Z2009-11-26T19:08:42ZThe fact that (Python at least) has had more than one compiler project going on for years, and that it's still not quite there, should sober your expectations of 'not be too hard', I guess.http://stackoverflow.com/questions/1782899/how-do-i-avoid-immediate-loading-of-associated-data-in-linq-to-sqlComment by Adriano Varoli Piazza on How do I avoid immediate loading of associated data in Linq to SQLAdriano Varoli Piazza2009-11-23T18:49:48Z2009-11-23T18:49:48ZI don't know if it's sadder that you try to game the system or that you add that as a justification. Sure, if I posted a question titled 'free naughty Pam pics' I'd get more reads. I'd also get more requests to close and flags, I guess. Maybe there were not that many people interested in Linq at that time of day?http://stackoverflow.com/questions/1782918/access-to-creatingcontrols-installercontrol-initializecomponent-is-not-possiComment by Adriano Varoli Piazza on Access to "CreatingControls.InstallerControl.InitializeComponent ()" is not possible because of the security levelAdriano Varoli Piazza2009-11-23T12:39:03Z2009-11-23T12:39:03ZEnglish in the title, pleasehttp://stackoverflow.com/questions/1782899/how-do-i-avoid-immediate-loading-of-associated-data-in-linq-to-sqlComment by Adriano Varoli Piazza on How do I avoid immediate loading of associated data in Linq to SQLAdriano Varoli Piazza2009-11-23T12:38:28Z2009-11-23T12:38:28ZTry thinking about the title of your questions a bit more, please. I'm sure they seem intuitive to you, but...http://stackoverflow.com/questions/1109347/scroll-issues-with-script-aculo-us-cakephp-autocomplete-result-list/1212244#1212244Comment by Adriano Varoli Piazza on Scroll issues with Script.aculo.us / CakePHP autocomplete result listAdriano Varoli Piazza2009-11-12T12:39:25Z2009-11-12T12:39:25ZI haven't actually checked the new version's code, sorry.http://stackoverflow.com/questions/1715859/i-want-to-align-div-b-with-div-a-horizontally-is-there-a-simple-way-to-do-it/1715925#1715925Comment by Adriano Varoli Piazza on I want to align <div> b with <div> a horizontally, is there a simple way to do it?Adriano Varoli Piazza2009-11-11T15:31:09Z2009-11-11T15:31:09ZWhat if the content of the divs wasn't just 'foo' and 'bar'? The question is perfectly valid.http://stackoverflow.com/questions/1036285/what-does-1-mean-in-perlComment by Adriano Varoli Piazza on What does $1 mean in Perl?Adriano Varoli Piazza2009-11-10T13:48:15Z2009-11-10T13:48:15Z@d03boy: could also be One Argentine Peso, or one of many other denominations that use $. Just kidding, not nitpicking.http://stackoverflow.com/questions/468262/how-will-you-print-a-character-without-library-functions-in-c/468293#468293Comment by Adriano Varoli Piazza on How will you print a character without library functions in C ?Adriano Varoli Piazza2009-11-09T15:05:32Z2009-11-09T15:05:32Z'plz send the codez' is not what SO is about.http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/1510685#1510685Comment by Adriano Varoli Piazza on When do you use Java's @Override annotation and why?Adriano Varoli Piazza2009-11-07T14:43:57Z2009-11-07T14:43:57ZDid you know that your link shows a 'you must subscribe' message covering the useful part of that page?http://stackoverflow.com/questions/1685779/most-annoying-colleague-behavior-and-how-to-deal-with-it/1687922#1687922Comment by Adriano Varoli Piazza on Most annoying colleague behavior (and how to deal with it) ?Adriano Varoli Piazza2009-11-06T14:25:01Z2009-11-06T14:25:01ZBothering a colleague, making him lose focus, when the question could have quickly been asked to google or a forum...http://stackoverflow.com/questions/1673511/c-sharp-progrmmingComment by Adriano Varoli Piazza on c sharp progrmmingAdriano Varoli Piazza2009-11-04T12:39:21Z2009-11-04T12:39:21ZThe title of your question is too vague, please edit it.http://stackoverflow.com/questions/1649391/is-it-still-python-2-6-versus-python-3/1649431#1649431Comment by Adriano Varoli Piazza on Is it still Python 2.6 versus Python 3?Adriano Varoli Piazza2009-10-30T12:46:33Z2009-10-30T12:46:33Z"Python 3: because I say so"http://stackoverflow.com/questions/1637247/php-session-help/1637322#1637322Comment by Adriano Varoli Piazza on PHP Session help Adriano Varoli Piazza2009-10-28T15:22:52Z2009-10-28T15:22:52ZI don't find much difference between <code>_start</code> and <code>_init</code>... Nor do I find <code>session_start</code> to be an unintuitive name.http://stackoverflow.com/questions/1637247/php-session-help/1637896#1637896Comment by Adriano Varoli Piazza on PHP Session help Adriano Varoli Piazza2009-10-28T15:21:26Z2009-10-28T15:21:26ZI always add an <code>exit</code> after a <code>header()</code> call, even if it's the end of the code, in case someone later extends it and finds trouble.http://stackoverflow.com/questions/5989/whats-the-best-way-to-kick-ass-in-programmingComment by Adriano Varoli Piazza on What's the best way to kick ass in programming?Adriano Varoli Piazza2009-10-28T14:59:09Z2009-10-28T14:59:09ZAsk the way to Carnegie Hall.