User Peter - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T10:41:13Zhttp://stackoverflow.com/feeds/user/8792http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1862302/is-there-free-or-cheap-software-that-formats-php-source-code-nicely/1862317#18623172Answer by Peter for is there free or cheap software that formats PHP source code nicely Peter2009-12-07T19:29:57Z2009-12-07T19:29:57Z<p><a href="http://www.eclipse.org/pdt/" rel="nofollow">Eclipse PDT</a> should do the trick, if you're willing to switch to that.</p>
http://stackoverflow.com/questions/1828130/another-javascript-undefined-null-question/1828179#18281790Answer by Peter for Another Javascript Undefined Null QuestionPeter2009-12-01T19:04:02Z2009-12-01T19:04:02Z<p>The reason why </p>
<pre><code>alert(typeof(a.c))
</code></pre>
<p>results in a runtime error and </p>
<pre><code>alert(typeof(b))
</code></pre>
<p>does not is that in the first example you are trying access a property on an undefined object, which causes a runtime error <em>before</em> the result can be fed into <code>typeof()</code></p>
http://stackoverflow.com/questions/1826782/what-is-the-memory-footprint-of-a-method-intensive-java-object/1826872#18268721Answer by Peter for What is the memory footprint of a method intensive Java object?Peter2009-12-01T15:20:32Z2009-12-01T15:20:32Z<p>Here's a general guide to determining the memory usage of objects in Java:
<a href="http://www.javamex.com/tutorials/memory/object%5Fmemory%5Fusage.shtml" rel="nofollow">http://www.javamex.com/tutorials/memory/object%5Fmemory%5Fusage.shtml</a></p>
<p>I suspect that the memory usage incurred from method definitions will be a fixed amount, (possibly put into permgen space when the class is loaded) rather than proportional to the number of instances.</p>
http://stackoverflow.com/questions/1756584/position-an-injected-div-using-jquerys-load-function/1756643#17566430Answer by Peter for Position An Injected DIV Using JQuery's "Load" FunctionPeter2009-11-18T15:07:02Z2009-11-18T15:07:02Z<p>The problem is you are trying to bind an event handler to 'div.quick-info' before such an element exists. (when $(document).ready() executes, the div hasn't been added yet)</p>
<p>Use thenduks suggestion of accomplishing the action in the success handler.</p>
http://stackoverflow.com/questions/1698564/binary-trees-usage/1698583#16985831Answer by Peter for Binary Tree's usagePeter2009-11-09T00:55:55Z2009-11-09T00:55:55Z<p>In Java, trees are used to implement certain sorted data structures, such as the TreeSet:</p>
<p><a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/TreeSet.html" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/java/util/TreeSet.html</a></p>
<p>They are used for data structures where you want the order to be based on some property of the elements, rather than on insertion order.</p>
http://stackoverflow.com/questions/1375590/error-in-java-expression/1375644#13756443Answer by Peter for Error in Java ExpressionPeter2009-09-03T20:02:35Z2009-09-03T20:33:20Z<p>If you're looking for "logical errors" and if the types are all integers, it's probably better to do:</p>
<pre><code>P = (P*x)/y;
</code></pre>
<p>Because the current expression (IIRC) is equivalent to:</p>
<pre><code>P = P*(x/y);
</code></pre>
<p>The latter expression may be less "accurate" if the types are integers. For example:</p>
<pre><code>// evaluates to 3, as expected.
(5*3)/5;
</code></pre>
<p>However,</p>
<pre><code>// Evaluates to 0 because of truncation.
5*(3/5);
</code></pre>
<p>So you need to be careful. In general division on integer expressions should be done as the final step.</p>
http://stackoverflow.com/questions/1368933/feature-detection-in-jquery-test-if-browser-return-nodes-of-type-textnode/1368945#13689452Answer by Peter for Feature detection in jquery : test if browser return nodes of type Text_Node Peter2009-09-02T16:59:27Z2009-09-02T16:59:27Z<p>$('td') will always return a jQuery object, not an actual DOM element or node. jQuery does this in order to standardize behaviour and help alleviate the need for browser-specific handling of different types.</p>
http://stackoverflow.com/questions/1240452/hash-length-reduction/1240624#12406241Answer by Peter for Hash length reduction?Peter2009-08-06T18:35:12Z2009-08-06T18:35:12Z<p>I would definitely recommend against reducing the bit count of hash. There are too many issues at stake here. Firstly, how would you decide which bits to drop?</p>
<p>Secondly, it would be hard to predict how the dropping of those bits would affect the distribution of outputs in the new "shortened" hash function. A (well-designed) hash function is meant to distribute inputs evenly across the whole of the output space, not a subset of it. </p>
<p>By dropping half the bits you are effectively taking a subset of the original hash function, which might not have nearly the desirably properties of a properly-designed hash function, and may lead to further weaknesses.</p>
http://stackoverflow.com/questions/1225146/java-filewriter/1225157#12251575Answer by Peter for Java FileWriterPeter2009-08-03T23:48:49Z2009-08-03T23:48:49Z<p>From the <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/io/FileWriter.html#FileWriter%28java.io.File,%20boolean%29" rel="nofollow">Javadoc</a>, you can use the constructor to specify whether you want to append or not.</p>
<blockquote>
<p>public FileWriter(File file,
boolean append)
throws IOException</p>
<p>Constructs a FileWriter object given a File object. If the second
argument is true, then bytes will be
written to the end of the file rather
than the beginning.</p>
</blockquote>
http://stackoverflow.com/questions/547805/how-to-exclude-all-transitive-dependencies-of-a-maven-dependency/1209129#12091291Answer by Peter for How to exclude all transitive dependencies of a Maven dependencyPeter2009-07-30T20:26:03Z2009-07-30T20:26:03Z<p>Currently, there's no way to exclude more than one transitive dependency at a time, but there is a feature request for this on the Maven JIRA site:</p>
<p><a href="http://jira.codehaus.org/browse/MNG-2315" rel="nofollow">http://jira.codehaus.org/browse/MNG-2315</a></p>
http://stackoverflow.com/questions/1195440/ajax-back-button-and-dom-updates/1195564#11955641Answer by Peter for Ajax, back button and DOM updatesPeter2009-07-28T17:34:52Z2009-07-28T17:34:52Z<p>Using the URL hash/fragment identifier is a pretty common way to hook/remember state in a web application that relies on Ajax and DOM updates.</p>
<p>Check out the <a href="http://code.google.com/p/reallysimplehistory/" rel="nofollow">Really Simple History</a> project for some ideas. It's possible to monitor the URL for changes to the hash, and rsh does this, taking into account browser differences.</p>
http://stackoverflow.com/questions/1172085/using-variables-in-multiple-function/1172112#11721120Answer by Peter for Using variables in multiple functionPeter2009-07-23T14:22:48Z2009-07-23T14:22:48Z<p>The problem is <code>id</code> doesn't exist in the current scope of the second function; it's only been defined in the first. </p>
<p>The only way to do it is to either define <code>id</code> at a higher scope, outside of the first function declaration, or just define it again within the scope of the second function.</p>
http://stackoverflow.com/questions/1153443/caching-of-instances/1154109#11541091Answer by Peter for Caching of instancesPeter2009-07-20T15:02:51Z2009-07-20T15:43:03Z<p>You will definitely have to use some sort of synchronization (either on your class or the underlying data structure) in order to ensure the data is left in a consistent state after method calls. Consider the following situations, with two Threads A and B, with the integer array initially containing all zero values.</p>
<ul>
<li>Thread A calls increment(0). The post-increment operation is not atomic; you can actually consider it to be broken down into at least three steps:
<ul>
<li>Read the current value; Add one to the current value; Store the value.</li>
</ul></li>
<li>Thread B also calls increment(0). If this happens soon after Thread A has done the same, they will both read the <em>same initial value</em> for the element at index 0 of the array. </li>
<li>At this point, both Thread A and B have read a value of '0' for the element they want to increment. Both will increment the value to '1' and store it back in the first element of the array.</li>
<li>Thus, only the work of the Thread that <em>last writes</em> to the array is seen.</li>
</ul>
<p>The situation is similar if you had a <code>decrement()</code> method. If both <code>increment()</code> and <code>decrement()</code> were called at near-simultaneous times by two separate Threads, there is no telling what the outcome would be. The value would either be incremented by one or decremented by one, and the operations would not "cancel" each other out.</p>
<p><strong>EDIT: Update to reflect Roman's (OP) comment below</strong></p>
<p>Sorry, I mis-read the post. I think I understand your question, which is along the lines of:</p>
<blockquote>
<p>"If I declare an array as <code>volatile</code>,
does that mean access to its elements
are treated as <code>volatile</code> as well?"</p>
</blockquote>
<p>The quick answer is No: Please see <a href="http://www.javamex.com/tutorials/volatile%5Farrays.shtml" rel="nofollow">this article for more information</a>; the information in the previous answers here is also correct.</p>
http://stackoverflow.com/questions/1153881/requireonce-problem-with-templating/1153951#11539511Answer by Peter for require_once problem with templatingPeter2009-07-20T14:31:28Z2009-07-20T15:03:55Z<p>It may be because <code>master.php</code> is being included or required by <strong>another script file that is not in the same directory</strong> as <code>header.php</code>. That is, when you visit the index, do you know which file is being invoked/parsed?</p>
<p>Take a look at the <a href="http://us3.php.net/manual/en/function.include.php" rel="nofollow">documentation</a> for <code>include()</code>, which also applies to <code>require()</code>:</p>
<blockquote>
<p>Files for including are first looked
for in each include_path entry
relative to the current working
directory, and then in the directory
of current script. E.g. if your
include_path is libraries, current
working directory is /www/, you
included include/a.php and there is
include "b.php" in that file, b.php
is first looked in /www/libraries/
and then in /www/include/</p>
</blockquote>
<p><strong>Update</strong></p>
<p>To address some of the comments: I didn't say that include() would change the CWD. I'm saying that if the CWD is not the one where both master/header.php are located, that could be the issue.</p>
<p>For example, say you have <code>index.php</code> in a different folder than <code>master.php</code> and <code>header.php</code>; it includes or requires <code>master.php</code> using the proper path to it. Now, <code>master.php</code> has the statement:</p>
<pre><code><?php require_once("header.php"); ?>
</code></pre>
<p>However, at this point the CWD <em>does not contain</em> <code>header.php</code>, since the CWD is that of <code>index.php</code>.</p>
<p>To fix this, you need to call <code>require_once</code> with the proper path from the CWD of the current script to <code>header.php</code>, NOT the path from <code>master.php</code>.</p>
http://stackoverflow.com/questions/1143544/php-looping-through-files-to-check-filetype/1143578#11435780Answer by Peter for PHP - Looping through $_FILES to check filetypePeter2009-07-17T14:16:26Z2009-07-17T14:16:26Z<p>I think your <code>if</code> conditional is wrong. You need brackets around the first group of booleans that are OR'd, like this:</p>
<pre><code> if ( (($_FILES["image$i"]["type"] == "image/gif")
|| ($_FILES["image$i"]["type"] == "image/jpeg")
|| ($_FILES["image$i"]["type"] == "image/png" ))
&& ($_FILES["image$i"]["size"] < 500000))
</code></pre>
<p>This properly means "if the file is an image of (gif or jpeg or png) AND is less than that size".</p>
<p>The way you had it before was not likely the logic you desired.</p>
http://stackoverflow.com/questions/1125772/should-you-do-validation-on-the-server-side/1125830#11258303Answer by Peter for Should you do validation on the server side?Peter2009-07-14T14:35:11Z2009-07-14T14:35:11Z<p>It is absolutely essential to have server-side validation, as a user could turn off JavaScript or simply submit any data they wanted to your server-side handler, since they don't have to use your JS-enhanced form to submit the data.</p>
<p>I've always thought of client-side/JavaScript validation as a UI enhancement, with the server-side validation as the "actual" validation. Having the JS validation is nice for immediate notification of improper data to help your users.</p>
http://stackoverflow.com/questions/1107470/will-the-save-method-in-a-cakephp-model-class-choose-between-creating-and-updatin/1107479#110747910Answer by Peter for Will the save method in a Cakephp model class choose between creating and updating a record?Peter2009-07-10T03:03:33Z2009-07-10T03:03:33Z<p>If you call <code>save()</code>, supplying a record with an existing <code>id</code> (or whatever is the primary key), it will update, otherwise it will create a new record.</p>
<p>So in your case, yes, it would update the record that was first created at the top.</p>
<p><strong>Update</strong></p>
<p>Here's <a href="http://book.cakephp.org/view/75/Saving-Your-Data" rel="nofollow">the supporting documentation</a>:</p>
<blockquote>
<p>Creating or updating is controlled by
the model's id field. If $Model->id is
set, the record with this primary key
is updated. Otherwise a new record is
created.</p>
</blockquote>
<p>Under the documentation for <code>Model::save()</code>.</p>
http://stackoverflow.com/questions/1105212/invoke-method-accepting-multiple-arguments-with-arguments-array/1105238#11052380Answer by Peter for Invoke method accepting multiple arguments with arguments arrayPeter2009-07-09T17:09:56Z2009-07-09T17:09:56Z<p>Once you have the <code>Method</code> object, you can use <a href="http://java.sun.com/javase/6/docs/api/java/lang/reflect/Method.html#getParameterTypes%28%29" rel="nofollow">getParameterTypes()</a> to determine this. From the JavaDoc:</p>
<blockquote>
<p>Returns an array of Class objects that
represent the formal parameter types,
in declaration order, of the method
represented by this Method object.
Returns an array of length 0 if the
underlying method takes no parameters.</p>
</blockquote>
http://stackoverflow.com/questions/1105206/how-can-you-act-only-on-those-elements-that-are-in-a-particular-view-state-in-jqu/1105218#11052183Answer by Peter for How can you act only on those elements that are in a particular view state in JQuery?Peter2009-07-09T17:05:28Z2009-07-09T17:05:28Z<p>You could use the <a href="http://docs.jquery.com/Selectors/visible" rel="nofollow">:visible pseudo-selector</a>.</p>
<p>So something like this:</p>
<pre><code>$(".pie").click(function ()
{
$(".pie:visible").hide;
});
</code></pre>
http://stackoverflow.com/questions/1104741/generating-sequential-numbers-in-multi-user-saas-application/1104771#11047710Answer by Peter for Generating sequential numbers in multi-user saas applicationPeter2009-07-09T15:47:45Z2009-07-09T15:47:45Z<p>Not sure if this is the best solution, but you could store the last Invoice ID on the User and then use that to determine the next ID when creating a new Invoice for that User. But this simple solution may have problems with integrity, will need to be careful.</p>
http://stackoverflow.com/questions/1100366/get-vs-post-does-it-really-really-matter/1100406#11004060Answer by Peter for GET vs. POST does it really really matter?Peter2009-07-08T20:33:03Z2009-07-08T20:33:03Z<p>The server usually doesn't care. But it's mostly for following good practices, as you mentioned. The client side also matter - as mentioned you cannot bookmark a POST'd page usually, and some browsers have limits on the length of the URL for really long GET queries.</p>
http://stackoverflow.com/questions/1099858/php-login-return-values/1099878#10998784Answer by Peter for PHP login return values.Peter2009-07-08T18:43:51Z2009-07-08T18:43:51Z<p>Not sure exactly what your question is, but one problem is that you're <code>return</code>ing from within this while loop:</p>
<pre><code>while($row = mysql_fetch_array($result))
{
return 'gg';
return(array($row['member_id']));
}
</code></pre>
<p>In fact, you're returning <strong>twice</strong> from within the loop... so the <code>procLogin()</code> function will always return a value of "gg", unless something goes wrong with your SQL query.</p>
<p>In general, you should avoid <code>return</code> statements within any loop, as it creates confusion and can lead to unexpected results.</p>
http://stackoverflow.com/questions/1099662/will-software-development-ever-be-consolidated/1099793#10997930Answer by Peter for Will software development ever be consolidated?Peter2009-07-08T18:27:18Z2009-07-08T18:27:18Z<p>I would argue that the availability of cheap commodity hardware and resources such as "cloud computing" <em>increase</em> the incentive for development be more decentralized. Massive corporations, with their huge resources, can no longer enjoying such an advantage over independent or smaller-sized development teams.</p>
<p>In a sense, it is like how there are a few big publishing houses out there, but still many independent authors (or groups of authors) out there. The exception would be things like all those newer "Tom Clancy" series novels, all written by a pen name that represents numerous untold authors.</p>
http://stackoverflow.com/questions/1099268/with-cloud-computing-increasingly-getting-popular-will-relational-dbs-suffer-dea/1099329#10993294Answer by Peter for With Cloud Computing increasingly getting popular, will Relational DBs suffer death?Peter2009-07-08T17:00:19Z2009-07-08T17:00:19Z<p>Here's a good article that may answer some of your questions. It features a good comparison between RDBMS systems and the ones usually used for cloud storage infrastructure:</p>
<p><a href="http://www.readwriteweb.com/enterprise/2009/02/is-the-relational-database-doomed.php" rel="nofollow">http://www.readwriteweb.com/enterprise/2009/02/is-the-relational-database-doomed.php</a></p>
http://stackoverflow.com/questions/1098806/ordering-your-title-tags/1098818#109881812Answer by Peter for Ordering your title tagsPeter2009-07-08T15:27:38Z2009-07-08T15:27:38Z<p>I believe you should only have one H1 element per document, but I'm not sure if this is a rule. However, it is something that I tend to follow.</p>
<p>Thus, I vote for the second example you provided, it is more logical to have multiple H3/H4, etc. elements than multiple H1 elements. This implies the hierarchy that you're trying to convey in a better manner.</p>
http://stackoverflow.com/questions/1098664/parse-error-in-php/1098698#10986985Answer by Peter for Parse Error in PHPPeter2009-07-08T15:09:59Z2009-07-08T15:09:59Z<p>You are missing the closing brace "}" after the statement:</p>
<pre><code>$self = $_SERVER['PHP_SELF'];
</code></pre>
<p>It should be:</p>
<pre><code><?php
if ($_SERVER['REQUEST_METHOD'] != 'POST'){
$self = $_SERVER['PHP_SELF'];
}
?>
</code></pre>
http://stackoverflow.com/questions/1098338/optimize-php-function/1098362#10983623Answer by Peter for Optimize PHP functionPeter2009-07-08T14:14:05Z2009-07-08T14:14:05Z<p>You could use <a href="http://ca3.php.net/manual/en/function.scandir.php" rel="nofollow">scandir()</a> to list the files in the directory, instead of iterating through them one-by-one using <code>readdir()</code>. scandir() returns an array of the files.</p>
<p>However, it'd be better if you could change your file system organization - do you really need to store 20000+ files in a single directory?</p>
http://stackoverflow.com/questions/1097808/are-primitive-data-types-in-php-passed-by-reference/1097822#10978221Answer by Peter for Are primitive data types in PHP passed by reference?Peter2009-07-08T12:42:19Z2009-07-08T12:42:19Z<p>Yes, primitives are passed by value unless you explicitly define the function to pass by reference (by using an ampersand <code>&</code> in front of the parameter) or invoke the function with an ampersand in front of the argument. (The latter of which is deprecated)</p>
<p>See <a href="http://www.php.net/manual/en/functions.arguments.php" rel="nofollow">this part of the documentation</a> for more.</p>
<p>EDIT</p>
<p>Also, the statement that "objects are passed by reference" in PHP is a bit of a simplification, though it can often be thought of that way for most purposes. This <a href="http://www.php.net/manual/en/language.oop5.references.php" rel="nofollow">chapter of the documentation</a> explains the differences.</p>
http://stackoverflow.com/questions/1093776/how-can-i-fix-this-javascript-syntax-error/1093809#10938090Answer by Peter for How can I fix this JavaScript syntax error?Peter2009-07-07T17:55:28Z2009-07-07T17:55:28Z<p>This statement:</p>
<pre><code>var point = new GLatLng(,);
</code></pre>
<p>Is not correct because there isn't a lat or lng number specified. This is because this statement:</p>
<pre><code>var point = new GLatLng('.$row->LocationLat.','.$row->LocationLon.');
</code></pre>
<p>Is incorrect. I'd try something like:</p>
<pre><code>var point = new GLatLng(<?php echo $row->LocationLat . ',' . $row->LocationLon; ?>);
</code></pre>
<p>If that doesn't work, then <code>$row->LocationLat</code> or <code>$row->LocationLon</code> are possibly empty.</p>
http://stackoverflow.com/questions/1092578/problem-calling-method-inside-another-method-in-javascript/1092633#10926333Answer by Peter for Problem calling method inside another method in javascript?Peter2009-07-07T14:23:25Z2009-07-07T14:31:15Z<p>I think the problem is that when <code>this.C()</code> is executed inside the function referred to by <code>B</code>, <code>this</code> refers to the object that contains <code>B</code>, that is, object <code>A</code>. (This assumes <code>B()</code> is called within the context of <code>A</code>)</p>
<p>The problem is, <code>C</code> does not exist on the object <code>A</code>, since it's defined within <code>B</code>. If you want to call a local function <code>C()</code> within <code>B</code>, just use <code>C()</code>.</p>
<p>EDIT:
Also, I'm not sure what you've posted is valid JavaScript. Specifically, <code>B</code> should be defined this way, since you can't use the object:property syntax within a function.</p>
<pre><code>B: function()
{
var test='test';
var result='t1';
var C = function()
{
this.test='test1';
return 'test1';
}
result=C();
return result;
}
</code></pre>
http://stackoverflow.com/questions/1861973/constant-time-hash-for-strings/1867918#1867918Comment by Peter on Constant-time hash for strings?Peter2009-12-08T16:22:59Z2009-12-08T16:22:59ZA good idea, but it's worthwhile to note the process of inserting into a String table would add time proportional to the number of Strings in the table, unless the table was hash-based, in which case the problem is reduced back to the original state.http://stackoverflow.com/questions/1375590/error-in-java-expression/1375644#1375644Comment by Peter on Error in Java ExpressionPeter2009-09-03T20:32:53Z2009-09-03T20:32:53Z@Mike C
Oops, you're right, a careless mistake on my part, will correct it.http://stackoverflow.com/questions/1369936/php-check-to-see-if-a-string-is-serialized/1369946#1369946Comment by Peter on PHP - Check to see if a string is serialized?Peter2009-09-02T20:33:54Z2009-09-02T20:33:54ZBut what if the unserialized value is a boolean with a value of FALSE?http://stackoverflow.com/questions/1303740/what-causes-imagecreatetruecolor-to-failComment by Peter on what causes imagecreatetruecolor() to fail?Peter2009-08-20T03:32:06Z2009-08-20T03:32:06ZWhat were the values of $new_w and $new_h? http://stackoverflow.com/questions/1195595/dynamically-add-rows-to-form-with-unique-fieldsComment by Peter on Dynamically add rows to form with unique fields?Peter2009-07-28T17:42:46Z2009-07-28T17:42:46ZA code sample would be helpful.http://stackoverflow.com/questions/1153443/caching-of-instances/1154109#1154109Comment by Peter on Caching of instancesPeter2009-07-20T15:43:48Z2009-07-20T15:43:48ZSorry about the misunderstand, I've updated my post with a better answer.http://stackoverflow.com/questions/1153881/requireonce-problem-with-templating/1153951#1153951Comment by Peter on require_once problem with templatingPeter2009-07-20T15:08:37Z2009-07-20T15:08:37ZVolkerK, please see my update, I did not say that include or require change the CWD.http://stackoverflow.com/questions/1143498/javascript-difference-between-an-object-and-a-hashComment by Peter on Javascript: Difference between an object, and a hash?Peter2009-07-17T14:11:40Z2009-07-17T14:11:40ZI think your statement "difference between and object and a hash" is meant to mean "difference between and object and a (hash)map".http://stackoverflow.com/questions/1110349/how-can-define-a-composite-primary-key-in-sql/1110364#1110364Comment by Peter on How can define a composite primary key in SQL?Peter2009-07-10T15:47:30Z2009-07-10T15:47:30ZGood answer. Just to clarify, QuestionID and MemberID are not separate primary keys but rather the combination of them form a unique pair/tuple.http://stackoverflow.com/questions/1109537/php-acts-differently-depending-on-computer/1109580#1109580Comment by Peter on PHP acts differently depending on computerPeter2009-07-10T13:46:58Z2009-07-10T13:46:58ZI believe you're right. Without the $/sigil, PHP think's the identifier is a constant, but if no such constant exists, it can "fall back" to the variable that would've been referred to if the "$" was there. However, this generates some warning/notice level (forget the exact level) and may not always work as expected...http://stackoverflow.com/questions/1107791/making-a-social-networkComment by Peter on Making a social networkPeter2009-07-10T05:07:22Z2009-07-10T05:07:22ZThis is a rather vague question that probably can't be reasonably answered - do you have a specific example of one of the bumps you ran into?http://stackoverflow.com/questions/1098379/problem-displaying-error-on-the-webpage-using-jsComment by Peter on Problem displaying error on the webpage using jsPeter2009-07-08T14:19:18Z2009-07-08T14:19:18ZCould you format your source so it's easier to read?http://stackoverflow.com/questions/1098349/reading-non-inline-css-style-info-from-javascriptComment by Peter on Reading non-inline CSS style info from JavascriptPeter2009-07-08T14:17:57Z2009-07-08T14:17:57ZCheck this out: <a href="http://stackoverflow.com/questions/324486/how-do-you-read-css-rule-values-with-javascript" rel="nofollow" title="how do you read css rule values with javascript">stackoverflow.com/questions/324486/…</a>http://stackoverflow.com/questions/1090102/equivalent-of-memcmp-in-java/1090111#1090111Comment by Peter on equivalent of memcmp() in Java?Peter2009-07-07T02:36:03Z2009-07-07T02:36:03ZProbably better to ask as a separate question or search SO for an existing answer...http://stackoverflow.com/questions/1088430/is-folder-uploading-possible-in-phpComment by Peter on Is folder uploading possible in PHP?Peter2009-07-06T18:25:27Z2009-07-06T18:25:27ZYikes, don't edit a question to completely change the title! Just ask a new question!