User alex - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T03:32:14Z http://stackoverflow.com/feeds/user/31671 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1806688/is-there-a-less-hacky-way-to-do-this-in-mysql 1 Is there a less hacky way to do this in MySQL? alex 2009-11-27T04:16:01Z 2009-11-27T06:24:18Z <p>I need to get the last inserted product by a user. This is what I've came up with</p> <pre><code> $query = 'SELECT id FROM products WHERE user_id = ? ORDER BY id DESC LIMIT 1'; </code></pre> <p>It <em>should</em> work because the id is auto increment. To me though, it feels hacky. Is there a better way to do this?</p> <p>I can't use <code>mysql_last_insert_id()</code> or anything like that because I need the last product by a specific user.</p> http://stackoverflow.com/questions/1806917/is-it-possible-to-include-a-javascript-file-which-is-in-a-zipped-file/1806998#1806998 1 Answer by alex for Is it possible to include a javascript file which is in a zipped file? alex 2009-11-27T05:53:43Z 2009-11-27T05:53:43Z <p>Some people want this functionality, but currently it isn't supported.</p> <p>I don't believe it's very useful either - if you zip all JS and CSS, how can you cache parts of them on the local machine? There is already GZIP too, and minification.</p> <p>Images also won't make much or possibly overhead by being zipped if they are in a compressed format like PNG.</p> http://stackoverflow.com/questions/1806701/when-is-best-to-use-exceptions-in-php 2 When is best to use exceptions in PHP? alex 2009-11-27T04:21:33Z 2009-11-27T05:04:50Z <p>I usually indicate an error in a method by returning false, but it doesn't always gel with me semantically (as depending on the method, false may be a valid return).</p> <p>I've looked into exceptions, and am wondering are they a one-size-fits-all solution? Should I return false where I can still?</p> <p>I <em>may</em> be completely missing the point here so please bare with me.</p> <pre><code>// My old way function getProductById($id) { if ( ! is_numeric($id)) { return false; } } // My consideration function getProductById($id) { if ( ! is_numeric($id)) { throw new Exception('The id must be numerical!'); } } </code></pre> http://stackoverflow.com/questions/1806736/how-to-make-the-first-column-of-a-table-invisible/1806755#1806755 2 Answer by alex for How to make the first column of a table invisible? alex 2009-11-27T04:37:26Z 2009-11-27T04:37:26Z <p>If you don't care about IE6 support you could do</p> <pre><code>table tr td:first-child { display: none; } </code></pre> <p>Though I'm unsure if that would hide the first one only, or the first one of every row.</p> http://stackoverflow.com/questions/1806475/php-mysql-insert-n-rows-at-once/1806494#1806494 1 Answer by alex for PHP MySql Insert n rows at once? alex 2009-11-27T02:25:58Z 2009-11-27T02:25:58Z <p><a href="http://stackoverflow.com/questions/1806475/php-mysql-insert-n-rows-at-once/1806486#1806486">stereofrog's answer</a> is correct, however I wouldn't just built one massive query string.</p> <p>After say 10 lots of values, I'd run an insert. It would seem less likely to fail that way then sending a possible huge query to MySQL</p> <pre><code>$query = ''; foreach($items as $key =&gt; $item) { if ($key % 10) { // Reset and insert } } </code></pre> http://stackoverflow.com/questions/1806092/how-to-truncate-text-until-more-link-is-clicked/1806106#1806106 1 Answer by alex for How to truncate text until "more" link is clicked? alex 2009-11-26T23:26:47Z 2009-11-26T23:26:47Z <p>Because I'm a jQuery guy, here is some psuedo code</p> <ul> <li>Select element which contains p</li> <li>Select after first 50 chars and wrap a div around with a class 'more-text'</li> <li>Insert with Js after a <code>&lt;button&gt;more&lt;/button&gt;</code></li> <li>Add a click event button that sets <code>display: block</code> or something more fancy on the <code>more-text</code></li> <li>Remove button or change it's text to 'less' and change necessary code</li> </ul> http://stackoverflow.com/questions/1801752/where-we-should-put-skip-to-content-links/1801766#1801766 0 Answer by alex for Where we should put "skip to content" links? alex 2009-11-26T05:51:51Z 2009-11-26T05:51:51Z <p>It will no doubt vary from site to site, but I would put it before the navigation.</p> <p>That way a screen reader can read out 'Skip to content' before it has to go through the main navigation list and say things like 'About Us. Links. Contact Us.' etc</p> http://stackoverflow.com/questions/1796562/magento-removing-the-black-background-from-automatic-thumbnails/1796682#1796682 2 Answer by alex for Magento - Removing the black background from automatic thumbnails? alex 2009-11-25T12:41:48Z 2009-11-25T12:41:48Z <p>I can give you some steps on how to do this - and some tips that will help you with web development</p> <ol> <li>Download <a href="http://www.getfirebug.com" rel="nofollow">Firebug</a> &amp; install it.</li> <li>Right click on the image and select <em>Inspect Element</em></li> <li>Look at the parent element of the img. Click on it and view the CSS in the right hand pane. </li> <li>Look for something like <code>background-color: #000</code>. Work out where it is being set. If it is not this element, repeat step 3, but look at the parent of what you were just looking at.</li> <li>Open the CSS file that Firebug is telling you the CSS is located (possibly boxes.css, but it's been a while since I've used Magento) and modify the CSS property. If you want white, chuck in the value <code>#fff</code>.</li> <li>Enjoy, and use Firebug to help you in other tricky spots!</li> </ol> <p>Also, if Magento is a little crazy, it could be adding that background with GD, but I doubt it. If it is, you've got more work cut out for you!</p> http://stackoverflow.com/questions/1795089/need-help-with-jquery-to-javascript 0 Need help with jQuery to JavaScript alex 2009-11-25T06:49:22Z 2009-11-25T10:51:10Z <p>I want to rewrite this line as vanilla JS so it is applied quicker (and before the downloading of the jQuery library). The line is</p> <pre><code>$(document).ready(function() { $('body').addClass('javascript'); }); </code></pre> <p>If I added it to the html element instead, would I be able to leave off the DOM ready part? One problem with this though is the validator doesn't like the class attribute on the html element, even if it is inserted with JS.</p> <p>So, how would I rewrite that as vanilla JS?</p> http://stackoverflow.com/questions/1794227/where-can-i-find-docs-for-prestashop 0 Where can I find docs for PrestaShop? alex 2009-11-25T02:07:42Z 2009-11-25T02:07:42Z <p>I have downloaded and am using PrestaShop - but can not seem to find any docs. The official ones are apparently 'coming soon'.</p> <p>I imagine there should be some 3rd party ones elsewhere.. but can not find with Google myself. </p> <p>Does anyone know of any?</p> <p>thanks</p> http://stackoverflow.com/questions/1788281/wordpress-how-to-put-an-enter-page/1788303#1788303 0 Answer by alex for wordpress : how to put an enter page? alex 2009-11-24T06:51:03Z 2009-11-24T06:51:03Z <p>Besides the fact that splash pages are so very wrong... (the only defensible exception I can think of is for an adults only site that asks you if you are 18 or older), you could set it up as <code>index.html</code> and ensure your .htaccess has</p> <pre><code>DirectoryIndex index.html index.php </code></pre> http://stackoverflow.com/questions/1787306/do-you-use-any-tools-for-rapid-html-css-development/1787379#1787379 0 Answer by alex for Do you use any tools for rapid html/css development? alex 2009-11-24T02:18:21Z 2009-11-24T02:18:21Z <p>I think it's a cool idea, and could be useful, but I don't think it'll become too popular.</p> <p>However, feel free to prove me wrong!</p> http://stackoverflow.com/questions/1761252/how-to-get-random-image-from-directory-using-php/1761302#1761302 6 Answer by alex for how to get random image from directory using php alex 2009-11-19T06:36:12Z 2009-11-23T22:37:35Z <pre><code>$imagesDir = 'images/tips/'; $images = glob($imagesDir . '*.{jpg,jpeg,png,gif}', GLOB_BRACE); $randomImage = $images[array_rand($images)]; // See comments </code></pre> <p>You can send a 2nd argument to <code>array_rand()</code> to get more than 1.</p> <p>It looks like some people don't know <code>array_rand()</code> exists.</p> http://stackoverflow.com/questions/1783199/what-does-the-javascript-snippet-mean/1783237#1783237 4 Answer by alex for What does the javascript snippet mean? alex 2009-11-23T13:50:00Z 2009-11-23T13:50:00Z <p><a href="http://www.codinghorror.com/blog/archives/001277.html" rel="nofollow">The old frame buster</a>. <a href="http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed">Be also afraid of the frame buster buster</a>.</p> http://stackoverflow.com/questions/688323/is-there-an-online-tester-for-xpath-selectors 3 Is there an online tester for xPath selectors? alex 2009-03-27T02:38:07Z 2009-11-20T22:43:08Z <p>I know there are some online regex evaluators.. very useful, matching in real time. They are like web applications of RegexBuddy.</p> <p>I was wondering if there is a similar thing for xPath selectors? I am just learning them and it would be valuable to me.</p> <p>Is there an online tester that allows you to input XML and then an xPath selector and match (live would be better, but I doubt someone has written a JavaScript interpreter?) them?</p> <p>Thanks</p> http://stackoverflow.com/questions/937603/a-jquery-question-about-variables-and-selectors 2 A jQuery question about variables and selectors alex 2009-06-02T01:40:11Z 2009-11-19T23:10:35Z <p>Lately, I have been doing this in an effort to speed up performance (and sometimes it helps with maintainability)</p> <pre><code>var objectToReference = $('div .complicated #selector ul:last'); </code></pre> <p>So what does <code>objectToReference</code> really hold? Sometimes things have bitten me, so I've gone back to using the full selector and it has worked.</p> <p>So does the variable hold a reference, a pointer, etc (I'm not sure the exact definition of those terms)</p> <p>Thanks</p> http://stackoverflow.com/questions/297960/hash-collision-what-are-the-chances 3 Hash Collision - what are the chances? alex 2008-11-18T05:55:44Z 2009-11-19T21:04:39Z <p>I have some code on my PHP powered site that creates a random hash (using sha1()) and I use it to match records in the database. This is to obfuscate things like id's in query strings which can (and usually are) sequential, and I don't want anyone changing it in the query string to get other information.</p> <p>What are the chances of a collision? Should I generate the hash, then check first if it's in the database (I'd rather avoid an extra query) or automatically insert it, based on the probability that it <em>probably</em> won't collide with another.</p> <p>Thank you!</p> http://stackoverflow.com/questions/1761032/is-there-anything-wrong-with-having-a-button-as-a-child-element-of-an-anchor 0 Is there anything wrong with having a button as a child element of an anchor? alex 2009-11-19T05:15:03Z 2009-11-19T05:19:29Z <p>I quickly tested this in Firefox, and it seems to work</p> <pre><code>&lt;a href="somewhere"&gt;&lt;button&gt;Go&lt;/button&gt;&lt;/a&gt; </code></pre> <p>The Validator didn't choke on it, but is it a reliable way to make a button a link?</p> http://stackoverflow.com/questions/1753826/is-using-a-mail-model-in-mvc-incorrect 1 Is using a Mail Model in MVC incorrect? alex 2009-11-18T05:26:19Z 2009-11-18T12:52:15Z <p>I have built a model in some of my MVC websites to assist with sending emails, generally I do something like this</p> <pre><code>$mail = new Mail_Model; $mail-&gt;to('me@somewhere.com'); $mail-&gt;from('you@somewhere.com'); $mail-&gt;subject('hello'); $mail-&gt;body('hello how are you'); $mail-&gt;send(); </code></pre> <p>I know the model is meant to model data - so is what I'm doing a violation of that? Should it be a helper class instead? Something like...</p> <pre><code>Mail::send('me@somewhere.com', 'you@somewhere.com', 'hello', 'hello how are you'); </code></pre> <p>That second one doesn't read as well to me.. of course I could pass in an array with named keys to make it more readable.</p> <p>So is my Mail model violating what a model should be in the MVC paradigm?</p> http://stackoverflow.com/questions/1754016/is-jwysiwyg-editor-too-buggy-for-production-use 1 Is jWYSIWYG editor too buggy for production use? alex 2009-11-18T06:19:48Z 2009-11-18T09:39:44Z <p>After reading the comments on this site:</p> <p><a href="http://www.webresourcesdepot.com/jwysiwyg-jquery-inline-content-editor-plugin/" rel="nofollow">http://www.webresourcesdepot.com/jwysiwyg-jquery-inline-content-editor-plugin/</a></p> <p>There is a bit of consensus that <a href="http://code.google.com/p/jwysiwyg/" rel="nofollow">jWYSIWYG</a> editor is <em>too buggy</em> (especially in the last few recent comments). Has anyone had experience with it in a large production site?</p> <p>I haven't run a huge sample of markup through it yet, but so far it has seemed to do the job fine.</p> http://stackoverflow.com/questions/1753983/help-with-changing-how-jwysiwyg-editor-works 0 Help with changing how jWYSIWYG editor works alex 2009-11-18T06:10:48Z 2009-11-18T07:17:55Z <p>In <a href="http://code.google.com/p/jwysiwyg/" rel="nofollow">jWYSIWYG editor</a>, pushing enter inserts <code>&lt;br /&gt;</code>s.</p> <p>Instead of this, I would prefer that pushing enter would wrap chunks in <code>&lt;p&gt;</code> tags.</p> <p><strong>WHAT IS OUTPUT</strong></p> <pre><code>line &lt;br /&gt; new line </code></pre> <p><strong>WHAT I WANT</strong></p> <pre><code>&lt;p&gt;line&lt;/p&gt; &lt;p&gt;new line&lt;/p&gt; </code></pre> <p>Quick examination of the config seems I can't do it without hacking it internally.</p> <p>Do you suggest I hack the plugin, or use PHP to do it? The incoming HTML is parsed with HTML Purifier, so if that could do it, that would be great.</p> <p>So - where should I do it, in the plugin or PHP? Any quick implementations of how to do it?</p> <p>Thanks</p> http://stackoverflow.com/questions/1752988/what-is-the-best-type-to-use-for-a-column-in-mysql-containing-the-body-of-text-ou 0 What is the best type to use for a column in MySQL containing the body of text output by a CMS? alex 2009-11-18T01:13:04Z 2009-11-18T01:20:39Z <p>I'm doing a quick and dirty CMS module for a site - just a jWYSIWYG editor. </p> <p>I've never really thought about the best type to use for the column that will contain the outputted XHTML from the editor. I have always used <code>blob</code> in the past, but am unsure why I picked that.</p> <p>Any recommendations?</p> http://stackoverflow.com/questions/1739353/merge-join-2-jquery-sets 0 Merge/Join 2 jQuery sets alex 2009-11-15T23:55:21Z 2009-11-17T12:24:26Z <p>Look at this code for example</p> <pre><code>$div = $('#my div'); $ul = $('#somewhere ul'); </code></pre> <p>How can I perform a jQuery method on both of them? For example, would this work? What is best practice here?</p> <pre><code>$($div, $ul).addClass('my-new-class'); </code></pre> <p>Wouldn't that search $div under a context of $ul ?</p> <p>Thank you</p> http://stackoverflow.com/questions/1727329/brute-force-dos-prevention-in-php/1746609#1746609 0 Answer by alex for Brute-force/DoS prevention in PHP alex 2009-11-17T04:36:09Z 2009-11-17T04:36:09Z <p>I have used something like this</p> <ul> <li>Check username and password <ul> <li>If no match then, record last failed login time for that combo and number of failed logins. Each fail makes the wait between being able to login something like failsCount * 30 seconds.</li> </ul></li> </ul> <p><strong>INFO</strong></p> <ul> <li>This means a brute force attack will exponentially take longer and longer.</li> <li>It could lock a user out - but it will not count a failed login whilst trying to login during the lockout period. This should minimise it.</li> </ul> <p>I've developed this but not released it into the wild yet, so any feedback would be appreciated.</p> http://stackoverflow.com/questions/754607/can-jquery-get-all-css-styles-associated-with-an-element 3 Can jQuery get all CSS styles associated with an element? alex 2009-04-16T03:08:48Z 2009-11-16T06:38:41Z <p>Is there a way in jQuery to get all CSS from an existing element and apply it to another without listing them all?</p> <p>I know it would work if they were a style attribute with <code>attr()</code>, but all of my styles are in an external style sheet.</p> <p>Thank you Stackers</p> http://stackoverflow.com/questions/1739657/php-input-field-coming-across-as-integer/1739661#1739661 4 Answer by alex for php Input field coming across as Integer alex 2009-11-16T01:59:09Z 2009-11-16T01:59:09Z <p>You could cast it to a string like this</p> <pre><code>$zip = (string) $_POST['zip']; </code></pre> http://stackoverflow.com/questions/1727220/should-i-learn-the-google-closure-javascript-framework-or-is-it-just-a-passing 2 Should I learn the Google Closure JavaScript framework, or is it just a passing (albeit Google branded) framework? alex 2009-11-13T05:02:11Z 2009-11-13T09:01:58Z <p>By now, I'm sure a lot of people will agree jQuery is pretty much the <em>standard</em> JavaScript framework (or as much as one can ever be). I mean, it has been adopted by Nokia and Microsoft. </p> <p>Now that Google has put out it's own framework, is it worth my time learning it? Do you expect good adoption of it because of the Google name?</p> http://stackoverflow.com/questions/1727163/how-can-i-operate-on-an-dom-element-cloned-with-jquery/1727235#1727235 1 Answer by alex for How can I operate on an DOM element cloned with jQuery? alex 2009-11-13T05:06:44Z 2009-11-13T05:06:44Z <p>If you want to change the Id of the element you are cloning, try this</p> <pre><code>var clonedForm = $("#myForm").clone(); clonedForm.attr( { id: 'new-id' } ); </code></pre> http://stackoverflow.com/questions/1726332/how-switch-register-globals-off/1726713#1726713 1 Answer by alex for how switch register globals off alex 2009-11-13T02:15:10Z 2009-11-13T02:15:10Z <p>If worse comes to worse and you can not disable it, try this psuedo code</p> <ul> <li>Loop through all superglobals</li> <li>If $var = $_SUPERGLOB[$var] then <code>unset()</code></li> </ul> http://stackoverflow.com/questions/1712973/how-to-include-config-php-efficiently/1712995#1712995 2 Answer by alex for How to include config.php efficiently? alex 2009-11-11T04:22:38Z 2009-11-11T04:22:38Z <p>You can make a base dir constant</p> <pre><code>define('BASE_DIR', realpath(__FILE__)); </code></pre> <p>Put that in your index.php</p> <p>Then you can do</p> <pre><code>include BASE_DIR . 'config.php'; </code></pre> http://stackoverflow.com/questions/315470/why-do-people-ask-for-computer-it-help-if-you-tell-them-youre-a-programmer/318800#318800 Comment by alex on Why do people ask for computer (IT) help if you tell them you're a programmer? alex 2009-12-03T08:15:53Z 2009-12-03T08:15:53Z +1 I like this answer - parents get free tech support! http://stackoverflow.com/questions/1826278/find-a-with-image-extension-in-href-jquery/1826332#1826332 Comment by alex on Find <a> with image extension in href (jQuery) alex 2009-12-01T14:04:35Z 2009-12-01T14:04:35Z It also would work in some edge cases like image1.jpg&amp;uname=tom ... however in saying that it would also match the extension if it occurred as part of the URL elsewhere... but that seems unlikely. http://stackoverflow.com/questions/1826278/find-a-with-image-extension-in-href-jquery/1826332#1826332 Comment by alex on Find <a> with image extension in href (jQuery) alex 2009-12-01T14:02:55Z 2009-12-01T14:02:55Z +1 I like this one... very DRY http://stackoverflow.com/questions/1806917/is-it-possible-to-include-a-javascript-file-which-is-in-a-zipped-file Comment by alex on Is it possible to include a javascript file which is in a zipped file? alex 2009-11-27T05:55:28Z 2009-11-27T05:55:28Z You could use PHP, and extract a zip on the server and then link to it :P http://stackoverflow.com/questions/1806701/when-is-best-to-use-exceptions-in-php/1806823#1806823 Comment by alex on When is best to use exceptions in PHP? alex 2009-11-27T05:41:51Z 2009-11-27T05:41:51Z It's an interesting idea... I don't know yet if I want to clutter my parameter lists with it. http://stackoverflow.com/questions/1806736/how-to-make-the-first-column-of-a-table-invisible/1806755#1806755 Comment by alex on How to make the first column of a table invisible? alex 2009-11-27T05:39:52Z 2009-11-27T05:39:52Z And this shouldn't be used to hide any sensitive data.... http://stackoverflow.com/questions/1806688/is-there-a-less-hacky-way-to-do-this-in-mysql/1806709#1806709 Comment by alex on Is there a less hacky way to do this in MySQL? alex 2009-11-27T04:28:33Z 2009-11-27T04:28:33Z That's a good idea... how would you write your query then to get the newest product? http://stackoverflow.com/questions/1806688/is-there-a-less-hacky-way-to-do-this-in-mysql/1806693#1806693 Comment by alex on Is there a less hacky way to do this in MySQL? alex 2009-11-27T04:23:02Z 2009-11-27T04:23:02Z That <i>is</i> a bit better... I feel foolish for forgetting about these things in MySQL. Thanks! http://stackoverflow.com/questions/1801957/what-exactly-does-closure-refer-to-in-javascript Comment by alex on What exactly does "closure" refer to in JavaScript? alex 2009-11-27T03:55:18Z 2009-11-27T03:55:18Z +1 because you ask handy questions http://stackoverflow.com/questions/1806437/does-using-a-framework-prevent-me-from-mastering-javascript/1806448#1806448 Comment by alex on Does using a framework prevent me from mastering JavaScript? alex 2009-11-27T02:43:53Z 2009-11-27T02:43:53Z +1 ... I just had to tip you over (9,999) (and a good answer) http://stackoverflow.com/questions/1806437/does-using-a-framework-prevent-me-from-mastering-javascript/1806456#1806456 Comment by alex on Does using a framework prevent me from mastering JavaScript? alex 2009-11-27T02:39:51Z 2009-11-27T02:39:51Z +1 good answer sir http://stackoverflow.com/questions/1795089/need-help-with-jquery-to-javascript/1796132#1796132 Comment by alex on Need help with jQuery to JavaScript alex 2009-11-27T01:26:30Z 2009-11-27T01:26:30Z Thanks for your answer - should I parse the XHTML with regex too? :P <i>provoking</i> http://stackoverflow.com/questions/1796443/calculating-difference-between-username-and-email-in-javascript/1796509#1796509 Comment by alex on Calculating difference between username and email in javascript alex 2009-11-26T23:03:52Z 2009-11-26T23:03:52Z Well my answer ended up sucking... have a +1 :D http://stackoverflow.com/questions/1796443/calculating-difference-between-username-and-email-in-javascript/1796487#1796487 Comment by alex on Calculating difference between username and email in javascript alex 2009-11-26T10:21:38Z 2009-11-26T10:21:38Z @Nick If it works for him... http://stackoverflow.com/questions/1800675/write-csv-to-file-without-enclosures-in-php Comment by alex on Write CSV To File Without Enclosures In PHP alex 2009-11-25T23:34:35Z 2009-11-25T23:34:35Z I think you need the quotes.. what if there is a newline character or comma in there and they are not quote delimited?