User Liam - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T12:57:02Zhttp://stackoverflow.com/feeds/user/18333http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1797535/html-canvas-element-implemented-in-flash0HTML Canvas element implemented in Flash?Liam2009-11-25T15:05:43Z2009-12-15T17:41:39Z
<p>Can the HTML 5 Canvas element be implemented in Flash to provide support for that element in older browsers?</p>
<p>ExplorerCanvas can be included on a web page to allow emulation of Canvas in IE using VML. Since this is an IE-only solution, I would like to know if a similar replacement could be done using Flash, giving support for Canvas to all browsers.</p>
http://stackoverflow.com/questions/1839129/will-multiple-filesystemwatchers-clash1Will multiple FileSystemWatchers clash?Liam2009-12-03T10:43:18Z2009-12-03T11:58:13Z
<p>I have a FileSystemWatcher on machine A watching a folder on machine B over a network. I want to create another FileSystemWatcher in a program on machine B to monitor the same folder locally. Will the second FileSystemWatcher interfere with the first one?</p>
http://stackoverflow.com/questions/268526/blank-page-in-ie62Blank page in IE6Liam2008-11-06T12:36:23Z2009-11-13T13:59:55Z
<p>A site I am working on that is built using PHP is sometimes showing a completely blank page.
There are no error messages on the client or on the server.
The same page may display sometimes but not others.
All pages are working fine in IE7, Firefox 3, Safari and Opera.
All pages are XHTML with this meta element:</p>
<pre><code><meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
</code></pre>
<p>It <em>appears</em> that I have fixed the problem by adding this PHP code:</p>
<pre><code>header('Content-type: text/html; charset=utf-8');
</code></pre>
<p>I have read that this problem may be caused by XHTML, encoding, gzip compression, or caching, but nobody has been able to backup these guesses.</p>
<p>As the problem was intermittent I am not confident that my solution has actually solved the problem.</p>
<p>My question is, are there <em>reproducible</em> ways of having IE6 show a blank page when other browsers display content?
If so, what causes it and what solves it?</p>
http://stackoverflow.com/questions/1578169/how-can-i-read-xmp-data-from-a-jpg-with-php0How can I read XMP data from a JPG with PHP?Liam2009-10-16T13:50:40Z2009-10-16T14:15:30Z
<p>PHP has built in support for reading EXIF and IPTC metadata, but I can't find any way to read XMP?</p>
http://stackoverflow.com/questions/207831/what-is-the-best-way-of-parsing-many-complex-command-line-arguments-in-java3What is the best way of parsing many complex command-line arguments in Java?Liam2008-10-16T08:52:56Z2009-10-13T18:31:52Z
<p>I have used getopt in Python and was hoping there would be something similar in Java.</p>
<p>Please give a reason why your answer is better than the others.</p>
http://stackoverflow.com/questions/1379833/gsa-administrative-api0GSA Administrative APILiam2009-09-04T15:05:13Z2009-09-29T10:14:20Z
<p>I am having trouble getting the GSA Admin API up and running. I have tried the C# sample app and rolling my own in C# and in PHP following the protocol documentation, but with no luck. Am I missing something?</p>
http://stackoverflow.com/questions/1465374/javascript-event-keycode-constants1JavaScript event.keyCode constantsLiam2009-09-23T11:17:47Z2009-09-23T14:12:59Z
<p>When testing a JavaScript in Firefox 3.5, I have access to constants such as <code>KeyEvent.DOM_VK_D</code>, but not in Google Chrome. Is there a cross-browser way of accessing these constants?</p>
http://stackoverflow.com/questions/102785/what-single-url-should-every-web-developer-have-bookmarked16What single URL should every web developer have bookmarked?Liam2008-09-19T15:23:32Z2009-09-22T13:17:33Z
<p>All web developers have bookmarks which they constantly reference. Is there any one URL that should be more popular among web developers?</p>
http://stackoverflow.com/questions/878768/error-reading-iptc-fields-from-jpegs-in-net1Error reading IPTC fields from JPEGs in .NETLiam2009-05-18T17:09:01Z2009-09-21T11:01:27Z
<p>I get the following exception when calling BitmapMetadata.GetQuery("/app13/irb/8bimiptc/iptc") on about 1% of JPEGs I have tried this on. What could be causing this and what can I do to fix it? (I have tried Googling but I can only find one relevant result asking the same question but with no answer.)</p>
<pre><code>System.OverflowException:
The image data generated an overflow during processing. --->
System.Runtime.InteropServices.COMException (0x88982F05):
Exception from HRESULT: 0x88982F05
--- End of inner exception stack trace ---
at System.Windows.Media.Imaging.BitmapMetadata.GetQuery(String query)
at MyProject.ImageRecord..ctor(String file)
in C:\MyProject\ImageRecord.cs:line 93
The image data generated an overflow during processing.
</code></pre>
<p>Edit:</p>
<p>The <code>exiv2</code> tool reports:</p>
<pre><code>Error: Invalid Photoshop IRB data size 6372
</code></pre>
http://stackoverflow.com/questions/1426133/google-mini-only-serving-linking-pages/1426237#14262370Answer by Liam for Google Mini only serving linking pagesLiam2009-09-15T09:56:45Z2009-09-15T09:56:45Z<p>Can you view cached pages through the Crawl Diagnostics page?</p>
http://stackoverflow.com/questions/1422506/vacuum-postgresql-db-from-php0Vacuum PostgreSQL DB from PHPLiam2009-09-14T16:05:47Z2009-09-15T09:46:01Z
<p>I want to vacuum a PostgreSQL database from PHP.</p>
<p>I have tried this:</p>
<pre><code>pg_query($conn,"vacuum analyse;");
</code></pre>
<p>How can I tell if this works?</p>
http://stackoverflow.com/questions/1422506/vacuum-postgresql-db-from-php/1426202#14262020Answer by Liam for Vacuum PostgreSQL DB from PHPLiam2009-09-15T09:46:01Z2009-09-15T09:46:01Z<p>Run this query before and after running the vacuum query. If 'age' is less after the vacuum than it was before, then the vacuum has run successfully.</p>
<pre><code>SELECT age(datfrozenxid) as age FROM pg_database where datname='your_db';
</code></pre>
http://stackoverflow.com/questions/585583/how-do-you-spell-check-a-website9How do you spell check a website?Liam2009-02-25T11:01:04Z2009-09-09T18:10:10Z
<p>I know that spellcheckers are not perfect, but they become more useful as the amount of text you have increases in size. How can I spell check a site which has thousands of pages?</p>
<p>Edit: Because of complicated server-side processing, the only way I can get the pages is over HTTP. Also it cannot be outsourced to a third party.</p>
<p>Edit: I have a list of all of the URLs on the site that I need to check.</p>
http://stackoverflow.com/questions/97982/how-can-i-get-a-history-of-the-number-of-pages-in-googles-index-for-a-particular1How can I get a history of the number of pages in Google's index for a particular site?Liam2008-09-18T23:26:57Z2009-09-07T18:46:47Z
<p>A Google search for "site:example.com" will tell you the number of pages of example.com that are currently in Google's index. Is it possible to find out how this number has changed over time?</p>
http://stackoverflow.com/questions/1273289/incorrect-filesystemwatcher-behaviour-with-samba0Incorrect FileSystemWatcher behaviour with SambaLiam2009-08-13T17:00:57Z2009-08-30T12:43:50Z
<p>I am using a .NET FileSystemWatcher on a Windows server to watch a folder on a Windows server.
I also have access to the same folder from a Linux server using Samba.
If I copy a file from the watched folder to somewhere else, a change event is generated for the source file.
Is this behaviour correct? It seems to change the 'last accessed' time on the file. How can I ignore this type of change?</p>
http://stackoverflow.com/questions/552993/is-a-google-search-appliance-feed-added-in-realtime0Is a Google Search Appliance feed added in realtime?Liam2009-02-16T11:21:08Z2009-08-29T07:00:03Z
<p>How long after a document is fed to the Google Search Appliance using a content feed can I
expect to see the document in the search results?</p>
http://stackoverflow.com/questions/1307376/php-list-all-includes1PHP: List all includesLiam2009-08-20T16:30:21Z2009-08-20T16:32:13Z
<p>I have a large complex PHP project made up of many PHP files.</p>
<p>Is there some function I can call in my code that will return a list of all included files?</p>
http://stackoverflow.com/questions/1063043/how-to-release-possible-postgres-row-locks0How to release possible Postgres row locks?Liam2009-06-30T10:50:27Z2009-08-12T03:39:16Z
<p>I ran an update statement on a large PostgreSQL table through the phpPgAdmin interface. This timed out as it ran for too long.</p>
<p>I can now update some rows from that table but not all. Trying to update some rows will hang.</p>
<p>Are the rows locked? How can I allow these rows to be updated?</p>
http://stackoverflow.com/questions/1255907/how-to-escape-php-exec-command-with-quotes0How to escape php exec() command with quotesLiam2009-08-10T16:36:43Z2009-08-11T13:46:10Z
<p>I use the Exiv2 command line tool on Linux to edit image metadata like so:</p>
<pre><code>exiv2 -M"set Iptc.Application2.Caption String This is my caption....." modify IMG.jpg
</code></pre>
<p>I want to execute this from PHP, using a caption provide by a user. This will work if the user enters no special characters:</p>
<pre><code>exec('/usr/local/bin/exiv2 -M"set Iptc.Application2.Caption String '.$caption.'" modify IMG.jpg');
</code></pre>
<p>I need to allow the user special characters such as single and double quotes. I would like to use escapeshellcmd() to prevent malicious data. How can I correctly escape the command and the argument so that it works? I have tried many options but I can't get it right.</p>
http://stackoverflow.com/questions/1255907/how-to-escape-php-exec-command-with-quotes/1259953#12599530Answer by Liam for How to escape php exec() command with quotesLiam2009-08-11T12:09:15Z2009-08-11T13:46:10Z<p>Because of Exiv2's non-standard shell arguments, it is not easy to reach a simple and robust solution to handle user-supplied quotes correctly. There is another solution that is likely to be far more reliable and easy to maintain with a small performance penalty.</p>
<p>Write the Exiv2 instructions to a file <code>cmds.txt</code>, then call:</p>
<pre><code>exiv2 -m cmds.txt IMG.jpg
</code></pre>
<p>to read the instructions from the file.</p>
<p>Update: I have implemented this method and it requires no escaping of the user-supplied data. This data is written directly to a text file which is read in by Exiv2. The Exiv2 command file format is very simple and newline-terminated, allow no escaping within values, so all I need to do is prevent newlines from passing through, which I was not allowing anyway.</p>
http://stackoverflow.com/questions/939874/is-there-a-java-library-with-3d-spline-functions2Is there a Java library with 3D spline functions?Liam2009-06-02T14:27:45Z2009-08-06T00:51:03Z
<p>In particular, I need a way to represent a curve/spline that passes through a set of known 3D points, and a way of finding other points on the curve/spline, by subdivision/interpolation.</p>
<p>For example, if I have a set of points P0 to PN, I want to find 100 points between P0 and P1 that are on a spline that passes through P0 and P1.</p>
<p>I see that Java3D's KBRotPosScaleSplinePathInterpolator performs such a calculation, but it is tied to that API's scenegraph model and I do not see how to return the values I need.</p>
http://stackoverflow.com/questions/1214768/standalone-svn-client-for-mac-os-x3Standalone SVN client for Mac OS XLiam2009-07-31T20:40:17Z2009-07-31T20:57:00Z
<p>Tortoise SVN on Windows allows a single user without a network connection to create a repository on the user's machine to check code into, without needing any separate server installation or configuration. This is very useful for lone developers. Is there an SVN client for Mac OS X with this feature?</p>
http://stackoverflow.com/questions/939874/is-there-a-java-library-with-3d-spline-functions/1213634#12136341Answer by Liam for Is there a Java library with 3D spline functions?Liam2009-07-31T16:47:18Z2009-07-31T16:47:18Z<p>For anyone struggling with the maths behind curves, you may find <a href="http://bimixual.org/AnimationLibrary/beziertangents.html" rel="nofollow">this</a> useful, in particular the images below. The idea is simple:</p>
<p>Let <strong>t</strong> loop from 0.0 to 1.0.</p>
<p>For each pair of points in the <strong>grey</strong> set, calculate a point a fraction of the way in between them (using t). These points are shown in <strong>green</strong>.</p>
<p>For each pair of points in the <strong>green</strong> set, calculate a point a fraction of the way in between them (using t). This point is shown in <strong>black</strong>.</p>
<p>For the different values of <strong>t</strong>, the black point will be a different line along a curve.</p>
<p>The second image shows the same process repeated with an extra point and an extra level of interpolation.</p>
<p>I found this much easier to understand, implement, and extend to 3 dimensions, than any other option I found.</p>
<p><img src="http://bimixual.org/AnimationLibrary/Bezier%5F2%5Fbig.gif" alt="approximating a curve using linear interpolation" />
<img src="http://bimixual.org/AnimationLibrary/Bezier%5F3%5Fbig.gif" alt="approximating a curve using linear interpolation" /></p>
http://stackoverflow.com/questions/229565/what-is-a-good-pattern-for-using-a-global-mutex-in-c/1213517#12135171Answer by Liam for What is a good pattern for using a Global Mutex in C#?Liam2009-07-31T16:20:40Z2009-07-31T16:20:40Z<p>This example will exit after 5 seconds if another instance is already running.</p>
<pre><code>// unique id for global mutex - Global prefix means it is global to the machine
const string mutex_id = "Global\\{B1E7934A-F688-417f-8FCB-65C3985E9E27}";
static void Main(string[] args)
{
using (var mutex = new Mutex(false, mutex_id))
{
try
{
try
{
if (!mutex.WaitOne(TimeSpan.FromSeconds(5), false))
{
Console.WriteLine("Another instance of this program is running");
Environment.Exit(0);
}
}
catch (AbandonedMutexException)
{
// Log the fact the mutex was abandoned in another process, it will still get aquired
}
// Perform your work here.
}
finally
{
mutex.ReleaseMutex();
}
}
}
</code></pre>
http://stackoverflow.com/questions/507479/connect-to-ms-sql-server-from-php-on-linux2Connect to MS SQL Server from PHP on Linux?Liam2009-02-03T15:10:19Z2009-07-30T12:38:32Z
<p>I need to connect to an MS SQL Server database from a PHP script running on a Linux server. I'm looking at using FreeTDS as there is no official MS SQL Server driver for Linux. Is this my best option? Is it ok in a production environment? Are there other options, perhaps ODBC?</p>
http://stackoverflow.com/questions/809099/interpolationmode-high/1193212#11932121Answer by Liam for InterpolationMode.HighLiam2009-07-28T10:23:25Z2009-07-28T10:23:25Z<p>I set Graphics.InterpolationMode and read back its value for every possible value.</p>
<p>I found that Default and Low become Bilinear, and that High becomes HighQualityBicubic.</p>
http://stackoverflow.com/questions/1149834/opengl-texturing-via-vertex-alphas-how-to-avoid-following-diagonal-lines/1152664#11526640Answer by Liam for OpenGL texturing via vertex alphas, how to avoid following diagonal lines?Liam2009-07-20T09:50:46Z2009-07-20T09:50:46Z<p>The diagonal artefacts are caused by having all of your quads split into triangles along the same diagonal. You define points [0,1,2,3] for your quad. Each quad is split into triangles [0,1,2] and [1,2,3]. Try drawing with GL_TRIANGLES and alternating your choice of diagonal. There are probably more efficient ways of doing this using GL_TRIANGLE_STRIP or GL_QUAD_STRIP.</p>
http://stackoverflow.com/questions/1125872/valid-html-and-the-number-of-td-elements2Valid HTML and the number of TD elementsLiam2009-07-14T14:41:22Z2009-07-14T21:10:57Z
<p>I have a HTML table with several columns and several rows. The last row does not always have as many TD elements as the other rows. It renders correctly in several browsers I have checked and passes validation checks. But it seems incorrect. Should the number of TD elements be the same in every row?</p>
<p>EDIT: This could happen with or without colspans and rowspans.</p>
http://stackoverflow.com/questions/166044/sleeping-in-a-dos-batch-file/1092731#10927312Answer by Liam for Sleeping in a DOS batch fileLiam2009-07-07T14:39:09Z2009-07-07T14:39:09Z<p>I have been using this C# sleep program. It might be more convenient for you if C# is your preferred language:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace sleep
{
class Program
{
static void Main(string[] args)
{
if (args.Length == 1)
{
double time = Double.Parse(args[0]);
Thread.Sleep((int)(time*1000));
}
else
{
Console.WriteLine("Usage: sleep <seconds>\nExample: sleep 10");
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103001#1030017Answer by Liam for What was your first home computer?Liam2008-09-19T15:38:35Z2009-07-01T08:25:39Z<p>Commodore Amiga. First home computer to have a dedicated graphics processor (AGA).</p>
<p>Mine was an Amiga 1200, 2MB RAM, 14MHz CPU, 3.5in floppy, no hard drive.
I got it in 1992.</p>
<p>I got a demo of AMOS Professional with a magazine. In less than 770KB it provided a BASIC interpreter, editor (with auto-indentation), animation capable paint package, audio editor, 2-pane file manager like FreeCommander, online help and sample programs including a Mandlebrot explorer and a Mario clone. All in 770KB!</p>
<p><img src="http://isolmac.files.wordpress.com/2009/04/amiga%5F1200%5Fnahaufnahme.jpg" alt="Amiga 1200" /></p>
http://stackoverflow.com/questions/935559/remove-safari-chrome-textinput-textarea-glow/935572#935572Comment by Liam on Remove Safari/Chrome textinput/textarea glowLiam2009-12-16T17:29:12Z2009-12-16T17:29:12ZVery interesting, this outline CSS rule seems to be very under-used.http://stackoverflow.com/questions/1797535/html-canvas-element-implemented-in-flash/1857645#1857645Comment by Liam on HTML Canvas element implemented in Flash?Liam2009-12-08T10:14:42Z2009-12-08T10:14:42ZExplorerCanvas uses VML and so it only offers support for IE. Thus there is no support for non-IE browsers made before the canvas element was introduced.http://stackoverflow.com/questions/1797535/html-canvas-element-implemented-in-flashComment by Liam on HTML Canvas element implemented in Flash?Liam2009-11-26T10:52:07Z2009-11-26T10:52:07ZAny older browser that didnt support canvas but does support flash, such as Firefox 2.0 or IE.http://stackoverflow.com/questions/1797611/how-to-convert-an-18-character-string-into-a-unique-id/1797623#1797623Comment by Liam on How to convert an 18 Character String into a Unique ID ?Liam2009-11-25T15:21:12Z2009-11-25T15:21:12ZIf digits are allowed, then make that 18^((2*26)+10), worse again.http://stackoverflow.com/questions/1775601/browser-based-3d-games-with-lwjgl-in-java/1775692#1775692Comment by Liam on Browser based 3D games with LWJGL in JavaLiam2009-11-24T12:58:04Z2009-11-24T12:58:04ZLast time I looked, the Nehe LWJGL tutorials were for a slightly old version of LWJGL.http://stackoverflow.com/questions/1578169/how-can-i-read-xmp-data-from-a-jpg-with-php/1578326#1578326Comment by Liam on How can I read XMP data from a JPG with PHP?Liam2009-10-16T14:32:29Z2009-10-16T14:32:29ZThat would explain why there is no XMP specific functions in PHP.http://stackoverflow.com/questions/585583/how-do-you-spell-check-a-website/628626#628626Comment by Liam on How do you spell check a website?Liam2009-10-09T10:26:04Z2009-10-09T10:26:04ZThis tool is really great. I find it useful to run it on a site and paste its output into Excel, and spell check again there, using the 'ignore' button.http://stackoverflow.com/questions/268526/blank-page-in-ie6/1530678#1530678Comment by Liam on Blank page in IE6Liam2009-10-08T09:36:31Z2009-10-08T09:36:31ZYes, any tags about content-type and charsets use only characters from the basic ASCII set, as these have the same byte values in many different encodings. If a title tag appears before the content-type, a browser may fail to read the content-type correctly.http://stackoverflow.com/questions/1232886/newbie-question-about-java/1232939#1232939Comment by Liam on Newbie question about JavaLiam2009-09-25T11:30:35Z2009-09-25T11:30:35ZAlso, JavaScript runs in the browser, while Java Scriptlets run on the server (as they are part of Java Server Pages).http://stackoverflow.com/questions/1465374/javascript-event-keycode-constants/1465409#1465409Comment by Liam on JavaScript event.keyCode constantsLiam2009-09-24T11:06:10Z2009-09-24T11:06:10Z@kangax Thanks, I didn't know how to use typeof.http://stackoverflow.com/questions/899699/pirated-software-at-a-company/917424#917424Comment by Liam on Pirated software at a company?Liam2009-09-24T09:51:49Z2009-09-24T09:51:49ZWhat if several jobs you get put you in the same situation again?http://stackoverflow.com/questions/1465374/javascript-event-keycode-constants/1465409#1465409Comment by Liam on JavaScript event.keyCode constantsLiam2009-09-23T13:45:04Z2009-09-23T13:45:04Z@kangax Could you explain further please?http://stackoverflow.com/questions/1465374/javascript-event-keycode-constants/1465409#1465409Comment by Liam on JavaScript event.keyCode constantsLiam2009-09-23T13:04:50Z2009-09-23T13:04:50ZSo are the constants in Firefox's KeyEvent expected to be standard in future?http://stackoverflow.com/questions/102785/what-single-url-should-every-web-developer-have-bookmarked/107013#107013Comment by Liam on What single URL should every web developer have bookmarked?Liam2009-09-22T14:52:06Z2009-09-22T14:52:06ZAlso available as the HTML Validator extension, to check markup as you browse.http://stackoverflow.com/questions/565963/hidden-limitations-of-google-app-engine/577511#577511Comment by Liam on Hidden limitations of Google App Engine?Liam2009-09-16T15:59:16Z2009-09-16T15:59:16ZI heard that this is on the way soon!