User Neil Aitken - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T02:24:58Zhttp://stackoverflow.com/feeds/user/13803http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803063/film-intellectual-property-and-online-questionnaires-in-europe/1803084#18030843Answer by Neil Aitken for (Film) Intellectual property and online questionnaires in EuropeNeil Aitken2009-11-26T11:16:03Z2009-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-compression1PDF file compressionNeil Aitken2009-11-23T11:58:57Z2009-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#17293505Answer by Neil Aitken for Can we use 2 different url on same anchor tag for javascript disabled and enabled condition ?Neil Aitken2009-11-13T13:58:17Z2009-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:
<a id="id" href="js_disabled_url" />Link</a>
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#15605245Answer by Neil Aitken for Replacing all <br> with <br />Neil Aitken2009-10-13T14:15:39Z2009-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><br></code> in your source files / views and not on the client side.</p>
http://stackoverflow.com/questions/175545/worst-technobabble-youve-ever-heard/1543130#15431302Answer by Neil Aitken for Worst technobabble you've ever heardNeil Aitken2009-10-09T10:59:44Z2009-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#15381451Answer by Neil Aitken for How to enter digits to a certain numberNeil Aitken2009-10-08T14:23:27Z2009-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 < 0 || this.value > 250) {
// foo
}
</code></pre>
http://stackoverflow.com/questions/1377782/javascript-how-to-determine-the-screen-height-visible-i-e-removing-the-space/1377799#13777992Answer by Neil Aitken for Javascript: How to determine the screen height visible (i.e., removing the space occupied by the address bar etc)Neil Aitken2009-09-04T07:54:56Z2009-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#13209561Answer by Neil Aitken for Deprecated warning only in some php5 environments?Neil Aitken2009-08-24T07:42:57Z2009-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#10789224Answer by Neil Aitken for Why is element <u> considered outdated according to VS2008?Neil Aitken2009-07-03T11:21:40Z2009-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#10331180Answer by Neil Aitken for Opening, Rotating, and Storing Tiff Images In a MySQL Database Blob ColumnNeil Aitken2009-06-23T15:01:00Z2009-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#10322241Answer by Neil Aitken for $_SESSION variables not transferring from page to pageNeil Aitken2009-06-23T12:23:53Z2009-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#9706080Answer by Neil Aitken for Change input from all upper case into a normal caseNeil Aitken2009-06-09T15:03:14Z2009-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#7264180Answer by Neil Aitken for mysql + update top nNeil Aitken2009-04-07T15:48:17Z2009-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#6353921Answer by Neil Aitken for Selecting all empty text fields in JqueryNeil Aitken2009-03-11T16:47:27Z2009-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#5705431Answer by Neil Aitken for What's the most code you've removed with no reduction in functionality?Neil Aitken2009-02-20T17:35:04Z2009-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#5606185Answer by Neil Aitken for Which is the best PDF library for PHP?Neil Aitken2009-02-18T11:06:50Z2009-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#5371560Answer by Neil Aitken for jQuery: Creating a DOM Element on the fly, but fading it in?Neil Aitken2009-02-11T14:54:34Z2009-02-11T14:54:34Z<p>Have you tried</p>
<pre><code>$('<div/>').html('hello').appendTo('#parentDiv').hide().fadeIn();
</code></pre>
http://stackoverflow.com/questions/460644/trigger-an-event-with-prototype2Trigger an event with PrototypeNeil Aitken2009-01-20T09:54:08Z2009-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#5278313Answer by Neil Aitken for PHP to store images in mysql or not?Neil Aitken2009-02-09T11:44:14Z2009-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#5071343Answer by Neil Aitken for What's the most egregious pop culture perversion of programming?Neil Aitken2009-02-03T13:53:21Z2009-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#5032411Answer by Neil Aitken for What do you want inscribed on your development inspired headstoneNeil Aitken2009-02-02T13:38:50Z2009-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#5029323Answer by Neil Aitken for What is the best comment in source code you have ever encountered?Neil Aitken2009-02-02T11:45:20Z2009-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#4871052Answer by Neil Aitken for Retrieve Button value with jQueryNeil Aitken2009-01-28T10:12:34Z2009-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><script type="text/javascript">
$(document).ready(function() {
$('.my_button').click(function() {
alert($(this).attr("value"));
});
});
</script>
</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#4735332Answer by Neil Aitken for Word comparison algorithmNeil Aitken2009-01-23T16:26:44Z2009-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#46489015Answer by Neil Aitken for Applying programming concepts to day to day lifeNeil Aitken2009-01-21T11:21:22Z2009-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#4388919Answer by Neil Aitken for Is there a way to password protect HTML pages without using a server side language?Neil Aitken2009-01-13T13:12:52Z2009-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#4385030Answer by Neil Aitken for HTML Tool to determine where style is coming fromNeil Aitken2009-01-13T10:05:25Z2009-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#4168656Answer by Neil Aitken for Web user expectationsNeil Aitken2009-01-06T15:03:51Z2009-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#41382215Answer by Neil Aitken for Web security, are there issues with hidden fields (no sensitive data)?Neil Aitken2009-01-05T17:15:42Z2009-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#4133083Answer by Neil Aitken for Where is the best reference for MySQL 5.0 syntax?Neil Aitken2009-01-05T14:45:42Z2009-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-managementComment by Neil Aitken on A new StackOverflow tag for hyperlink-managementNeil Aitken2009-11-27T17:14:13Z2009-11-27T17:14:13ZIf 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#1809686Comment by Neil Aitken on Escaping user data, without magic quotesNeil Aitken2009-11-27T16:42:43Z2009-11-27T16:42:43ZHis suggestion is to always use mysql_real_escape_string before DB storagehttp://stackoverflow.com/questions/1808419/creating-new-tab-switching-between-tabs-in-firefox/1808432#1808432Comment by Neil Aitken on Creating new tab / switching between Tabs in Firefox?Neil Aitken2009-11-27T12:22:22Z2009-11-27T12:22:22ZI am so glad each tab has javascript sandboxing in modern browsers. The chaos that would ensue otherwise just doesn't bear thinking abouthttp://stackoverflow.com/questions/1797553/what-are-the-biggest-hurdles-to-overcome-from-being-a-desktop-programmer-to-a-web/1797566#1797566Comment by Neil Aitken on what are the biggest hurdles to overcome from being a desktop programmer to a web programmer?Neil Aitken2009-11-25T15:44:56Z2009-11-25T15:44:56ZI couldn't have put it any more conciselyhttp://stackoverflow.com/questions/1797553/what-are-the-biggest-hurdles-to-overcome-from-being-a-desktop-programmer-to-a-web/1797590#1797590Comment by Neil Aitken on what are the biggest hurdles to overcome from being a desktop programmer to a web programmer?Neil Aitken2009-11-25T15:43:37Z2009-11-25T15:43:37ZLuckily a lot of the JS edge cases can be mitigated with a framework these days. CSS will always be painful thoughhttp://stackoverflow.com/questions/1797063/jquery-hover-problemComment by Neil Aitken on jQuery Hover ProblemNeil Aitken2009-11-25T14:03:52Z2009-11-25T14:03:52ZI 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-fastComment by Neil Aitken on How to make my server to act fastNeil Aitken2009-11-24T15:08:23Z2009-11-24T15:08:23Z@APC Blasphemy, everyone knows red ones go fasterhttp://stackoverflow.com/questions/1782709/pdf-file-compression/1782775#1782775Comment by Neil Aitken on PDF file compressionNeil Aitken2009-11-23T12:21:51Z2009-11-23T12:21:51ZGood 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-compressionComment by Neil Aitken on PDF file compressionNeil Aitken2009-11-23T12:20:28Z2009-11-23T12:20:28Z@Andy The compressed files are just for archiving, The customer would recieve a standard PDF filehttp://stackoverflow.com/questions/1782709/pdf-file-compression/1782775#1782775Comment by Neil Aitken on PDF file compressionNeil Aitken2009-11-23T12:14:45Z2009-11-23T12:14:45ZThanks 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#1782769Comment by Neil Aitken on PDF file compressionNeil Aitken2009-11-23T12:11:22Z2009-11-23T12:11:22ZThanks 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 farhttp://stackoverflow.com/questions/1782709/pdf-file-compression/1782733#1782733Comment by Neil Aitken on PDF file compressionNeil Aitken2009-11-23T12:06:46Z2009-11-23T12:06:46ZThanks, seems new 7z versions actually use LZMAhttp://stackoverflow.com/questions/1782709/pdf-file-compressionComment by Neil Aitken on PDF file compressionNeil Aitken2009-11-23T12:05:29Z2009-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-requiredComment by Neil Aitken on Regular expression requiredNeil Aitken2009-11-19T11:01:27Z2009-11-19T11:01:27ZPleast post what you have tried, we are here to help you. Not to do your job for youhttp://stackoverflow.com/questions/1747712/regex-to-match-all-html-tags-contains-p-and-pComment by Neil Aitken on Regex to match all HTML tags contains <p> and </p> Neil Aitken2009-11-17T09:53:15Z2009-11-17T09:53:15ZPlease edit your question to use the code block, your example is being parsed as html and not displaying correctly.