I'm attempting to improve the usability of a client's SharePoint deployment via JQuery; and am hitting a brick wall when trying to find any sort of documentation of what's happening in core.js (aside from painfully digging through and trying to parse any sort of meaning out of it --all 250kb of it!!!!--) Anyone have any pointers, or doc...
I would like to know if there is any news feeds/api that can be used for coding/datamining.
Skygrid for example gives live news feeds and if the news is good or bad, but it's all in flash and they don't seems to provide any rss other than their twitter.
...
Using the API call notifications.sendEmail you can send an email to a application user that has authorised your app and granted the "email" extended permission.
Now lets pretend that I have 10 users I need to send an email to. 5 have given me this permission and 5 haven't. Is it necessary that I query FB to see if each user has given m...
Does anybody know if the google search api support search for google profiles. I looked through the google code pages but could not find it. I only found an api for getting the profile data when you know the username and got permission, but could not find search option
...
Hello,
Would someone be able to point me to the C++ API's that I can use to display a list of processes and the user name in Windows?
My current code uses the CreateToolhelp32Snapshot Function which shows all the processes running for all users, but I do not know what API's to use to retreieve the user name so I can filter it by user. ...
I've got a class like this:
package org.jjerms.thing;
interface IThing {
void doSomething();
}
final class Thing implements IThing {
/**
* This Javadoc pretends (to users outside the package)
* that doSomething originates here.
*/
public void doSomething() {
// some code...
}
}
And when I l...
Hi, I have been wrestling with Amazon's CloudWatch API with limited success. Does anyone know of any good resources (other than amazon's api docs) for using the APIs. I have tried to run them using the PHP library for CloudWatch but get nothing but error codes. I am configuring the GetMetricStatisticsSample.php file as follows:
$request...
We have a wireless controller that prompts client machines for a username and pass using radius, the wireless controller than relays that request to us, where we need to then send that request to a third party unencrypted.
is it possible to emulate a radius server in .net is there an api.
is there a radius encryption algo short of clea...
I wrote this function to get the unread count of google reader items.
function GetUnread($sid)
{
$url = "http://www.google.com/reader/api/0/unread-count?all=true&output=xml";
$msg = urldecode($msg);
$msg = stripslashes($msg);
$msg = urlencode($msg);
$url = $url . $msg;
$purl = parse_url($url);
$uri = $pu...
I'm getting text from an API and it's something like following:
text = 'replied to @james and he was visiting this http://some-site.com/another/something/../ so what you think about it';
How can I parse this text and make links as html links and @james as html links also, but with their own href values.
Does anyone know any function ...
In Google Maps API v2, if I wanted to remove all the map markers, I could simply do:
map.clearOverlays();
How do I do this in Google Maps API v3?
Looking at the Reference API, it's unclear to me.
...
I know that user agent can be faked easily when connecting through HTTP. I want to ensure access to my SOAP API only from iPhone devices. We don't know how many users will be using this when it is released but it might be a lot and we can't handle traffic from outside of the devices. Any other means to prevent this?
...
Hello,
I am currently using the Windows 7 API Code pack for an application I am coding in C#.
Currently, I understand how to draw part of the Window region or a control into the thumbnail preview:
TaskbarManager.Instance.TabbedThumbnail.SetThumbnailClip((new WindowInteropHelper(this)).Handle, new System.Drawing.Rectangle((int)v.X, (in...
Technically, I know how to download pages, and use parsers to parse them.
However, I'd like to know if there is an API or a simple XML format that I can use to parse their results.
...
I want to add San Storage support in my application. Is there a standard protocol that I can use to communicate with all san storage devices like EMC Centera, Hitachi, NetApp or do I have to use library specific to each vendor?
In a nutshell i'd like to save data on device and read it back. I know these devices can be mounted as drives ...
I was wondering if there were equivalents of the above mentioned functions for Linux (X11) - I can't seem to find them.
...
Is there a way to request Kuler themes using AJAX, and then storing the themes in an array or something? I've got the API key and verified it's working. But I can't seem to get it working with AJAX... :\
$.ajax({
url:"http://kuler-api.adobe.com/rss/search.cfm",
data: {"searchQuery":"blue", "key":"Wh47EV3R7HEK3YI5"},
success: funct...
Hi all,
I've been implementing Facebook Connect into a site and am using both the PHP API, to allow me to automatically post data to a user's wall, as well as the JS API, for manual posting, permissions dialogs, etc. When the user uses the manual method it works 100%...the popups are displayed correctly, and the data gets posted to thei...
I have a restaurant locater web application that mashes up the location of restaurants to a Google Maps.
I use JQuery sliders to limit the amount of restaurant to show on the map by having Search filter such as: price, type of food, locale.
These JQuery sliders call back via AJAX to an API I created to update the map without the web pa...
There is a Amazon Wish List Widget available here: https://widgets.amazon.com/Amazon-Wishlist-Widget/
The problem is that I have to specify the email address or user name in advance before grabbing the widget code.
I am building a CRM application wherein I store the names and email addresses of contacts. I want to show the wish list wi...