|
Does anybody know of a real time sports scores/stats web service?
Started by CSharpAtl on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't think there is an official API for this information... .
If I had to do this, I'd probably consume and parse the Yahoo RSS feeds for score-related posts: http://sports.yahoo.com/top/rss
They are well-categorized and Yahoo's feeds are pretty reliable .
|
|
Hi Guys,
Has anybody here come across a good tutorial or a reference on VML?
Started by Crimson on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Kindness,
....
Lucas is right, the submission to the W3c is good too .
Microsoft's VML Reference is here.
How about The W3C's official tutorial? It get's really in-depth (no joke, it's 90.96 KB (not counting images)) and it can be your complete reference .
|
|
Can anybody explain the concept of pluggable adapter to me with good example?
Started by Prajwal Tuladhar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can read this article about adapter/pluggable pattern:
Table of content in this article:
* 1 Design Patterns * 2 Intent of Adapter * 3 Motivation * 4 Structure * 5 Applicability * 6 Consequences * 7 Implementation o 7.1 Known Uses and Sample Code ... .
|
Ask your Facebook Friends
|
Hi, I like to know heapoverflow error ? can anybody get me the code so that if i run it I should get heapoverflow error
Answer Snippets (Read the full thread at stackoverflow):
Public class J2000801 { public static void main(String[] args) { java.util.Vector exitVector... .
Throw new java.lang.OutOfMemoryError("Java heap space");
Going by my interpretation of your question:
throw new HeapOverflowError;
watch the exit vector ;) .. .
|
|
I can't find any documentation on this or any forum discussions. Has anybody at least gone through their testapp? I feel like there are errors in their code (deprecated from the most recent version of pymongo), but I've just started with pymongo and am...
Started by RackFeed on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
anybody used MongoDB with Django?
I'm working on a project that demonstrates how to use Django.
|
|
SIKULI seems to have an enormous amount of potential. Has anybody tried to use this as a tool for testing? Or would it be better suited for automating actions for users?
Started by prometheus on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
|
|
If you go to their website here: www.modxcms.com, you will see the WHAT, WHY, HOW slideshow. Can anybody tell me what they are using to do that?
Started by RD on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
From their pushup.js (indented for clarity):
$('#whatwhyhow-questions').localScroll({ target....
Seems like jQuery LocalScroll.
They are using a customized js file named pushup.js built on top of jQuery and there you can find the
animate function being used .
|
|
Hello, an just anybody tell me how to make finger print recognition system? In which language it is possible? Is it possible with C,C++ or Java?
Started by Supereme on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Its possible ....
You probably need to be able to identify some markers in fingerprint and then match them with some tolerance .
This is more of a algorithmic problem.
This has nothing to do with a programming language, all of the above will do the trick .
|
|
I want to install Oracle 11g for 64bit on a Ubuntu 8.04 64bit server.Can anybody help in installing the oracle 11g on ubuntu from the scratch(pre-installation to post-installation)?
Started by Charly on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at serverfault):
Last time I installed Oracle, it depended on some....
Maybe you can take look here: www.pythian.com/news/968/installing-oracle-11g-on-ubuntu-804-lts-hardy-heron or www.pythian.com/news/1355/installing-oracle-11gr1-on-ubuntu-810-intrepid-ibex
As a note.. .
|
|
Hi I am studying the HTTP methods. I read that GET request can be bookmarked and POST request can not be bookmarked. Can anybody explain this with an example?
Thanks
Answer Snippets (Read the full thread at stackoverflow):
If ....
This will often mean that the web server doesn't know what to do with the request, since it was expecting some form parameters .
An HTTP POST can be bookmarked, but since a bookmark only consists of the URL, all of the form parameters will be lost .
|