User acrosman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T17:44:12Z http://stackoverflow.com/feeds/user/24215 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses 44 What is the best regular expression for validating email addresses? acrosman 2008-10-14T14:14:34Z 2009-12-16T16:11:09Z <p>Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the expression is:</p> <pre><code>^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$ </code></pre> <p>I use this in several PHP programs, and it works most of the time. However, from time to time I get contacted by someone that is having trouble with a site that uses it, and I end up having to make some adjustment (most recently I realized that I wasn't allowing 4-character TLDs).</p> <p><em>What's the best regular expression you have or have seen for validating emails?</em></p> <p>I've seen several solutions that use functions that use several shorter expressions, but I'd rather have one long complex expression in a simple function instead of several short expression in a more complex function.</p> http://stackoverflow.com/questions/1861080/best-way-to-track-changes-on-a-website-for-visitors-information/1861148#1861148 0 Answer by acrosman for Best way to track changes on a website for visitors' information acrosman 2009-12-07T16:35:10Z 2009-12-07T16:35:10Z <p>Wikipedia itself might not be the right tool, but I'd recommend taking advantage of their FOSS nature and check out the design of the feature you're looking to copy. They have put a lot of time into getting theirs right, probably has ideas in it you can learn from.</p> http://stackoverflow.com/questions/1843131/big-o-notation-what-are-the-differences/1843177#1843177 0 Answer by acrosman for Big O Notation - what are the differences? acrosman 2009-12-03T21:51:43Z 2009-12-03T21:51:43Z <p>Algorithms that run in O(nlog(n)) time are faster than those that run in O(n^2). </p> <p>Big-O defines the upper-bound on performance. As the size of the data set grows (n) the length of time it takes to perform the task. You might be interested in the <a href="http://deimos.apple.com/WebObjects/Core.woa/Browse/mit.edu" rel="nofollow">iTunes U algorithms course from MIT</a>.</p> http://stackoverflow.com/questions/1783137/examples-of-vulnerable-php-code/1783442#1783442 2 Answer by acrosman for Examples of vulnerable PHP code? acrosman 2009-11-23T14:27:53Z 2009-11-23T14:27:53Z <p><a href="http://www.damonkohler.com/2008/12/email-injection.html" rel="nofollow">Email header</a> <a href="http://www.jellyandcustard.com/2006/02/24/email-header-injection-in-php/" rel="nofollow">injection attacks</a> are a much bigger pain in the neck then you might suspect (unless you've had to deal with them).</p> <p>This is very bad:</p> <pre><code>$to = 'contact@domain.com'; $subject = $_POST["subject"]; $message = $_POST["message"]; $headers = "From: ".$_POST["from"]; mail($to,$subject,$message,$headers); </code></pre> <p>(code copied from the second reference above.)</p> http://stackoverflow.com/questions/1700854/comparing-form-fields-with-data-base-fields-and-highlighting-the-form-fields/1701231#1701231 0 Answer by acrosman for Comparing form fields with data base fields and highlighting the form fields acrosman 2009-11-09T14:19:53Z 2009-11-09T14:19:53Z <p>Since you want to handle scenario one before you submit the form, you'll need to use JavaScript to do the comparison. If you know the structure of the form before you generate the page, it should be east to write a series of comparisons using <a href="http://jquery.com/" rel="nofollow">jQuery</a>, <a href="http://docs.jquery.com/Events/change#fn" rel="nofollow">change()</a>, and hidden fields in the form.</p> <p>For scenario two it depends a little on your definition of "efficient". If you want it to use the least server resource, you could send the page back with the two database tables entered into well named tables, and again use JavaScript to highlight the differences. If you want a solution that isn't dependent on JS running on the client's browser you could do the comparison in a query to MySQL. Running the comparison in PHP itself is probably the easiest to code and therefore most efficient for programmer time, but slowest execution (if that matters depends on several things like table size).</p> http://stackoverflow.com/questions/1686772/looking-for-a-very-simple-spam-prevention-class-function-for-asp-classic/1687853#1687853 5 Answer by acrosman for Looking for a very simple spam-prevention class/function for ASP Classic acrosman 2009-11-06T14:11:22Z 2009-11-06T14:11:22Z <p>I'd suggest using a honeypot field. <a href="http://stackoverflow.com/questions/1577918/blocking-comment-spam-without-using-captcha">This has been discussed before</a> on StackOverflow, and many people have success with it. I haven't seen anyone write up the details for doing it with ASP classic, but it shouldn't be significantly harder than it is with PHP.</p> <p>Basically you put up the field, and hide it with CSS or JS, if it's not empty you'll looking at a bot. It is defeatable, but most every system is eventually.</p> http://stackoverflow.com/questions/1566379/crash-course-in-web-development-phphtml/1566555#1566555 4 Answer by acrosman for Crash Course in Web Development (PHP+HTML) acrosman 2009-10-14T14:17:15Z 2009-10-14T14:17:15Z <p>If you know any other C-like language (C, C++, Java, C#, etc) the PHP syntax will come easily. I have generally found <a href="http://www.w3schools.com/php/default.asp" rel="nofollow">w3schools' tutorial</a>s a good way to learn a the basics of a language fast. They are short and direct, and have worked well as an intro for me in the past. From there (or some of the other suggestions made by others here) the references at <a href="http://www.php.net/" rel="nofollow">PHP.net</a> will be one of the best guides.</p> <p>If you do a web application and actually put it on the web, please do the world a favor and take some time to read up on web security. Nearly all tutorials give short shrift to making sure you've sanitized data and other basic things, and it's tempting to think "well it's only for class". But if your app is on the internet in such a way that anyone can find it, then "bad guys" can find it and mess with you (which could be embarrassing when doing presentations and discovering SPAM in your database in front of a room full of people).</p> http://stackoverflow.com/questions/1550686/are-c-styled-strings-safe/1550702#1550702 0 Answer by acrosman for Are c styled strings safe? acrosman 2009-10-11T13:30:45Z 2009-10-11T13:30:45Z <p>Depends on what you mean by "safe".</p> <p>They are not less inherently safe than any other use of pointers in C/C++. Pointers require you to be very careful with memory in general.</p> http://stackoverflow.com/questions/1549116/how-to-make-set-up-condition-specific-password-in-php/1549120#1549120 2 Answer by acrosman for How to make set up condition specific password in php? acrosman 2009-10-10T21:30:50Z 2009-10-10T21:40:25Z <p>Use a regular expression to test the password against.</p> <p>One (of many) ways to do this:</p> <pre><code>function check_password($text) { $regex = "#.*^(?=.{8,20})(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*\W).*$#" if (preg_match($regex, $text)) { return TRUE; } else { return FALSE; } } </code></pre> <p>Also see: <a href="http://www.cafewebmaster.com/check-password-strength-safety-php-and-regex" rel="nofollow">http://www.cafewebmaster.com/check-password-strength-safety-php-and-regex</a></p> http://stackoverflow.com/questions/1538104/user-validationcodedomain-com-how-to-do-this/1538125#1538125 1 Answer by acrosman for user.validationcode@domain.com How to do this? acrosman 2009-10-08T14:21:08Z 2009-10-08T14:21:08Z <p><a href="http://www.list.org" rel="nofollow">Mailman</a> does this by redirecting the mail to the program itself (it never goes to a true mailbox). Since you're using Python on your project, it might be helpful to look at how mailman interacts with mail servers.</p> http://stackoverflow.com/questions/1492833/problem-on-how-to-display-members-info-from-a-database-with-mysql-and-php/1492955#1492955 1 Answer by acrosman for Problem on how to display members info from a database with mysql and php? acrosman 2009-09-29T14:36:29Z 2009-09-29T14:36:29Z <p>To think about how to do something intellegent with your errors take a look at the <a href="http://us.php.net/manual/en/mysqli.error.php" rel="nofollow">mysqli error function</a>. This code should run, and print out errors, but it's not a good way to leave the system in the end (also see the comment above about blank passwords).</p> <pre><code>$mysqli = new mysqli("localhost", "root", "", "sitename"); $dbc = mysqli_query($mysqli,"SELECT * FROM sitename WHERE id='$user_id'"); if (!$dbc) { // There was an error...do something about it here... print mysqli_error(); } else { while($row = mysqli_fetch_array($dbc)){ $state = $row["state"]; $city = $row["city"]; $zip = $row["zip"]; $bio_body = $row["bio_body"]; } } </code></pre> <p>One final note, if you're getting started with PHP and databases, I'd strongly suggest you look into <a href="http://us2.php.net/pdo" rel="nofollow">PDO</a>. It provides a level of data abstraction absent in the old MySQL and MySQLi functions and objects.</p> http://stackoverflow.com/questions/1474730/different-background-position-every-click/1474744#1474744 0 Answer by acrosman for Different background position every click acrosman 2009-09-24T23:47:09Z 2009-09-24T23:47:09Z <p>When it runs it sets the top padding to 100px, so after the first time it's just setting it to the same value it already has. You need to increment the value each time.</p> <pre><code>$(function(){ $('#m-main').click(function(){ var current = $('slide').css('top'); current = current + 100; $('slide').animate({top : current+"px"}, {duration:500}) }) }); </code></pre> <p><em>code above untested</em></p> http://stackoverflow.com/questions/1471674/why-is-php-printing-my-number-in-scientific-notation-when-i-specified-it-as-000/1471695#1471695 6 Answer by acrosman for Why is PHP printing my number in scientific notation, when I specified it as .000021? acrosman 2009-09-24T13:29:12Z 2009-09-24T13:29:12Z <p>Use <a href="http://us.php.net/function.number%5Fformat" rel="nofollow">number_format()</a> to get what you're after:</p> <pre><code>print number_format($var, 5); </code></pre> <p>Also check <a href="http://us.php.net/manual/en/function.sprintf.php" rel="nofollow">sprintf()</a></p> http://stackoverflow.com/questions/1456536/how-to-intercept-a-site-http-request-using-javascript/1456591#1456591 0 Answer by acrosman for How to intercept a site http request using javascript? acrosman 2009-09-21T20:14:03Z 2009-09-21T20:14:03Z <p>If you need to catch everything with the same function you could use jQuery. Something like this would attach a function to all links:</p> <pre><code>$('a').click(somefunction); </code></pre> http://stackoverflow.com/questions/1444191/insert-50-thousand-record-in-mysql/1444504#1444504 1 Answer by acrosman for Insert 50 thousand record in MySQL acrosman 2009-09-18T13:18:21Z 2009-09-18T13:18:21Z <p>Are you checking errors when the query fails. Is it possible you are running up against the max_allowed_packet size for your server? I'm not sure what the behavior is with bulk inserts that aren't in transactions, but it can cause unusual errors with large SQL statements:</p> <p><a href="http://dev.mysql.com/doc/refman/5.1/en/packet-too-large.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.1/en/packet-too-large.html</a></p> http://stackoverflow.com/questions/1426570/hide-autoincrement-ids-in-get-parameter-php/1426602#1426602 0 Answer by acrosman for Hide autoincrement ids in GET parameter (PHP) acrosman 2009-09-15T11:30:29Z 2009-09-15T11:30:29Z <p>It will still be possible to walk through your pages sequentially, although it would be harder to guess the pattern. As long as the root pattern is sequential you'll have a problem eventually (assuming it's actually a problem in the first place, and not just something you don't like the idea of).</p> <p>You could use random numbers for the IDs. That would prevent easy guessing of page IDs and page order (again, if that matters).</p> http://stackoverflow.com/questions/1405505/accessing-delete-from-jquery-in-php/1405603#1405603 0 Answer by acrosman for accessing DELETE from jquery in PHP acrosman 2009-09-10T14:27:55Z 2009-09-10T14:27:55Z <p>You can access the URI for a DELETE request just like any other request in the <code>$_SERVER</code> super global: <code>$_SERVER['REQUEST_URI']</code></p> <p>From there you can parse any parameters you've created. You might find <a href="http://phprestsql.cvs.sourceforge.net/viewvc/phprestsql/PHPRestSQL/phprestsql.php?revision=1.12&amp;view=markup" rel="nofollow">the class</a> created for the <a href="http://sourceforge.net/projects/phprestsql/" rel="nofollow">phprestsql project</a> to be a useful reference.</p> http://stackoverflow.com/questions/1405157/array-to-create-dates/1405286#1405286 0 Answer by acrosman for Array to create dates acrosman 2009-09-10T13:23:21Z 2009-09-10T13:23:21Z <p>If you'd like to generate the query shown you can use the date function in PHP to help generate the string:</p> <pre><code>$dateString1 = date("Y-m-d", $date); $dateString2 = date("Y-m-d", $date2); $sql = "select name, sum(if (tdate='$dateString1', amount, 0) as day1, sum(if (tdate='$dateString2', amount, 0) as day2 from revenue group by name;"; // Run the query as usual... </code></pre> http://stackoverflow.com/questions/1385612/multi-tier-applications-with-php/1389706#1389706 1 Answer by acrosman for Multi-tier applications with PHP? acrosman 2009-09-07T14:41:08Z 2009-09-07T14:41:08Z <p>One issue with pushing lots of features to the DB level, instead of a data abstraction layer, is that you get locked into the DBMS's feature set. Open source software is often written so that it can be used with different DBs (certainly not always). It's possible that down the road you will want to make it easy to port to postgres or some other DBMS. Using lots of MySQL specific features now will make that harder. </p> http://stackoverflow.com/questions/1380936/help-with-warning-cannot-modify-header-information-headers-already-sent-by-ou/1380959#1380959 1 Answer by acrosman for Help with Warning: Cannot modify header information - headers already sent by (output started at C:\## errors acrosman 2009-09-04T18:55:56Z 2009-09-04T18:55:56Z <p>Somewhere before the code you posted you have either a blank line that is sent, or more likely some actual content has been sent. Once PHP has started to send the page content you can no longer update the headers (as they are sent before page content). </p> http://stackoverflow.com/questions/1379869/css-colors-depend-on-monitor/1379893#1379893 1 Answer by acrosman for CSS Colors: Depend on Monitor? acrosman 2009-09-04T15:15:58Z 2009-09-04T15:15:58Z <p>You shouldn't get different hex values based on monitor, but you will get different final results depending on OS, monitor, graphics set, and settings.</p> http://stackoverflow.com/questions/1379339/consume-webservice-with-php/1379346#1379346 2 Answer by acrosman for Consume WebService with php acrosman 2009-09-04T13:40:22Z 2009-09-04T13:40:22Z <p>I would use the HTTP POST or GET interfaces with <a href="http://www.php.net/manual/en/ref.curl.php" rel="nofollow">curl</a>. It looks like it gives you a nice clean XML output that you could parse with <a href="http://us2.php.net/manual/en/simplexml.examples.php" rel="nofollow">simpleXML</a>.</p> <p>Something like the following would go along way (warning, totally untested here):</p> <pre><code>$ch = curl_init('http://www.webservicex.net/uszip.asmx/GetInfoByZIP?USZip=string'); curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE); $xml = curl_exec($ch); curl_close($ch); $parsed = new SimpleXMLElement($xml); print_r($parsed); </code></pre> http://stackoverflow.com/questions/1323836/hunting-down-php-parse-errors/1323873#1323873 1 Answer by acrosman for Hunting down PHP parse errors acrosman 2009-08-24T18:10:48Z 2009-08-24T18:10:48Z <p>Run code as frequently as possible as you write it. The fewer lines of code you add between each execution, the smaller the search space for new errors.</p> <p>If I've only edited 5 lines of the 877 line file since the last time I loaded the page, finding the error is likely much faster than if I've edited 100 lines.</p> http://stackoverflow.com/questions/188240/whats-the-best-version-control-system-for-handling-projects-with-graphics 1 What's the best version control system for handling projects with graphics? acrosman 2008-10-09T17:10:12Z 2009-08-18T19:40:50Z <p>I'm part of a small team (usually just two people), I handle the code, he handles the graphic design. In the past I've used CVS to handle version control of the code files, and while we've included the graphics in the repository, he hasn't derived nearly as much value from it as I have. </p> <p>Are there other packages that provide the better features for supporting graphics? The system would need to have an easy to use GUI interface, as I don't think it's fair to expect a graphic designer to learn command-line tools.</p> <p>Additional aspect: The client software needs to run smoothly on OS X (for the designer), and Windows (for the programmer).</p> http://stackoverflow.com/questions/1246634/php-doesnt-show-error/1246640#1246640 2 Answer by acrosman for php doesnt show error acrosman 2009-08-07T19:44:20Z 2009-08-07T19:49:40Z <p>It is almost certainly the case that <code>display_errors</code> is disabled in php.ini.</p> <p>This is a good thing on product servers, and makes development systems basically unusable.</p> <p>For a development system you probably want to add one of these lines to you php.ini file:</p> <pre><code>error_reporting = E_ALL &amp; ~E_NOTICE </code></pre> <p>or </p> <pre><code>error_reporting = E_ALL </code></pre> http://stackoverflow.com/questions/1246451/how-can-i-avoid-php-session-errors/1246495#1246495 0 Answer by acrosman for How can I avoid PHP session errors? acrosman 2009-08-07T19:13:35Z 2009-08-07T19:13:35Z <p>I would NOT suggest you disable the warnings or error messages, this is a problem you probably want to fix. Either you have variables names that are triggering bogus error message (see sterrointerative.com's answer) or you're trying to use global variables without defining them (which means you likely have bugs you can't see). In my opinion that's an important difference you want to sort out.</p> <p>If it's only happening on some pages, you're likely going to have to review all the code pulled into those pages and search for use of variables that don't appear to be defined before they are used. Stepping through those pages with a debugger ought to help.</p> http://stackoverflow.com/questions/1244515/what-is-the-best-text-editor-for-web-development/1244572#1244572 2 Answer by acrosman for What is the best text editor for web development? acrosman 2009-08-07T12:58:07Z 2009-08-07T13:19:10Z <p>The more web development I do, the less I want a WYSISYG editor, they don't generally look like the final version anyway, so having a couple browsers running is usually a must anyway.</p> <p>I've switched to <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> on my Windows systemm and <a href="http://filezilla-project.org/" rel="nofollow">FileZilla</a> for SFTP to the servers.</p> http://stackoverflow.com/questions/1224956/sql-query-and-pregmatch/1224983#1224983 1 Answer by acrosman for SQL query and preg_match acrosman 2009-08-03T22:45:41Z 2009-08-03T22:45:41Z <p>Two options come to mind: Do what you're doing now, or re-write the SQL to do both at once.</p> <p>Option 1:</p> <pre><code>$sql = "SELECT SUBSTR(n.`title`, 1,1) FROM node n WHERE n.`type` = 'type1'"; $results = db_query($sql); while ($fields = db_fetch_array($results)) { foreach($fields as $key =&gt; $value) { if (preg_match ('/A/i', $value)) { echo ('Contains letter A'); // } else { echo ('Nothing'); // } } } </code></pre> <p>Option 2:</p> <pre><code>$sql = "SELECT SUBSTR(n.`title`, 1,1) FROM node n WHERE n.`type` = 'type1' AND SUBSTR(n.`title`, 1,1) = 'A' "; </code></pre> <p>Depending on the rest of the details of your project there is probably a better way to handle this.</p> http://stackoverflow.com/questions/1209296/update-statement-throwing-an-error/1209312#1209312 4 Answer by acrosman for Update statement throwing an error. acrosman 2009-07-30T20:52:33Z 2009-07-30T20:52:33Z <p>I always add a statement to print the generated SQL code, and mysql_error() to see the internals when I get database errors (like the one I assume you're getting here).</p> http://stackoverflow.com/questions/1199799/looking-for-resources-to-learn-sql-server/1199817#1199817 1 Answer by acrosman for Looking for resources to learn SQL Server acrosman 2009-07-29T12:11:27Z 2009-07-29T12:11:27Z <p>If you're familiar with Access, you might take a little time to review some queries you created that you know well in Access's SQL-mode. It's not perfect SQL, but it might help you understand some of the things you've already done in a different frame.</p> http://stackoverflow.com/questions/1861200/include-space-between-two-words-javascript-if-statement Comment by acrosman on Include space between two words Javascript if() statement. acrosman 2009-12-07T16:45:09Z 2009-12-07T16:45:09Z Are trying to do this in PHP or JS? http://stackoverflow.com/questions/1843131/big-o-notation-what-are-the-differences/1843177#1843177 Comment by acrosman on Big O Notation - what are the differences? acrosman 2009-12-04T14:35:09Z 2009-12-04T14:35:09Z True. I left out that relationship assumes a sufficiently large value of n. http://stackoverflow.com/questions/248297/jquery-how-to-get-xml-system-independently/623982#623982 Comment by acrosman on jQuery: how to get xml system independently? acrosman 2009-11-30T14:23:46Z 2009-11-30T14:23:46Z adding .html() to the end will give you the XML as a string. http://stackoverflow.com/questions/1700854/comparing-form-fields-with-data-base-fields-and-highlighting-the-form-fields/1701231#1701231 Comment by acrosman on Comparing form fields with data base fields and highlighting the form fields acrosman 2009-11-09T14:41:58Z 2009-11-09T14:41:58Z If you want to process client-side before submitting form, JavaScript is the tool to use. There are certainly other libraries you could use, or you could go without a library if you wanted. I just suggest jQuery because it makes JS easier to work with. http://stackoverflow.com/questions/1686772/looking-for-a-very-simple-spam-prevention-class-function-for-asp-classic/1686822#1686822 Comment by acrosman on Looking for a very simple spam-prevention class/function for ASP Classic acrosman 2009-11-06T14:08:31Z 2009-11-06T14:08:31Z Yeah, but you'll lose people that block JavaScript. Depending on your traffic levels and audience that can be problematic. http://stackoverflow.com/questions/1544110/admin-close-this-question-please Comment by acrosman on Admin: Close this question please. acrosman 2009-10-09T14:28:33Z 2009-10-09T14:28:33Z Okay PHP is out, what's in? http://stackoverflow.com/questions/1538065/find-out-http-method-in-php/1538091#1538091 Comment by acrosman on Find out HTTP method in PHP acrosman 2009-10-08T14:18:20Z 2009-10-08T14:18:20Z It's better to use the built-in mechanisms for this. http://stackoverflow.com/questions/1469164/one-liner-to-convert-two-newlines-to-one/1469192#1469192 Comment by acrosman on One-liner to convert two newlines to one? acrosman 2009-09-24T00:18:34Z 2009-09-24T00:18:34Z Do you even need the sed command here? I thought fmt would handle this on its own. http://stackoverflow.com/questions/1469164/one-liner-to-convert-two-newlines-to-one Comment by acrosman on One-liner to convert two newlines to one? acrosman 2009-09-24T00:15:36Z 2009-09-24T00:15:36Z I think his example makes the question clear. http://stackoverflow.com/questions/1466408/difference-between-and-in-php/1466417#1466417 Comment by acrosman on Difference between "," and "." in PHP? acrosman 2009-09-23T14:43:14Z 2009-09-23T14:43:14Z No, comma is creating a list of expressions for echo to use, echo concatenates the list when it prints it on one line. http://stackoverflow.com/questions/1456536/how-to-intercept-a-site-http-request-using-javascript/1456591#1456591 Comment by acrosman on How to intercept a site http request using javascript? acrosman 2009-09-22T13:00:27Z 2009-09-22T13:00:27Z No you don't, but the selectors make it easy to make sure you get all the places you'd like to attach your function, while the load and click functions help handle cross browser issues smoothly. http://stackoverflow.com/questions/1454451/detect-when-ajax-changes-html-in-a-div-in-webbrowser/1454477#1454477 Comment by acrosman on Detect when AJAX changes HTML in a DIV in WebBrowser acrosman 2009-09-21T13:48:46Z 2009-09-21T13:48:46Z You can use jQuery with .Net. Stackoverflow itself makes heavy use of jQuery. http://stackoverflow.com/questions/1426570/hide-autoincrement-ids-in-get-parameter-php/1426602#1426602 Comment by acrosman on Hide autoincrement ids in GET parameter (PHP) acrosman 2009-09-16T13:02:11Z 2009-09-16T13:02:11Z It depends on how many pages you plan to have, and now many big a data type you use for storage. Again, it depends some on your system and your goal. http://stackoverflow.com/questions/1405128/remove-item-from-jquery-object Comment by acrosman on Remove item from jQuery object acrosman 2009-09-10T12:59:42Z 2009-09-10T12:59:42Z What kind of thing are you trying to remove? http://stackoverflow.com/questions/1399633/drupal-development-performance Comment by acrosman on Drupal development: performance acrosman 2009-09-09T13:25:39Z 2009-09-09T13:25:39Z I've done Drupal dev on my laptop (XP), and seen many others do it on similar machines. I'd expect you've probably pushed the system too far with the VM. How do normal pages (not PHP) perform?