I've been researching a little and I found some rsync algorithm implementations written in Java but it seems all the projects died some time ago.
What is a good Java library implementing rsync? If there's not one: Is the best way for use rsync to invoke the program from my Java app?
...
Is there a gem/plugin for defining an API in Rails?
I know you can have "RESTful routes" and render to different formats in controller actions, but I'm looking for a more all-around solution, including but not limited to the following:
I would like to declare which models to expose (arbitrary resources could also be declared, but conve...
you guys know how google code has made a ajax api for certain javascript plugins/libraries? Well, is there one for the lightbox plugin? I want to use it on my website, but I can only link to it (its not on my local server,) but I can't find a link that only gives my the javascript code and not the entire page's code. any help would be ve...
I'm trying to export 2 values from every single item from the combo box field.
I have found two methods to insert items into a combo box:
1) insertItemAt
http://www.verypdf.com/document/acrobat-forms-javascript/pg_0048.htm
2) setItems
http://livedocs.adobe.com/acrobat_sdk/9/Acrobat9_HTMLHelp/wwhelp/wwhimpl/common/html/wwhelp.htm?co...
Hello,
I've recently read a lot about software (mostly scientific/math and encryption related) that moves part of their calculation onto the GPU which causes a 100-1000 (!) fold increase in speed for supported operations.
Is there a library, API or other way to run something on the GPU via C#? I'm thinking of simple Pi calculation. I h...
Hello!
Sorry for the stupid question.
I'm very sure, that the Java API provides a class which wraps a reference,
and provides a getter and a setter to it.
class SomeWrapperClass<T> {
private T obj;
public T get(){ return obj; }
public void set(T obj){ this.obj=obj; }
}
Am I right? Is there something like this in the Ja...
Hi Guys,
I’m developing a website which allows users to join with GFC (Google Friend Connect).
But, if users want, they can maintain
their personal profile on my website (like social networking sites)
My question is “How I can synchronize GFC user with my website database?”
that is, "how I can make an entry of GFC user into my website ...
Hey guys,
I am wondering how I can go about using the Zimbra API. I have looked everywhere for an API, and I have found no good references/tutorials about it.
I have a web application that I have developed in Ruby on Rails that I would like to communicate to Zimbra in order to fetch the calendar items to put in my own Calendar interf...
I'm wondering why a portlet would need to change the character encoding? If it's included in a page, the page should already have a character encoding. I don't see what a browser is supposed to do when a portlet uses a different one.
Follow-up question: why does the portlet 2.0 api contradict itself when it comes to character encoding? ...
Hey folks,
I am working on a REST API for a web application that up until now we have developed internally for a couple of companion applications. Now that we are looking at opening up to outside developers we want to add tokens to the API in order to help identify who is making requests and in general to help manage it's use. At this...
Using the CampaignMonitor API, I am able to subscribe, resubscribe and unsubscribe successfully, but I can't figure out how check if an email address is active, or unsubscribed. The end goal, is basically if subscribed, echo an unsubscribe link, if not subscribed echo a subscribe link.
After digging around CMBase it appears that subscr...
Hello,
I'm looking to get the Build Number or Build Name of what Builds a particular ChangeSetID will trigger. I see there's a TfsWarehouse.dbo.[Build Changeset] table, but the TfsWarehouse DB is only populated every so often, I need this information after the TFS CheckIn Alert is fires. I've created a Check In Service that creates Cod...
Hi all,
My idea is to connect to LinkedIn through the API and work on the public data. My area of concern is where to find Linkedin API and how to use it. I have search a lot but landed no where.
Please help me in this regard.
...
If we want to show youtube videos using the player API on our site, we can do so no problem. In some cases it is only part of a clip we want to play. In the google terms of service for the youtube API they state that it is prohibited to:
"8. separate, isolate, or modify the audio or video components of any YouTube audiovisual content ma...
Our company keeps debating on whether we should be using custom API DLLs or creating a web service farm to have our programs to communicate data between themselves. To me web services make the most sense in regards to compatibility and flexibility of upgrading, but I have heard some good reasons to use DLLs as well.
Is there an emerging...
Hello all,
I make use of a great class made by Jaisen: http://github.com/jmathai/twitter-async/tree/master. Recently twitter has been up and down and I am sure it will continue to be the same in the future so I am trying to cut down on my dependency on twitter being actually working.
The following is what I have in my header.php and it...
I'm creating a website with rails that sells a virtual service, and therefore don't really want to validate the billing address for credit card transactions.
From what I have read on paypal (page 14 of this pdf) and other resources i have looked at, this should be totally possible. However, when I submit a purchase or an authorize re...
Just curious to see people's opinions:
Has anyone thought about implementing the Flash player API in Java? Controlling sprites, graphics, media, etc is so easy to do in Flash, it seems like it would only make sense to have a similar API in Java.
...
Python's doctest module has a section for advanced API. Has anyone found a particular use for this API?
A quick look at the API structure (from the docs):
list of:
+------+ +---------+
|module| --DocTestFinder-> | DocTest | --DocTestRunner-> results
+------+ | ^ +---------+ ...
I'm building an API for access to my underlying models, and I would like my users to be able to do some fancy things (like filter on columns with __ operators). The only problem is sometimes these can take a long time.
How can I limit a fetch to a certain amount of resources? Time, cpu-cycles, memory, etc.
My current code (if it help...