api

Web API to make phone calls

Hello, is there an API to make phone calls an have a phone conversation in the web (maybe flash based?), like skype but without having to install software? thanks ...

Auto-Fetch All YouTube Videos From Account

Hi Everyone: I have been looking through the YouTube API for awhile now, but am not finding a simple way to auto-fetch all videos from a certain account and then display them on the screen. I am planning on using PHP in order to accomplish this, but otherwise I am open to suggestions of how to accomplish this. Thanks for any help. ...

Read XML from Youtube Videos

Hello how i can read XML from youtube $xml = new XMLReader(); $xml->open('http://gdata.youtube.com/feeds/api/videos/1uwOL4rB-go'); $r = array(); while($xml->read()) { $r[] = array($xml->name => $xml->value); } i got this far but it doesnt get the necesary info i need like video duration.... ...

.NET API for Google Talk?

I am looking for a .NET API for Google-Talk (talk/voice/video/file). Any resources? ...

Cross platform Networking API

I was wondering if there was an API to do networking that would work on Windows, Mac and Linux. I would like to make a card game that 2 people can play through a tcp connection. Thanks ...

How do these guys make Flash access the clipboard and file IO?

Adobe Flash has some interesting and, at times, frustrating security rules that prevent lots of things from happening, like writing files to disk. Swf Studio and Flash Jester allow Flash to "break out" of the security sandbox that prevents file IO operations. How are these programs written? Is this something that I can do in any of the ...

how do i get a list of all of my current blog subscriptions and there current folders and labels programatically in google reader

is there a way to programatically get a list of all feeds and there current labels, folders from google reader. i am using c#. i see there are some listing for http get / put code but can't find any good parsers as well ...

does google translate api works on ajaxembedded texts?

i wonder if i can use google translate api to translate ajax embedded texts on my website? ...

is there an open id api?

is there an api for open id for using on your website? ...

What is a REST API

Possible Duplicate: What exactly is RESTful programming? What is a REST API? ...

How to I pass a table from lua into C++?

How would I pass a table of unknown length from lua into a bound C++ function? I want to be able to call the lua function like this: call_C_Func({1,1,2,3,5,8,13,21}) And copy the table contents into an array (preferably STL vector)? ...

Best tool for writing REST API documentation?

Hi all, I am in the process of writing up documentation for a REST API that I have developed. I am finding this to be tedious and the current way we are doing it just doesnt seem right. I am sure there is something out there which will help automate this process a little, and even provide features such as version control for the documen...

Acrobat Javascript Save & Exit Button

I have a writeable pdf form created in acrobat pro. Now, i added a button which has to change a fields value, save the pdf and close it. I decided to do this as following: var fieldX = this.getField("xxxxField"); fieldX.value = 1; app.execMenuItem("Save"); this.closeDoc(true); But this doesn't save the pdf. I don't want to have a ...

sealevel pressure and temperature calculation

i want to know if there is any online api for getting pressure and temperature of a location, if not, then i have height above sealevel (in meters and feet), how can i calculate that to get pressure and temperature of a location? ...

Embeddable forum software

I am in the planning stages of a specific subject matter community web site, and one feature I feel is required is that of member discussions. However, not in a typical forum style. For example, I don't want the members to have to navigate away from their own "user space" in order to discuss a topic. I think it is best described with an...

Any Google API in perl working with OAuth

Hello, I've looked at Net::Google, and 90% of the modules use AuthSub with a mandatory login/password. The right way for a web application to interact with Google applications on behalf of a customer is to use OAuth. That way, the authentication is done by Google, and the application does not know the user's password. This is supported b...

What is the benefit of using sqlite3_data_count() over sqlite3_column_count() in the SQLite C API?

After reading the docs, it seems the the function sqlite3_column_count does all the same, but doesn't have the restrictions that sqlite3_data_count has. Why would I ever want to use sqlite3_data_count over sqlite3_column_count? thanks! ...

Google Maps API not letting go of the mouse click

I'm using the Google maps API to place a map onto a web page, just like millions of other sites have done. However, once I click on the map (and let go), the map then acts if the mouse button is still being held and drags the map all over the page. The only way to get free of this drag action is to hit F5 and reload the page. I've spen...

Google maps v2 bounds change event

Hello all. I am using google maps v2 in my web application. I want to call database to fetch records when map bounds are changed due to zoom or drag. Until now I was using tilesloaded event handler to do it assuming the map bounds will change when all tiles are loaded (I want clarification on this assumption too). When I do zoom in/out...

How to prevent $.getScript from loading the same file?

I am trying to load a file.js dynamically with $.getScript. I have several select options to load different script on each click. I just want to call it once and if possible remove it from the dom on clicking another option, but firebug says loading the same script again and again on the next subsequent clicks. Having tried several solut...