User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T08:39:05Zhttp://stackoverflow.com/feeds/user/11087http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/430809/rest-interface-for-finding-average/453676#4536760Answer by cyborg for REST interface for finding averagecyborg2009-01-17T17:42:40Z2009-01-17T17:42:40Z<p>What you are talking about is doing a stateless transformation of a request representation (list of numbers) into a response representation (single number). </p>
<p>Lets categorize your resource:</p>
<ul>
<li>Stateless -- The request is stateless, but so is the resource. It should be able to take your request, process it, and return a response without maintaining any internal state. Further discussion below.</li>
<li>Unlikely to be cacheable -- I am making an assumption here that your lists of numbers are never/seldom identical. </li>
<li>Idempotent -- Requests have no side effects. This is because the resource is stateless.</li>
</ul>
<p>Now lets examine the different HTTP methods:</p>
<ul>
<li>GET - Gets the state of a resource. Since your resource has no state, it is not appropriate for your situation. (idempotent, cacheable)</li>
<li>DELETE - Removes a resource or clears its state. Also not appropriate for your situation. (not idempotent, not cacheable)</li>
<li>PUT - Used to set the state of a resource (or create it if it does not exist). (idempotent, not cacheable)</li>
<li>POST - Used to process requests which may or may not modify the state of a resource. May create other resources. (no guarantee of idempotence -- depends on whether the resource is stateful or stateless, not cacheable)</li>
</ul>
<p>As you see in the other answers, POST is most popularly used as a synonym for 'create'. While this is ok, POST is not limited to just 'create' in REST. Mark Baker does a good job of explaining this here: <a href="http://www.markbaker.ca/2001/09/draft-baker-http-resource-state-model-01.txt" rel="nofollow">http://www.markbaker.ca/2001/09/draft-baker-http-resource-state-model-01.txt</a> (Section 3.1.4). </p>
<p>While POST does not have a perfect semantic mapping to your problem, it is the best of all the HTTP methods for what you are trying to do. It also leads to a simple, stateless, and scalable solution, which is the point of REST.</p>
<p>In summary, the answer to your question is: </p>
<ul>
<li>Method: POST</li>
<li>Request: A representation of a list of numbers</li>
<li>Response: A representation of a single number (average of the list)</li>
</ul>
<p>While this may look like a SOAP-style web service invocation, it is not. Don't let your visceral reaction to SOAP cloud your use of the POST method and place unnecessary constraints on it. </p>
<p>KISS (Keep it simple, stupid).</p>
http://stackoverflow.com/questions/111226/least-intrusive-antivirus-software-for-development-pc/111320#1113201Answer by cyborg for Least intrusive antivirus software for development PC?cyborg2008-09-21T16:10:07Z2008-09-21T16:10:07Z<p>My work has an incredibly intrusive configuration of McAfee which destroys performance utterly. It intercepts any I/O operation and causes the whole computer to freeze while it scans the file. That said, my work came up with an interesting compromise for developers.</p>
<ol>
<li>Configure the virus scanner for maximum protection on the whole PC (it hurts!)</li>
<li>Configure certain directories which are excluded by the virus scanner</li>
</ol>
<p>This way we effectively get the best of both worlds because all of the development tools (IDE, compiler, databases, etc) can be installed into those "trusted" directories and run with zero performance loss. Meanwhile, the workstation is not left totally unprotected.</p>
http://stackoverflow.com/questions/73491/missing-aar-file-in-maven2-multi-project-build/89868#898680Answer by cyborg for Missing aar file in maven2 multi-project buildcyborg2008-09-18T03:58:26Z2008-09-20T16:02:27Z<p>Have you tried using the "type" element in your dependencies? For example:</p>
<pre><code><dependency>
<groupId>group-a</groupId>
<artifactId>artifact-b</artifactId>
<version>1.0</version>
<type>aar</type>
</dependency>
</code></pre>
<p>Its hard to say for sure what your problem is without seeing your actual pom files.</p>
<p>Update:</p>
<p>What happens if, from the parent project, you run:</p>
<pre><code> mvn clean install
</code></pre>
<ol>
<li>Does "install" have any different behavior than "package" as far as your problem is concerned?</li>
<li>Do you see the .aar file in your local maven repository (~/.m2/repository/com/mycompany/.../)?</li>
</ol>
<p>As a side note, i've never been very happy with the maven war plugin. I've always ended up using the maven assembly plugin. It just seems to work better and is more consistent. Also, make sure you are using the latest version of maven (2.0.9). I spent half a day fighting a similar problem which was fixed in the latest version.</p>
http://stackoverflow.com/questions/106401/validate-an-incoming-soap-request-to-the-wsdl-in-php/108525#1085251Answer by cyborg for Validate an incoming SOAP request to the WSDL in PHPcyborg2008-09-20T15:43:06Z2008-09-20T15:48:20Z<p>Typically one doesn't validate against the WSDL. If the WSDL is designed properly there should be an underlying xml schema (XSD) to validate the body of the request against. Your XML parser should be able to do this.</p>
<p>The rest is up to how you implement the web service and which SOAP engine you are using. I am not directly familiar with the PHP engine. For WSDL/interface level "validation" I usually do something like this:</p>
<ol>
<li>Does the body of the request match a known request type and is it valid (by XSD)?</li>
<li>Does the message make sense in this context and can i map it to an operation/handler?</li>
<li>If so, start processing it</li>
<li>Otherwise: error</li>
</ol>
http://stackoverflow.com/questions/106285/what-is-the-most-stable-least-intrusive-way-to-track-web-traffic-between-two-sit/106363#1063631Answer by cyborg for What is the most stable, least intrusive way to track web traffic between two sites?cyborg2008-09-19T23:24:35Z2008-09-19T23:24:35Z<p>Do you have access to the logs on all of the sites in question? If so, you should be able to extract that data from the log files (Referer header).</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90027#900270Answer by cyborg for What is a reasonable code coverage % for unit tests (and why)?cyborg2008-09-18T04:31:14Z2008-09-18T04:31:14Z<p>Short answer: 60-80%</p>
<p>Long answer:
I think it totally depends on the nature of your project. I typically start a project by unit testing every practical piece. By the first "release" of the project you should have a pretty good base percentage based on the type of programming you are doing. At that point you can start "enforcing" a minimum code coverage.</p>
http://stackoverflow.com/questions/89959/dependency-injection-and-circular-reference/89983#899832Answer by cyborg for Dependency Injection and Circular referencecyborg2008-09-18T04:22:06Z2008-09-18T04:22:06Z<p>Frequently you can solve circular reference issues by using setter injection instead of constructor injection.</p>
<p>In pseudo-code:</p>
<pre><code>Foo f = new Foo();
Bar b = new Bar();
f.setBar(b);
b.setFoo(f);
</code></pre>
http://stackoverflow.com/questions/89920/what-time-should-i-build-to-production/89949#899493Answer by cyborg for What time should I build to production?cyborg2008-09-18T04:13:15Z2008-09-18T04:13:15Z<p>Here's what I have done and its worked well for me:</p>
<ol>
<li>Get a site traffic analysis tool
which will graph hourly user load</li>
<li>Select low-point in graph for doing
updates</li>
</ol>
http://stackoverflow.com/questions/89891/what-are-the-benefits-of-the-iterator-interface-in-java/89925#899251Answer by cyborg for What are the benefits of the Iterator interface in Java?cyborg2008-09-18T04:10:12Z2008-09-18T04:10:12Z<p>An interesting paper discussing the pro's and con's of using iterators:</p>
<p><a href="http://www.sei.cmu.edu/pacc/CBSE5/Sridhar-cbse5-final.pdf" rel="nofollow">http://www.sei.cmu.edu/pacc/CBSE5/Sridhar-cbse5-final.pdf</a></p>
http://stackoverflow.com/questions/79918/integrating-static-analysis-tools-with-each-other/79948#799481Answer by cyborg for Integrating static analysis tools with each other?cyborg2008-09-17T04:21:49Z2008-09-17T04:21:49Z<p>I am not clear on what qualifies as a single uniform report in your book but here is what I do.</p>
<p>I use Maven2 for builds and with it you can configure a series of reporting plugins (including PMD, CPD, checkstyle, coberturba, etc). Maven will also auto-generate a website (site plugin) for your project which contains all the reports in a nice easy-to-navigate webpage format.</p>
http://stackoverflow.com/questions/58520/version-control-of-deliverables/69585#695853Answer by cyborg for Version control of deliverablescyborg2008-09-16T05:24:00Z2008-09-16T05:24:00Z<p>Another option is <a href="http://www.cis.upenn.edu/~bcpierce/unison/" rel="nofollow">unison</a></p>
http://stackoverflow.com/questions/58640/great-programming-quotes/69547#6954738Answer by cyborg for Great programming quotescyborg2008-09-16T05:13:04Z2008-09-16T05:13:04Z<blockquote>
<p>Measuring programming progress by
lines of code is like measuring
aircraft building progress by weight.
- Bill Gates</p>
</blockquote>
http://stackoverflow.com/questions/69497/what-is-a-good-non-distributed-alternative-to-subversion-that-has-excellent-bra/69522#695222Answer by cyborg for What is a good, non-distributed, alternative to subversion that has excellent branching and merging support?cyborg2008-09-16T05:03:11Z2008-09-16T05:03:11Z<p>Did you ever ask yourself why you have so many branch/merge operations? Is there a way to simplify your development process?</p>
<p>Subversion, IMHO, is a good application of the KISS (Keep it simple, stupid) principle. Translation: In my experience you will get a far greater productivity boost from streamlining your development process than from getting a more complex tool.</p>
http://stackoverflow.com/questions/69448/how-do-i-keep-resharper-files-out-of-svn/69472#694722Answer by cyborg for How do I keep Resharper Files out of SVN?cyborg2008-09-16T04:50:58Z2008-09-16T04:50:58Z<p>Short answer: the "svn:ignore" property</p>
<p>Long answer:</p>
<pre><code># cd /your/working/copy
# export EDITOR=vi
# svn propedit svn:ignore .
</code></pre>
<p>(add "_Resharper.ProjectName" on its own line and write the file out)</p>
<p>Edit: erg... doh, just realized you said tortoise... this is how you do it with the command-line version of SVN</p>