User Tom - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T01:26:18Zhttp://stackoverflow.com/feeds/user/39256http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/403372/how-rotate-a-pdf-document-using-php/475863#4758631Answer by Tom for How rotate a pdf document using php?Tom2009-01-24T11:06:04Z2009-01-24T11:06:04Z<p>You could use pdf90 from <a href="http://go.warwick.ac.uk/pdfjam" rel="nofollow">PDFjam</a>.</p>
<p>To address some of the other suggestions:</p>
<ul>
<li><p>I would be wary of adjusting the Rotate attribute directly, as this attribute is stored as text, and '90' or '270' obviously uses a different number of bytes to '0'. I believe inserting the required bytes can make a mess of the index tables that appear at the end of a PDF file. After that, you're reliant on a viewer being able to interpret the damaged file.</p></li>
<li><p>Rendering the PDF to an image and rotating that is going to rasterize any text or vector graphics, leading to either a much larger file size, or much lower quality.</p></li>
</ul>
http://stackoverflow.com/questions/420739/best-way-to-change-pagination-of-existing-pdf/475855#4758551Answer by Tom for Best way to change pagination of existing PDFTom2009-01-24T10:55:29Z2009-01-24T10:55:29Z<p>For completeness, I'll add that <a href="http://go.warwick.ac.uk/pdfjam" rel="nofollow">PDFjam</a> is more direct than going through Postscript and psnup. It includes "pdfnup", which can probably do what you want. But there are a couple of downsides for your application:</p>
<ul>
<li><p>It's basically just a wrapper for pdfTeX and the package "pdfpages"</p></li>
<li><p>The scripts are mainly written for Unix-like systems, and only talk about working on Windows through cygwin</p></li>
</ul>
<p>The combination of a TeX installation with cygwin doesn't exactly meet your specification of "as little to deploy on the server as possible".</p>
<p>But if you're looking for an open-source solution, pdf(La)TeX really excels at this sort of pdf manipulation. The best route might be to look at what pdfnup does, and duplicate the functionality you need in .NET.</p>
http://stackoverflow.com/questions/319679/sorting-structures-in-order-of-least-change/331365#3313653Answer by Tom for Sorting structures in order of least changeTom2008-12-01T16:37:42Z2008-12-01T16:37:42Z<h2>Your problem</h2>
<p>I think this question should really be tagged with 'compression'.</p>
<p>As I understand it, you have unordered records which consist of eight 4-byte integers: 32 bytes in total. You want to store these records with a minimum file size, and have decided to use some form of <a href="http://en.wikipedia.org/wiki/Delta_encoding" rel="nofollow">delta encoding</a> based on a <a href="http://en.wikipedia.org/wiki/Hamming_distance" rel="nofollow">Hamming distance</a>. You're asking how to best sort your data for the compression scheme you've constructed.</p>
<h2>Your assumptions</h2>
<p>From what you've told us, I don't see any real reason for you to split up your 32 bytes in the way you've described (apart from the fact that word boundaries are convenient)! If you get the same data back, do you really care if it's encoded as eight lots of 4 bytes, or sixteen lots of 2 bytes, or as one huge 32-byte integer?</p>
<p>Furthermore, unless there's something about the problem domain which makes your method the favourite, your best bet is probably to use a <a href="http://en.wikipedia.org/wiki/Data_compression#Lossless_data_compression" rel="nofollow">tried-and-tested compression scheme</a>. You should be able to find code that's already written, and you'll get good performance on typical data.</p>
<h2>Your question</h2>
<p>Back to your original question, if you really do want to take this route. It's easy to imagine picking a starting record (I don't think it will make much difference which, but it probably makes sense to pick the 'smallest' or 'largest'), and computing the Hamming distance to all other records. You could then pick the one with the minimum distance to store next, and repeat. Obviously this is O(n^2) in the number of records. Unfortunately, <a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.7.3940" rel="nofollow">this paper</a> (which I haven't read or understood in detail) makes it look like computing the minimum Hamming distance from one string to a set of others is intrinsically hard, and doesn't have very good approximations.</p>
<p>You could obviously get better complexity by sorting your records based on <a href="http://en.wikipedia.org/wiki/Hamming_weight" rel="nofollow">Hamming weight</a> (which comes down to the population count of that 32-byte integer), which is O(n log(n)) in the number of records. Then use some difference coding on the result. But I don't think this will make a terribly good compression scheme: the integers from 0 to 7 might end up as something like:</p>
<p>000, 100, 010, 001, 101, 011, 110, 111</p>
<p>0, 4, 2, 1, 5, 3, 6, 7</p>
<p>Which brings us back to the question I asked before: are you sure your compression scheme is better than something more standard for your particular data?</p>
http://stackoverflow.com/questions/323354/export-html-to-pdf-c-windows/323513#3235131Answer by Tom for Export HTML to PDF (C++, Windows)Tom2008-11-27T11:26:00Z2008-11-27T11:26:00Z<p>This might be a slightly clumsy route, but why not convert the HTML to LaTeX source (<a href="http://html2latex.sourceforge.net/" rel="nofollow">html2latex</a> is freely available) and then run the result through <a href="http://www.tug.org/applications/pdftex/" rel="nofollow">PDFLaTeX</a> (which, of course, is also freely available)?</p>
http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem/304780#3047802Answer by Tom for What is an NP-complete problem?Tom2008-11-20T09:35:39Z2008-11-20T09:35:39Z<p>We need to separate algorithms and problems. We write algorithms to solve problems, and they scale in a certain way. Although this is a simplification, let's label an algorithm with a 'P' if the scaling is good enough, and 'NP' if it isn't.</p>
<p>It's helpful to know things about the problems we're trying to solve, rather than the algorithms we use to solve them. So we'll say that all the problems which have a well-scaling algorithm are "in P". And the ones which have a poor-scaling algorithm are "in NP".</p>
<p>That means that lots of simple problems are "in NP" too, because we can write bad algorithms to solve easy problems. It would be good to know which problems in NP are the really tricky ones, but we don't just want to say "it's the ones we haven't found a good algorithm for". After all, I could come up with a problem (call it X) that I think needs a super-amazing algorithm. I tell the world that the best algorithm I could come up with to solve X scales badly, and so I think that X is a really tough problem. But tomorrow, maybe somebody cleverer than me invents an algorithm which solves X and is in P. So this isn't a very good definition of hard problems.</p>
<p>All the same, there are lots of problems in NP that nobody knows a good algorithm for. So if I could <em>prove</em> that X is a certain sort of problem: one where a good algorithm to solve X could <em>also</em> be used, in some roundabout way, to give a good algorithm for <em>every</em> other problem in NP. Well now people might be a bit more convinced that X is a genuinely tricky problem. And in this case we call X NP-Complete.</p>