User Rob Ottaway - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T07:29:33Zhttp://stackoverflow.com/feeds/user/53517http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/431332/maven-look-for-new-versions-of-dependencies/431446#4314460Answer by Rob Ottaway for maven look for new versions of dependenciesRob Ottaway2009-01-10T18:02:48Z2009-01-10T18:02:48Z<p>Yah you can't make it look for newer versions of dependencies. What you can do is look at the repo, try a search at <a href="http://www.mvnrepository.com/" rel="nofollow">http://www.mvnrepository.com/</a></p>
<p>Really you shouldn't want Maven doing this. It could cause a lot of nasty issues. Sometimes backwards compatibility can break even in point releases.</p>
http://stackoverflow.com/questions/431377/how-to-make-a-progress-bar-in-copy-or-query/431405#431405-1Answer by Rob Ottaway for How to make a progress-bar in copy or query?Rob Ottaway2009-01-10T17:42:11Z2009-01-10T17:42:11Z<p>Well... really since you can't measure you just have to guess. You ever installed windows and the progress bar is very slow to move but then all of a sudden it jumps a great deal?</p>
<p>A couple ideas. If you have only one SQL query then you could slowly move the progress bar over time (like 0.5% per second?). Then if the the query hasn't finished by the time it hits 90% stop it. Then don't let it finish until it is done. If it finishes early (while the slow climb is going on) just jump to 100%.</p>
<p>Another idea is to run the query many times over to figure out an average time. Use this to do the same thing I mentioned in the last paragraph, but with the average time you can probably make the increments match better with the real progress.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/430379/draw-rounded-corners-on-photo-with-pil/430407#4304073Answer by Rob Ottaway for Draw rounded corners on photo with PILRob Ottaway2009-01-10T02:17:46Z2009-01-10T02:17:46Z<p>From Fredrik Lundh:</p>
<p>create a mask image with round corners (either with your favourite image
editor or using ImageDraw/aggdraw or some such).</p>
<p>in your program, load the mask image, and cut out the four corners using
"crop".</p>
<p>then, for each image, create a thumbnail as usual, and use the corner
masks on the corners of the thumbnail.</p>
<ul>
<li><p>if you want transparent corners, create an "L" image with the same
size as the thumbnail, use "paste" to add the corner masks in that
image, and then use "putalpha" to attach the alpha layer it to the
thumbnail.</p></li>
<li><p>if you want solid corners, use "paste" on the thumbnail instead, using
a solid color as the source.</p></li>
</ul>
<p></p>
<p><a href="http://mail.python.org/pipermail/python-list/2008-January/472508.html" rel="nofollow">http://mail.python.org/pipermail/python-list/2008-January/472508.html</a></p>
http://stackoverflow.com/questions/430374/where-to-get-started-with-apis/430397#4303970Answer by Rob Ottaway for Where to get started with APIsRob Ottaway2009-01-10T02:10:41Z2009-01-10T02:10:41Z<p>Woah I've heard this before. You dont want to rush into learning APIs, you need to get aquainted with a nice little programming language first. Once you have a little bit of programming skill the mystery of API will be revealed. Maybe give Ruby or Python a look as I've seen many people get started using those.</p>
<p><a href="http://wiki.python.org/moin/BeginnersGuide" rel="nofollow">http://wiki.python.org/moin/BeginnersGuide</a></p>
<p>Oh and if you have a Mac or Linux based machine the best part is you probably already have Python installed!</p>
http://stackoverflow.com/questions/430346/why-doesnt-java-support-unsigned-ints/430361#4303611Answer by Rob Ottaway for Why doesn't Java support unsigned ints?Rob Ottaway2009-01-10T01:45:42Z2009-01-10T01:45:42Z<p>I've heard stories that they were to be included close to the orignal Java release. Oak was the precursor to Java, and in some spec documents there was mention of usigned values. Unfortunately these never made it into the Java language. As far as anyone has been able to figure out they just didn't get implemented, likely due to a time constraint.</p>
http://stackoverflow.com/questions/429907/eclipse-ant-and-custom-tasks/429965#4299650Answer by Rob Ottaway for Eclipse, ant and custom tasksRob Ottaway2009-01-09T22:22:07Z2009-01-09T22:22:07Z<p>You can have a separate ant build file for these tasks. Thats all you need.</p>
http://stackoverflow.com/questions/359472/how-can-i-verify-a-google-authentication-api-access-token/429926#4299261Answer by Rob Ottaway for How can I verify a Google authentication API access token?Rob Ottaway2009-01-09T22:08:27Z2009-01-09T22:08:27Z<p>Maybe you should be using Google's OpenId api, not OAuth? OAuth is for making requests to a specific vendors (Google in this case) web API. You shouldn't hijack Googles OAuth tokens for use on another site.</p>
<p>"...A token will be returned upon provision of a valid username+password or upon provision of a third-party token from any one of N verifiable services..."</p>
<p>Wait! you expect Google to tell you if a token from their OAuth based APIs belongs to a given account? Thats not very secure. I don't think your going to find what you are looking for.</p>
<p>Give OpenID a try. What you really want is to allow users to authenticate against your site using credentials from elsewhere. Thats OpenIDs job, not OAuth.</p>
http://stackoverflow.com/questions/429302/how-can-an-authentication-key-be-passed-to-a-restful-web-service/429859#4298590Answer by Rob Ottaway for How can an authentication key be passed to a restful web service?Rob Ottaway2009-01-09T21:42:28Z2009-01-09T21:42:28Z<p>If time isn't an issue implementing OAuth security may be useful. OAuth uses a public key, and also a secret. The mess is hashed (in most cases) and the server will use the public key + it's copy of the secret to do the same hashing and make sure its result matches the requests. </p>
<p>The benefit is you wouldn't need to use HTTPS or POST. Get* REST api methods should be using the HTTP GET method (I'm not sure if being RESTful is your goal, just thought I would point that out). I agree with Mr. Pang, use <a href="http://www.business.com/employees" rel="nofollow">http://www.business.com/employees</a>. The query string could contain the list of department ids.</p>
<p>For your case the service call wouldn't have the 'accessKey' argument, rather it would become the public key (I imagine) and be used in either the headers, query string, or as a POST param.</p>
<p>Some good info on OAuth: <a href="http://www.hueniverse.com/hueniverse/" rel="nofollow">http://www.hueniverse.com/hueniverse/</a></p>
http://stackoverflow.com/questions/7551/best-practices-for-securing-a-rest-api-web-service/429803#4298032Answer by Rob Ottaway for Best Practices for securing a REST API / web serviceRob Ottaway2009-01-09T21:25:56Z2009-01-09T21:25:56Z<p>OAuth FTW! I've used it a few times, and also used some other methods (BASIC/DIGEST). I wholeheartedly suggest you use OAuth. The following link is the best tut I've seen on using OAuth:</p>
<p><a href="http://www.hueniverse.com/hueniverse/" rel="nofollow">http://www.hueniverse.com/hueniverse/</a></p>
<p>Also... you may want to look at the NetFlix API documentation.</p>
<p><a href="http://developer.netflix.com/docs" rel="nofollow">http://developer.netflix.com/docs</a></p>
<p>You should be able to use their services to get an idea of how it works pretty quickly.</p>
http://stackoverflow.com/questions/386973/web-service-authentication-using-openid/429774#4297742Answer by Rob Ottaway for Web Service Authentication using OpenIDRob Ottaway2009-01-09T21:17:28Z2009-01-09T21:17:28Z<p>I agree completely that what you want is OAuth; I say that having worked on both OAuth and OpenID systems. I've also been in your boat a few times, having to develop a REST web service api.</p>
<p>For a really good ideas on OAuth, and why it is what you want see these attached article:</p>
<p>These are must read, there are four parts read them all:
<a href="http://www.hueniverse.com/hueniverse/" rel="nofollow">http://www.hueniverse.com/hueniverse/</a></p>
<p>the RFC, read after reading above as it can be a little daunting for most:
<a href="http://oauth.net/core/1.0" rel="nofollow">http://oauth.net/core/1.0</a></p>
<p>And then finally maybe some code. I have a couple projects hosted that are using Java/Groovy to do OAuth. One is a plain old OAuth client, the other is a client for specific interactions with NetFlix.
<a href="http://www.blueleftistconstructor.com/projects/" rel="nofollow">http://www.blueleftistconstructor.com/projects/</a></p>
<p>If you are relatively inexperienced with REST (you haven't built a full scale web api yet) I would recommend that you buy (or better get your boss to) "RESTful Web Services" by Richardson & Ruby. It is an O'Reilly book. I can say that it is one of their better books to debut in the past few years.</p>
<p>It might also help to look at some RESTful OAuth based APIs. The NetFlix API is a perfect example: <a href="http://developer.netflix.com/docs" rel="nofollow">http://developer.netflix.com/docs</a></p>
<p>Good luck and happy coding!</p>
<p>Rob Ottaway</p>
http://stackoverflow.com/questions/872721/is-it-worthwhile-to-author-programming-books/872746#872746Comment by Rob Ottaway on Is it worthwhile to author programming books?Rob Ottaway2009-05-16T17:30:56Z2009-05-16T17:30:56ZBeing a part of the whole tech book industry, I can say right now is not the best time for 'tech book' authors. Book sales have more than tapered off in the past couple years. That's not to say there haven't been bright spots, see "Beautiful Code" did well for the margins it required. See <a href="http://oreilly.com/store/bestsellers.html" rel="nofollow">oreilly.com/store/bestsellers.html</a> for the kind of books that a tried and true tech book publisher is making $$$ off of these days.http://stackoverflow.com/questions/872721/is-it-worthwhile-to-author-programming-books/872759#872759Comment by Rob Ottaway on Is it worthwhile to author programming books?Rob Ottaway2009-05-16T17:26:16Z2009-05-16T17:26:16ZThese are spot on. I hardly spent a dime on a programming related book in 4-5 years. Last purchase was Steve Skiena's "The Algorithm Design Manual" which fits snugly in the "timeless reference" category. IMHO books can quickly become outdated, as I can atest to having a pile in the garage of about 20 ready to go to recycler/CL. Take into consideration also that projects like Pylons, Spring, SQLAlchemy, Hibernate and many more are tops for software projects these days and have excellent docs.