Well for one someone could just spam your error log by running javascript errors in the console. You could also end up with errors in extensions that people are running (nothing to do with your app)...
HTML is the basic building block of websites and web apps. Everything the browser renders (pretty much) must be, in the end, HTML. HTML5 is the latest version, learn it.
If your site is a static one I guess you could use a crawler to download it starting at the site index and just re-upload that, deleting anything else.
I wonder if it would be a better idea to create a mirror table under MyISAM holding only the fields that need to be full-text searched. This could also concatenate all the tags and habtm data into...
I don't know about free hosting, but nearlyfreespeech.net is really cheap and I use them for non-critical projects (otherwise I use ByteMark which is upward of £15/month).
if it is a simple regular polygon this is simple (I am assuming it is since you're using a radius).
Basically, look at the polygon like a circle. Vertices are placed regularly around the circle at...
Oh, I thought you wanted a specifically regex way of doing this, apologies. I've actually used http://simplehtmldom.sourceforge.net/ when I've wanted to parse potentially incorrect/fragmented html...
on the first point: I don't really expect any beginners, on the second: I'm not sure that this is true because there are plenty of "experts" writing some really fairly impressive things...
Lucene and Sphinx are fairly equivalent, no? The difference being that Lucene is Java and Sphinx is in a C derivative which should make it faster shouldn't it? Or at least hog less memory?
Okay, thanks. I only really envision my queries using a fulltext search on the descriptions table along with a join to the main table and conditions involving related n:n tables. Shouldn't be too...
I called it a "bad" solution a) because of the need to synchronise data across two tables (which seems, to me, like an unnecessary overhead and potential pain if something goes awry) and...