User acrosman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T17:44:12Zhttp://stackoverflow.com/feeds/user/24215http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses44What is the best regular expression for validating email addresses?acrosman2008-10-14T14:14:34Z2009-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#18611480Answer by acrosman for Best way to track changes on a website for visitors' informationacrosman2009-12-07T16:35:10Z2009-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#18431770Answer by acrosman for Big O Notation - what are the differences?acrosman2009-12-03T21:51:43Z2009-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#17834422Answer by acrosman for Examples of vulnerable PHP code?acrosman2009-11-23T14:27:53Z2009-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#17012310Answer by acrosman for Comparing form fields with data base fields and highlighting the form fields acrosman2009-11-09T14:19:53Z2009-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#16878535Answer by acrosman for Looking for a very simple spam-prevention class/function for ASP Classicacrosman2009-11-06T14:11:22Z2009-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#15665554Answer by acrosman for Crash Course in Web Development (PHP+HTML)acrosman2009-10-14T14:17:15Z2009-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#15507020Answer by acrosman for Are c styled strings safe?acrosman2009-10-11T13:30:45Z2009-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#15491202Answer by acrosman for How to make set up condition specific password in php?acrosman2009-10-10T21:30:50Z2009-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#15381251Answer by acrosman for user.validationcode@domain.com How to do this?acrosman2009-10-08T14:21:08Z2009-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#14929551Answer by acrosman for Problem on how to display members info from a database with mysql and php?acrosman2009-09-29T14:36:29Z2009-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#14747440Answer by acrosman for Different background position every clickacrosman2009-09-24T23:47:09Z2009-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#14716956Answer by acrosman for Why is PHP printing my number in scientific notation, when I specified it as .000021?acrosman2009-09-24T13:29:12Z2009-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#14565910Answer by acrosman for How to intercept a site http request using javascript?acrosman2009-09-21T20:14:03Z2009-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#14445041Answer by acrosman for Insert 50 thousand record in MySQLacrosman2009-09-18T13:18:21Z2009-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#14266020Answer by acrosman for Hide autoincrement ids in GET parameter (PHP)acrosman2009-09-15T11:30:29Z2009-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#14056030Answer by acrosman for accessing DELETE from jquery in PHPacrosman2009-09-10T14:27:55Z2009-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&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#14052860Answer by acrosman for Array to create datesacrosman2009-09-10T13:23:21Z2009-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#13897061Answer by acrosman for Multi-tier applications with PHP?acrosman2009-09-07T14:41:08Z2009-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#13809591Answer by acrosman for Help with Warning: Cannot modify header information - headers already sent by (output started at C:\## errorsacrosman2009-09-04T18:55:56Z2009-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#13798931Answer by acrosman for CSS Colors: Depend on Monitor?acrosman2009-09-04T15:15:58Z2009-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#13793462Answer by acrosman for Consume WebService with phpacrosman2009-09-04T13:40:22Z2009-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#13238731Answer by acrosman for Hunting down PHP parse errorsacrosman2009-08-24T18:10:48Z2009-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-graphics1What's the best version control system for handling projects with graphics?acrosman2008-10-09T17:10:12Z2009-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#12466402Answer by acrosman for php doesnt show erroracrosman2009-08-07T19:44:20Z2009-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 & ~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#12464950Answer by acrosman for How can I avoid PHP session errors?acrosman2009-08-07T19:13:35Z2009-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#12445722Answer by acrosman for What is the best text editor for web development?acrosman2009-08-07T12:58:07Z2009-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#12249831Answer by acrosman for SQL query and preg_matchacrosman2009-08-03T22:45:41Z2009-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 => $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#12093124Answer by acrosman for Update statement throwing an error.acrosman2009-07-30T20:52:33Z2009-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#11998171Answer by acrosman for Looking for resources to learn SQL Serveracrosman2009-07-29T12:11:27Z2009-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-statementComment by acrosman on Include space between two words Javascript if() statement.acrosman2009-12-07T16:45:09Z2009-12-07T16:45:09ZAre trying to do this in PHP or JS?http://stackoverflow.com/questions/1843131/big-o-notation-what-are-the-differences/1843177#1843177Comment by acrosman on Big O Notation - what are the differences?acrosman2009-12-04T14:35:09Z2009-12-04T14:35:09ZTrue. 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#623982Comment by acrosman on jQuery: how to get xml system independently?acrosman2009-11-30T14:23:46Z2009-11-30T14:23:46Zadding .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#1701231Comment by acrosman on Comparing form fields with data base fields and highlighting the form fields acrosman2009-11-09T14:41:58Z2009-11-09T14:41:58ZIf 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#1686822Comment by acrosman on Looking for a very simple spam-prevention class/function for ASP Classicacrosman2009-11-06T14:08:31Z2009-11-06T14:08:31ZYeah, 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-pleaseComment by acrosman on Admin: Close this question please.acrosman2009-10-09T14:28:33Z2009-10-09T14:28:33ZOkay PHP is out, what's in?http://stackoverflow.com/questions/1538065/find-out-http-method-in-php/1538091#1538091Comment by acrosman on Find out HTTP method in PHPacrosman2009-10-08T14:18:20Z2009-10-08T14:18:20ZIt's better to use the built-in mechanisms for this.http://stackoverflow.com/questions/1469164/one-liner-to-convert-two-newlines-to-one/1469192#1469192Comment by acrosman on One-liner to convert two newlines to one?acrosman2009-09-24T00:18:34Z2009-09-24T00:18:34ZDo 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-oneComment by acrosman on One-liner to convert two newlines to one?acrosman2009-09-24T00:15:36Z2009-09-24T00:15:36ZI think his example makes the question clear.http://stackoverflow.com/questions/1466408/difference-between-and-in-php/1466417#1466417Comment by acrosman on Difference between "," and "." in PHP?acrosman2009-09-23T14:43:14Z2009-09-23T14:43:14ZNo, 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#1456591Comment by acrosman on How to intercept a site http request using javascript?acrosman2009-09-22T13:00:27Z2009-09-22T13:00:27ZNo 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#1454477Comment by acrosman on Detect when AJAX changes HTML in a DIV in WebBrowseracrosman2009-09-21T13:48:46Z2009-09-21T13:48:46ZYou 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#1426602Comment by acrosman on Hide autoincrement ids in GET parameter (PHP)acrosman2009-09-16T13:02:11Z2009-09-16T13:02:11ZIt 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-objectComment by acrosman on Remove item from jQuery objectacrosman2009-09-10T12:59:42Z2009-09-10T12:59:42ZWhat kind of thing are you trying to remove?http://stackoverflow.com/questions/1399633/drupal-development-performanceComment by acrosman on Drupal development: performanceacrosman2009-09-09T13:25:39Z2009-09-09T13:25:39ZI'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?