User Liam - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T12:57:02Z http://stackoverflow.com/feeds/user/18333 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1797535/html-canvas-element-implemented-in-flash 0 HTML Canvas element implemented in Flash? Liam 2009-11-25T15:05:43Z 2009-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-clash 1 Will multiple FileSystemWatchers clash? Liam 2009-12-03T10:43:18Z 2009-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-ie6 2 Blank page in IE6 Liam 2008-11-06T12:36:23Z 2009-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>&lt;meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /&gt; </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-php 0 How can I read XMP data from a JPG with PHP? Liam 2009-10-16T13:50:40Z 2009-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-java 3 What is the best way of parsing many complex command-line arguments in Java? Liam 2008-10-16T08:52:56Z 2009-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-api 0 GSA Administrative API Liam 2009-09-04T15:05:13Z 2009-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-constants 1 JavaScript event.keyCode constants Liam 2009-09-23T11:17:47Z 2009-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-bookmarked 16 What single URL should every web developer have bookmarked? Liam 2008-09-19T15:23:32Z 2009-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-net 1 Error reading IPTC fields from JPEGs in .NET Liam 2009-05-18T17:09:01Z 2009-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. ---&gt; 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#1426237 0 Answer by Liam for Google Mini only serving linking pages Liam 2009-09-15T09:56:45Z 2009-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-php 0 Vacuum PostgreSQL DB from PHP Liam 2009-09-14T16:05:47Z 2009-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#1426202 0 Answer by Liam for Vacuum PostgreSQL DB from PHP Liam 2009-09-15T09:46:01Z 2009-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-website 9 How do you spell check a website? Liam 2009-02-25T11:01:04Z 2009-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-particular 1 How can I get a history of the number of pages in Google's index for a particular site? Liam 2008-09-18T23:26:57Z 2009-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-samba 0 Incorrect FileSystemWatcher behaviour with Samba Liam 2009-08-13T17:00:57Z 2009-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-realtime 0 Is a Google Search Appliance feed added in realtime? Liam 2009-02-16T11:21:08Z 2009-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-includes 1 PHP: List all includes Liam 2009-08-20T16:30:21Z 2009-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-locks 0 How to release possible Postgres row locks? Liam 2009-06-30T10:50:27Z 2009-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-quotes 0 How to escape php exec() command with quotes Liam 2009-08-10T16:36:43Z 2009-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#1259953 0 Answer by Liam for How to escape php exec() command with quotes Liam 2009-08-11T12:09:15Z 2009-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-functions 2 Is there a Java library with 3D spline functions? Liam 2009-06-02T14:27:45Z 2009-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-x 3 Standalone SVN client for Mac OS X Liam 2009-07-31T20:40:17Z 2009-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#1213634 1 Answer by Liam for Is there a Java library with 3D spline functions? Liam 2009-07-31T16:47:18Z 2009-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#1213517 1 Answer by Liam for What is a good pattern for using a Global Mutex in C#? Liam 2009-07-31T16:20:40Z 2009-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-linux 2 Connect to MS SQL Server from PHP on Linux? Liam 2009-02-03T15:10:19Z 2009-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#1193212 1 Answer by Liam for InterpolationMode.High Liam 2009-07-28T10:23:25Z 2009-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#1152664 0 Answer by Liam for OpenGL texturing via vertex alphas, how to avoid following diagonal lines? Liam 2009-07-20T09:50:46Z 2009-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-elements 2 Valid HTML and the number of TD elements Liam 2009-07-14T14:41:22Z 2009-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#1092731 2 Answer by Liam for Sleeping in a DOS batch file Liam 2009-07-07T14:39:09Z 2009-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 &lt;seconds&gt;\nExample: sleep 10"); } } } } </code></pre> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103001#103001 7 Answer by Liam for What was your first home computer? Liam 2008-09-19T15:38:35Z 2009-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#935572 Comment by Liam on Remove Safari/Chrome textinput/textarea glow Liam 2009-12-16T17:29:12Z 2009-12-16T17:29:12Z Very interesting, this outline CSS rule seems to be very under-used. http://stackoverflow.com/questions/1797535/html-canvas-element-implemented-in-flash/1857645#1857645 Comment by Liam on HTML Canvas element implemented in Flash? Liam 2009-12-08T10:14:42Z 2009-12-08T10:14:42Z ExplorerCanvas 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-flash Comment by Liam on HTML Canvas element implemented in Flash? Liam 2009-11-26T10:52:07Z 2009-11-26T10:52:07Z Any 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#1797623 Comment by Liam on How to convert an 18 Character String into a Unique ID ? Liam 2009-11-25T15:21:12Z 2009-11-25T15:21:12Z If 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#1775692 Comment by Liam on Browser based 3D games with LWJGL in Java Liam 2009-11-24T12:58:04Z 2009-11-24T12:58:04Z Last 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#1578326 Comment by Liam on How can I read XMP data from a JPG with PHP? Liam 2009-10-16T14:32:29Z 2009-10-16T14:32:29Z That would explain why there is no XMP specific functions in PHP. http://stackoverflow.com/questions/585583/how-do-you-spell-check-a-website/628626#628626 Comment by Liam on How do you spell check a website? Liam 2009-10-09T10:26:04Z 2009-10-09T10:26:04Z This 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#1530678 Comment by Liam on Blank page in IE6 Liam 2009-10-08T09:36:31Z 2009-10-08T09:36:31Z Yes, 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#1232939 Comment by Liam on Newbie question about Java Liam 2009-09-25T11:30:35Z 2009-09-25T11:30:35Z Also, 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#1465409 Comment by Liam on JavaScript event.keyCode constants Liam 2009-09-24T11:06:10Z 2009-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#917424 Comment by Liam on Pirated software at a company? Liam 2009-09-24T09:51:49Z 2009-09-24T09:51:49Z What if several jobs you get put you in the same situation again? http://stackoverflow.com/questions/1465374/javascript-event-keycode-constants/1465409#1465409 Comment by Liam on JavaScript event.keyCode constants Liam 2009-09-23T13:45:04Z 2009-09-23T13:45:04Z @kangax Could you explain further please? http://stackoverflow.com/questions/1465374/javascript-event-keycode-constants/1465409#1465409 Comment by Liam on JavaScript event.keyCode constants Liam 2009-09-23T13:04:50Z 2009-09-23T13:04:50Z So 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#107013 Comment by Liam on What single URL should every web developer have bookmarked? Liam 2009-09-22T14:52:06Z 2009-09-22T14:52:06Z Also available as the HTML Validator extension, to check markup as you browse. http://stackoverflow.com/questions/565963/hidden-limitations-of-google-app-engine/577511#577511 Comment by Liam on Hidden limitations of Google App Engine? Liam 2009-09-16T15:59:16Z 2009-09-16T15:59:16Z I heard that this is on the way soon!