jason
|
Registered User
|
|
|
23h |
comment |
Ideas for Natural Language Processing project? I would buy lots of beer for someone who could write an app that turns most tweets into intelligible sentences. |
|
Nov 18 |
revised |
Convenient way to use LIKE case sensivity in sqlite Speling :D |
|
Nov 17 |
comment |
WordPress 2.8.6 foobars my theme options with escape slashes! Did anything else change? Hosts? PHP configuration? Sure sounds like a case of the magic quotes. |
|
Nov 16 |
comment |
jQuery Form Plugin + Ajax File Upload + Rails The dataType option of the jQuery form plugin is a proxy to the dataType option of jQuery's ajax method. It means that the XHR is expecting a response with a text/javascript content-type. It has nothing to do with what is being sent. |
|
Nov 16 |
revised |
PHP: including 2 same php files in 1 page Remove the "wtf factor" |
|
Nov 16 |
comment |
Why don’t databases intelligently create the indexes they need? There's also the potential for disk space usage to go through the roof, if that's something people still care about when indexing things. |
|
Nov 16 |
comment |
check if a site exists with PHP stackoverflow.com/questions/1545432/… |
|
Nov 16 |
comment |
PHP IDE with best code completion?Ctrl - Space for autocomplete is the same behaviour as VS. |
|
Nov 16 |
answered | Wordpress Database Output - Remove SQL Injection Escapes |
|
Nov 16 |
comment |
Having trouble with uploading in php Please include the upload handling source code--Like, the code that calls move_uploaded_file() etc. |
|
Nov 16 |
answered | SELECT the newest record with a non null value in one column |
|
Nov 16 |
comment |
Wordpress Database Output - Remove SQL Injection Escapes Magic quotes strikes again! |
|
Nov 15 |
comment |
What CSS3 features does Internet Explorer 8 support? Oh, it's coming back: w3.org/TR/css3-marquee |
|
Nov 15 |
comment |
PHP IDE with best code completion? Then set it to something reasonable. It's in milliseconds. Mine is at 200, and it's just perfect. Doesn't come up when I don't want it to, does if I do. |
|
Nov 15 |
comment |
PHP IDE with best code completion? I have no idea what you're talking about. It works fine. Which version of Eclipse and PDT are you using? |
|
Nov 15 |
comment |
PHP IDE with best code completion? In Eclipse, navigate to: Window -> Preferences -> PHP -> Editor -> Code Assist And you can configure the "Auto activation delay" |
|
Nov 15 |
comment |
PHP IDE with best code completion?Ctrl - Spacebar and the autocomplete dialog shows instantly. |
|
Nov 15 |
comment |
Regular expression to match phone number? This will consider 0------ to be valid. |
|
Nov 14 |
revised |
in_array() not working Fix code formatting |
|
Nov 8 |
comment |
FireFox performance problems with a particular jQuery enabled site Conversely, the width and height attributes on an img tag are highly recommended when it comes to user experience and page rendering speed. stackoverflow.com/questions/1247685/… |
|
Nov 7 |
comment |
Optimizing MySQL Query Although I disagree with point 3. The difference between indexed enum and varchar fields is almost nil. Read: mysqlperformanceblog.com/2008/01/… |
|
Nov 7 |
comment |
Optimizing MySQL Query I agree with point 2. The struggle between data normalization and performance is a tough one. |
|
Nov 7 |
comment |
Optimizing MySQL Query It would be important to see what your $orderby actually is, as well as the result of an EXPLAIN. I have a feeling that it's probably using a temporary table and a filesort to order, due to improper indexing. |
|
Nov 7 |
revised |
Javascript: Why is my code alerting to nothing? Tried my best to clean up the code formatting |
|
Nov 7 |
comment |
Facebook Edit Events - Unknown Error returned Funny, I'm having the exact same issue right now. |
|
Nov 7 |
revised |
Facebook Edit Events - Unknown Error returned edited tags |
|
Nov 7 |
comment |
Zend_DB - Use native MySQL adapter instead of MySQLi or PDO? Uh. Mysqli IS a 'native' adapter in the sense that you're using it. The plain vanilla Mysql extension for PHP is slow, buggy, lacking features and depreciated. |
|
Nov 6 |
answered | Putting spaces into a PHP date format |
|
Nov 5 |
comment |
Exporting / Archiving changed files only in Git Right, hence why I left the compressing off there. I'm not sure why, but adding v is so deeply ingraned in my muscle memory when taring/untaring things. |
|
Nov 5 |
comment |
Exporting / Archiving changed files only in Git Greg, that can easily be fixed by using -rvf instead of -cvf as arguments to tar. |
|
Nov 5 |
comment |
Exporting / Archiving changed files only in Git Just for posterities sake, that different technique would be something like: git diff --name-only [diff options] | xargs tar -czf files.tar.gz |
|
Nov 5 |
revised |
How to change a link into a span of text or some kind of non-anchored element with prototype Fix code formatting |
|
Nov 3 |
revised |
AS3 - Using Matrix3D objects for reordering display edited tags |
|
Nov 1 |
comment |
What are five things you hate about your favorite language? It's funny looking at this, because almost all these gripes have been addressed in newer versions of PHP. Mainly real lambdas and the ternary shortcut operator. Also, by setting a simple error handler, you can convert all PHP errors (notices, warnings, etc) to Exceptions, so they can be caught by try/catch blocks. |
|
Nov 1 |
comment |
JavaScript foreach Vs for No. 'myArray.length' is a property, not a method on an object--no calculation is done to determine its value. Storing its value in a variable will do nothing at all. |
|
Nov 1 |
comment |
How can I parse XML data using Visual Basic I fixed your formatting. Don't roll it back, please. |
|
Nov 1 |
revised |
How can I parse XML data using Visual Basic Fix code formatting |
|
Oct 31 |
comment |
mysql text or varchar ? You can use the LIKE operator with text fields in MySQL. |
|
Oct 31 |
accepted | mysql text or varchar ? |
|
Oct 31 |
answered | mysql text or varchar ? |
|
Oct 31 |
comment |
php time is not giving the correct date This is why I do not trust MySQL's date fields. They mess with my data. |
|
Oct 30 |
comment |
php time is not giving the correct date No Jim. Unix timestamps are always supposed to be UTC. You can't have a PST unix timestmap. |
|
Oct 30 |
comment |
php time is not giving the correct date Addendum: Setting your default timezone only as an effect on the date family of functions. |
|
Oct 28 |
answered | How to calculate time passed with PHP or Zend_Date? |
|
Oct 28 |
accepted | Why is ‘http://dd ‘ a valid URL? |
|
Oct 28 |
answered | Why is ‘http://dd ‘ a valid URL? |
|
Oct 27 |
accepted | Round numbers in 15min javascript |
|
Oct 27 |
answered | Round numbers in 15min javascript |
|
Oct 26 |
accepted | sIFR - Can’t ‘textalign’ my tag - frustrated |
|
Oct 22 |
accepted | file path problems with Zend Framework and fread() |
