User Neil Aitken - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:24:58Z http://stackoverflow.com/feeds/user/13803 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1803063/film-intellectual-property-and-online-questionnaires-in-europe/1803084#1803084 3 Answer by Neil Aitken for (Film) Intellectual property and online questionnaires in Europe Neil Aitken 2009-11-26T11:16:03Z 2009-11-26T11:16:03Z <p>You would probably be better off asking a solicitor or expert in copyright law.</p> <p>Most developers are not lawyers.</p> http://stackoverflow.com/questions/1782709/pdf-file-compression 1 PDF file compression Neil Aitken 2009-11-23T11:58:57Z 2009-11-23T12:27:45Z <p>I have a requirement to dynamically generate and compress large batches of PDF files.</p> <p>I am considering the usual algorithms</p> <ul> <li>Zip</li> <li>Ace</li> <li>Rar</li> </ul> <p>Any other suggestion are welcome.</p> <p>My question is which algorithm is likely to give me the smallest file size. Speed and efficency are also important factors but size is my primary concern.</p> <p>Also does it make a difference whether I have many small files, or fewer larger files in each archive.</p> <p>Most of my processing will be done in PHP, but I'm happy to interface with third party executables if needed.</p> <p><strong>Edit:</strong></p> <p>The documents are primarily invoices and shouldn't contain any other images except for the company logo</p> http://stackoverflow.com/questions/1729318/can-we-use-2-different-url-on-same-anchor-tag-for-javascript-disabled-and-enabled/1729350#1729350 5 Answer by Neil Aitken for Can we use 2 different url on same anchor tag for javascript disabled and enabled condition ? Neil Aitken 2009-11-13T13:58:17Z 2009-11-13T13:58:17Z <p>You could set the JS disabled URL in the markup, then on page load use JS to replace the url with the enabled URL.</p> <pre><code>HTML: &lt;a id="id" href="js_disabled_url" /&gt;Link&lt;/a&gt; jQuery example: $(function() { $('#id').attr('href','js_enabled_url'); }); </code></pre> <p>This should degrade gracefully.</p> http://stackoverflow.com/questions/1560491/replacing-all-br-with-br/1560524#1560524 5 Answer by Neil Aitken for Replacing all <br> with <br /> Neil Aitken 2009-10-13T14:15:39Z 2009-10-13T14:15:39Z <p>Validators do not run javascript. They parse the HTML and compare it to the schema for the declared doctype.</p> <p>You will need to replace the <code>&lt;br&gt;</code> in your source files / views and not on the client side.</p> http://stackoverflow.com/questions/175545/worst-technobabble-youve-ever-heard/1543130#1543130 2 Answer by Neil Aitken for Worst technobabble you've ever heard Neil Aitken 2009-10-09T10:59:44Z 2009-10-09T10:59:44Z <p>I called my ISP tech support for an unreliable connection. I'd run some pretty intensive tests and discovered serious packet loss.</p> <p><strong>Me:</strong> The connection is dropping packets</p> <p><strong>Tech:</strong> What else is it dropping?</p> <p>I just gave up after that.</p> http://stackoverflow.com/questions/1538113/how-to-enter-digits-to-a-certain-number/1538145#1538145 1 Answer by Neil Aitken for How to enter digits to a certain number Neil Aitken 2009-10-08T14:23:27Z 2009-10-08T14:23:27Z <p><code>this.value.match(/[^0-9]{1,3}/g)</code></p> <p>will give you 1 to 3 digits, but a regex is probably the wrong way to go about it as you will need to your bounds checking after the regex anyway.</p> <p>It would probably be better to use something like</p> <pre><code>if(this.value &lt; 0 || this.value &gt; 250) { // foo } </code></pre> http://stackoverflow.com/questions/1377782/javascript-how-to-determine-the-screen-height-visible-i-e-removing-the-space/1377799#1377799 2 Answer by Neil Aitken for Javascript: How to determine the screen height visible (i.e., removing the space occupied by the address bar etc) Neil Aitken 2009-09-04T07:54:56Z 2009-09-04T07:54:56Z <p>What you're looking for is called the 'viewport size'</p> <p><a href="http://andylangton.co.uk/articles/javascript/get-viewport-size-javascript/" rel="nofollow">This script should give you a starting point</a></p> http://stackoverflow.com/questions/1320940/deprecated-warning-only-in-some-php5-environments/1320956#1320956 1 Answer by Neil Aitken for Deprecated warning only in some php5 environments? Neil Aitken 2009-08-24T07:42:57Z 2009-08-24T07:42:57Z <p>You've probably checked this already, but is </p> <pre><code>display_errors = On </code></pre> <p>set in both ini files?</p> http://stackoverflow.com/questions/1078912/why-is-element-u-considered-outdated-according-to-vs2008/1078922#1078922 4 Answer by Neil Aitken for Why is element <u> considered outdated according to VS2008? Neil Aitken 2009-07-03T11:21:40Z 2009-07-03T11:21:40Z <p>The tag is deprecated along with other text formatting / style elements.</p> <p>The 'in' thing to do is to use correct markup and apply styling with stylesheets.</p> http://stackoverflow.com/questions/1032994/opening-rotating-and-storing-tiff-images-in-a-mysql-database-blob-column/1033118#1033118 0 Answer by Neil Aitken for Opening, Rotating, and Storing Tiff Images In a MySQL Database Blob Column Neil Aitken 2009-06-23T15:01:00Z 2009-06-23T15:01:00Z <p>SELECT the data from your DB. Pass the data into <a href="http://uk2.php.net/manual/en/function.imagecreatefromstring.php" rel="nofollow">imagecreatefromstring</a></p> <p>You will now have an image resource that you can call imagerotate on.</p> <p>To save it back to the DB you will need to output it using <a href="http://uk2.php.net/manual/en/function.imagepng.php" rel="nofollow">imagepng</a> / <a href="http://uk2.php.net/manual/en/function.imagejpeg.php" rel="nofollow">imagejpeg</a> or the equivalent function for the image type you're using. These functions output to browser or file so you can use output buffering to capture a string to save back to the DB.</p> <pre><code>ob_start(); imagepng($resource); $img_data = ob_get_contents(); ob_end_clean(); </code></pre> <p>$img_data can now be saved to the DB.</p> <p>This is only a rough outline but I hope I've explained the idea.</p> http://stackoverflow.com/questions/1032186/session-variables-not-transferring-from-page-to-page/1032224#1032224 1 Answer by Neil Aitken for $_SESSION variables not transferring from page to page Neil Aitken 2009-06-23T12:23:53Z 2009-06-23T12:23:53Z <p>Ensure that the PHPSESSID cookie is actually being set, and that no headers / content have been sent before you call session_start()</p> http://stackoverflow.com/questions/970581/change-input-from-all-upper-case-into-a-normal-case/970608#970608 0 Answer by Neil Aitken for Change input from all upper case into a normal case Neil Aitken 2009-06-09T15:03:14Z 2009-06-09T15:03:14Z <p>If the string contains only 1 sentence then you could use:</p> <pre><code>$string = ucfirst(strtolower($string)); </code></pre> http://stackoverflow.com/questions/726386/mysql-update-top-n/726418#726418 0 Answer by Neil Aitken for mysql + update top n Neil Aitken 2009-04-07T15:48:17Z 2009-04-08T07:43:36Z <p>Try this:</p> <pre><code>update table set status = 1 where status = 2 LIMIT 400 </code></pre> <p>You can also put an order by clause</p> <pre><code>update table set status = 1 where status = 2 ORDER BY id LIMIT 400 </code></pre> http://stackoverflow.com/questions/635240/selecting-all-empty-text-fields-in-jquery/635392#635392 1 Answer by Neil Aitken for Selecting all empty text fields in Jquery Neil Aitken 2009-03-11T16:47:27Z 2009-03-11T16:47:27Z <p>This seems to work for me</p> <pre><code>$(":text:not([value])") </code></pre> http://stackoverflow.com/questions/570504/whats-the-most-code-youve-removed-with-no-reduction-in-functionality/570543#570543 1 Answer by Neil Aitken for What's the most code you've removed with no reduction in functionality? Neil Aitken 2009-02-20T17:35:04Z 2009-02-20T17:35:04Z <p>Replaced about 50 lines of javascript that was responsible for toggling elements based on a dropdown, with about 5 lines of jQuery.</p> http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php/560618#560618 5 Answer by Neil Aitken for Which is the best PDF library for PHP? Neil Aitken 2009-02-18T11:06:50Z 2009-02-18T11:06:50Z <p>FPDF is functional enough and it can be extended easily.</p> <p>DOMPDF is fine for basic HTML to PDF generation, I've used it with Smarty and it works well enough, but has some nasty bugs with tables and page breaks.</p> <p>I haven't tried Zend or TCPDF.</p> http://stackoverflow.com/questions/537143/jquery-creating-a-dom-element-on-the-fly-but-fading-it-in/537156#537156 0 Answer by Neil Aitken for jQuery: Creating a DOM Element on the fly, but fading it in? Neil Aitken 2009-02-11T14:54:34Z 2009-02-11T14:54:34Z <p>Have you tried</p> <pre><code>$('&lt;div/&gt;').html('hello').appendTo('#parentDiv').hide().fadeIn(); </code></pre> http://stackoverflow.com/questions/460644/trigger-an-event-with-prototype 2 Trigger an event with Prototype Neil Aitken 2009-01-20T09:54:08Z 2009-02-11T13:16:59Z <p>Does anybody know of a method to trigger an event in Prototype, as you can with jQuery's trigger function?</p> <p>I have bound an event listener using the observe method, but I would also like to be able to fire the event programatically.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/527801/php-to-store-images-in-mysql-or-not/527831#527831 3 Answer by Neil Aitken for PHP to store images in mysql or not? Neil Aitken 2009-02-09T11:44:14Z 2009-02-09T11:44:14Z <p>We created a shop that stored images in the DB. It worked great during development but once we tested it on the production servers the page load time was far too high, and it added unneccessary load to the DB servers. </p> <p>While it seems attractive to store binary files in the DB, fetching and manipulating them adds extra complexity that can be avoided by just keeping files on the file system and storing paths / metadata in the DB.</p> <p>This is one of those eternal debates, with excellent arguments on both sides, but for my money I would keep images away from the DB.</p> http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/507134#507134 3 Answer by Neil Aitken for What's the most egregious pop culture perversion of programming? Neil Aitken 2009-02-03T13:53:21Z 2009-02-03T13:53:21Z <p>Much as I love the film Pi, I find the construction of Euclid a bit strange.</p> <p>The room seems to be full of random wires and boards, which all plug into what appears to be a basic microchip, yet this chip is the most powerful processor in the world.</p> http://stackoverflow.com/questions/503130/what-do-you-want-inscribed-on-your-development-inspired-headstone/503241#503241 1 Answer by Neil Aitken for What do you want inscribed on your development inspired headstone Neil Aitken 2009-02-02T13:38:50Z 2009-02-02T13:38:50Z <p>$me = null; or unset($me)</p> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/502932#502932 3 Answer by Neil Aitken for What is the best comment in source code you have ever encountered? Neil Aitken 2009-02-02T11:45:20Z 2009-02-02T11:45:20Z <p>Just found this one in some of our PHP code</p> <pre><code>$s=2; // chicken and bacon wrap for lunch </code></pre> <p>How useful, luckily $s was self explanatory</p> http://stackoverflow.com/questions/487056/retrieve-button-value-with-jquery/487105#487105 2 Answer by Neil Aitken for Retrieve Button value with jQuery Neil Aitken 2009-01-28T10:12:34Z 2009-01-28T10:12:34Z <p>As a button value is an attribute you need to use the .attr() method in jquery. This should do it</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function() { $('.my_button').click(function() { alert($(this).attr("value")); }); }); &lt;/script&gt; </code></pre> <p>You can also use attr to set attributes, more info <a href="http://docs.jquery.com/Attributes/attr" rel="nofollow">in the docs</a></p> http://stackoverflow.com/questions/473522/word-comparison-algorithm/473533#473533 2 Answer by Neil Aitken for Word comparison algorithm Neil Aitken 2009-01-23T16:26:44Z 2009-01-23T16:26:44Z <p>I've had some success with the <a href="http://en.wikipedia.org/wiki/Levenshtein_distance" rel="nofollow">Levenshtein Distance</a> algorithm, there is also <a href="http://en.wikipedia.org/wiki/Soundex" rel="nofollow">Soundex</a>.</p> <p>What language are you implementing this in? we may be able to point to specific examples</p> http://stackoverflow.com/questions/464868/applying-programming-concepts-to-day-to-day-life/464890#464890 15 Answer by Neil Aitken for Applying programming concepts to day to day life Neil Aitken 2009-01-21T11:21:22Z 2009-01-21T11:21:22Z <p>That every problem can be solved by breaking it down into logical steps.</p> http://stackoverflow.com/questions/438886/is-there-a-way-to-password-protect-html-pages-without-using-a-server-side-languag/438891#438891 9 Answer by Neil Aitken for Is there a way to password protect HTML pages without using a server side language? Neil Aitken 2009-01-13T13:12:52Z 2009-01-13T13:12:52Z <p>There is no way to create a secure clientside script. If the user has access to it, it's insecure.</p> <p>If your host is running apache you can secure folders using .htaccess, on IIS you can do the same through directory security.</p> http://stackoverflow.com/questions/437853/html-tool-to-determine-where-style-is-coming-from/438503#438503 0 Answer by Neil Aitken for HTML Tool to determine where style is coming from Neil Aitken 2009-01-13T10:05:25Z 2009-01-13T10:05:25Z <p>The <a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">web developer toolbar</a> for Firefox has CSS and element inspectors which I find very useful.</p> <p>You can also modify the CSS in the browser so you can tweak layout without going back to your IDE</p> http://stackoverflow.com/questions/416813/web-user-expectations/416865#416865 6 Answer by Neil Aitken for Web user expectations Neil Aitken 2009-01-06T15:03:51Z 2009-01-06T15:03:51Z <ul> <li>If a form doesn't validate, I don't expect to have to retype it before trying again</li> <li>If a control is disabled, it should be greyed out / denoted in some way</li> <li>When I press back I expect to go back, not get thrown out of the system (bloody banking websites)</li> </ul> http://stackoverflow.com/questions/413802/web-security-are-there-issues-with-hidden-fields-no-sensitive-data/413822#413822 15 Answer by Neil Aitken for Web security, are there issues with hidden fields (no sensitive data)? Neil Aitken 2009-01-05T17:15:42Z 2009-01-05T17:15:42Z <p>A hacker can access hidden fields just as easily as querystring values by using an intercepting proxy (or any number of tools).</p> <p>I dont think there is anything wrong with using hidden fields as long as they aren't used for anything sensitive and you validate them like you would any other value from the client.</p> http://stackoverflow.com/questions/413297/where-is-the-best-reference-for-mysql-5-0-syntax/413308#413308 3 Answer by Neil Aitken for Where is the best reference for MySQL 5.0 syntax? Neil Aitken 2009-01-05T14:45:42Z 2009-01-05T14:45:42Z <p>The official <a href="http://dev.mysql.com/doc/refman/5.0/en/index.html" rel="nofollow">MySQL documentation</a> is the best place. It has tutorials and references for everything</p> http://stackoverflow.com/questions/1809815/a-new-stackoverflow-tag-for-hyperlink-management Comment by Neil Aitken on A new StackOverflow tag for hyperlink-management Neil Aitken 2009-11-27T17:14:13Z 2009-11-27T17:14:13Z If you want this tag to be created, ask a question related to it and set it as one of the tags. I suspect this will be closed as it's not actually a programming question. http://stackoverflow.com/questions/1809658/escaping-user-data-without-magic-quotes/1809686#1809686 Comment by Neil Aitken on Escaping user data, without magic quotes Neil Aitken 2009-11-27T16:42:43Z 2009-11-27T16:42:43Z His suggestion is to always use mysql_real_escape_string before DB storage http://stackoverflow.com/questions/1808419/creating-new-tab-switching-between-tabs-in-firefox/1808432#1808432 Comment by Neil Aitken on Creating new tab / switching between Tabs in Firefox? Neil Aitken 2009-11-27T12:22:22Z 2009-11-27T12:22:22Z I am so glad each tab has javascript sandboxing in modern browsers. The chaos that would ensue otherwise just doesn't bear thinking about http://stackoverflow.com/questions/1797553/what-are-the-biggest-hurdles-to-overcome-from-being-a-desktop-programmer-to-a-web/1797566#1797566 Comment by Neil Aitken on what are the biggest hurdles to overcome from being a desktop programmer to a web programmer? Neil Aitken 2009-11-25T15:44:56Z 2009-11-25T15:44:56Z I couldn't have put it any more concisely http://stackoverflow.com/questions/1797553/what-are-the-biggest-hurdles-to-overcome-from-being-a-desktop-programmer-to-a-web/1797590#1797590 Comment by Neil Aitken on what are the biggest hurdles to overcome from being a desktop programmer to a web programmer? Neil Aitken 2009-11-25T15:43:37Z 2009-11-25T15:43:37Z Luckily a lot of the JS edge cases can be mitigated with a framework these days. CSS will always be painful though http://stackoverflow.com/questions/1797063/jquery-hover-problem Comment by Neil Aitken on jQuery Hover Problem Neil Aitken 2009-11-25T14:03:52Z 2009-11-25T14:03:52Z I was going to say try mouseover instead of hover, but after looking at your source it seems you've already tried that. http://stackoverflow.com/questions/1790643/how-to-make-my-server-to-act-fast Comment by Neil Aitken on How to make my server to act fast Neil Aitken 2009-11-24T15:08:23Z 2009-11-24T15:08:23Z @APC Blasphemy, everyone knows red ones go faster http://stackoverflow.com/questions/1782709/pdf-file-compression/1782775#1782775 Comment by Neil Aitken on PDF file compression Neil Aitken 2009-11-23T12:21:51Z 2009-11-23T12:21:51Z Good idea, we are using MD5 to validate the integrity of the imports anyway so storing a hash of the generated file isn't a problem. http://stackoverflow.com/questions/1782709/pdf-file-compression Comment by Neil Aitken on PDF file compression Neil Aitken 2009-11-23T12:20:28Z 2009-11-23T12:20:28Z @Andy The compressed files are just for archiving, The customer would recieve a standard PDF file http://stackoverflow.com/questions/1782709/pdf-file-compression/1782775#1782775 Comment by Neil Aitken on PDF file compression Neil Aitken 2009-11-23T12:14:45Z 2009-11-23T12:14:45Z Thanks I'll look into this. May have to persuade the bosses to use an unknown tool though. http://stackoverflow.com/questions/1782709/pdf-file-compression/1782769#1782769 Comment by Neil Aitken on PDF file compression Neil Aitken 2009-11-23T12:11:22Z 2009-11-23T12:11:22Z Thanks for the thorough info. I'm currently playing with the different algorithms to see which one gives good rates. 7z running in LZMA seems to be the best so far http://stackoverflow.com/questions/1782709/pdf-file-compression/1782733#1782733 Comment by Neil Aitken on PDF file compression Neil Aitken 2009-11-23T12:06:46Z 2009-11-23T12:06:46Z Thanks, seems new 7z versions actually use LZMA http://stackoverflow.com/questions/1782709/pdf-file-compression Comment by Neil Aitken on PDF file compression Neil Aitken 2009-11-23T12:05:29Z 2009-11-23T12:05:29Z @Pekka Thanks, made an edit. @Pierre Yes PDF is already compressed but I think it is possible to compress it further, also each archive will contain multiple PDFs so there may be a difference there. http://stackoverflow.com/questions/1762494/regular-expression-required Comment by Neil Aitken on Regular expression required Neil Aitken 2009-11-19T11:01:27Z 2009-11-19T11:01:27Z Pleast post what you have tried, we are here to help you. Not to do your job for you http://stackoverflow.com/questions/1747712/regex-to-match-all-html-tags-contains-p-and-p Comment by Neil Aitken on Regex to match all HTML tags contains <p> and </p> Neil Aitken 2009-11-17T09:53:15Z 2009-11-17T09:53:15Z Please edit your question to use the code block, your example is being parsed as html and not displaying correctly.