8
votes
3answers
176 views
Reverse wikipedia geotagging lookup
Wikipedia is geotagging a lot of its articles. (Look in the top right corner of the page.)
Is there any API for querying all geotagged pages within a specified radius of a geographical position?
…
8
votes
6answers
2k views
Fetch a Wikipedia article with Python
I try to fetch a Wikipedia article with Phython's urllib:
f = urllib.urlopen("http://en.wikipedia.org/w/index.php?title=Albert_Einstein&printable=yes")
s = f.read()
f.close()
However …
6
votes
1answer
221 views
Is there an FFT that uses a logarithmic division of frequency?
Wikipedia's Wavelet article contains this text:
The discrete wavelet transform is also less computationally complex, taking O(N) time as compared to O(N log N) for the fast Fourier transform. This …
5
votes
3answers
427 views
Retrieve music artist data from wikipedia?
When it comes to classifying music by genre, I've found wikipedia to have more interesting genre information than most other data sources.
I seem to remember a database that collected this sort of …
4
votes
2answers
1k views
Is there a Wikipedia API?
On my Wikipedia user page, I run a Wikipedia script that displays my statistics (number of pages edited, number of new pages, monthly activity etc.).
I'd like to put this info on my blog.
Can …
3
votes
9answers
213 views
Get first lines of Wikipedia Article
I got a Wikipedia-Article and I want to fetch the first z lines (or the first x chars, or the first y words, doesn't matter) from the article.
The problem: I can get either the source Wiki-Text (via …
3
votes
6answers
182 views
what is a programming language?
Hi
Wikipedia says:
A programming language is a machine-readable artificial language designed to express computations that can be performed by a machine, particularly a computer. Programming …
3
votes
4answers
520 views
Why can’t I fetch wikipedia pages with LWP::Simple?
I'm trying to fetch Wikipedia pages using LWP::Simple, but they're not coming back. This code:
#!/usr/bin/perl
use strict;
use LWP::Simple;
print get("http://en.wikipedia.org/wiki/Stack_overflow");
…
2
votes
2answers
1k views
c# WebRequest to connect to wikipedia API
Hey,
This may be a pathetically simple problem but I cannot seem to format the post webrequest/response to get data from the wikipedia api. I have posted my code below if anyone can help me see my …
2
votes
2answers
135 views
Confirming a user is the Wikipedia user they say they are?
Quite hard to describe, but if a user on my site said they were the Wikipedia user "example" what would be the best way of confirming they are indeed that Wikipedia user & not an imposter?
Hope …
2
votes
2answers
101 views
Wikilinks - turn the text [[a]] into an internal link
I need to implement something similar to wikilinks on my site. The user is entering plain text and will enter [[asdf]] wherever there is an internal link. Only the first five examples are really …
2
votes
3answers
415 views
Does using Wikipedia content harm a page/sites SEO rankings?
Wikipedia allows you to reproduce its content.
If you want to use Wikipedia materials in your own books/articles/websites or other publications, you can do so -- but only in compliance with the GFDL.
…
1
vote
1answer
30 views
Blacklist IP database
Hi,
Is there an open database of blacklisted IP for the Web? With a lot of public web proxy you know... such the blacklist used by the Global blocking of Wikipedia.
Thanks in advance.
1
vote
3answers
185 views
How does Wikipedia avoid duplicate entries?
How can websites as big as Wikipedia sort duplicated entries out?
I need to know the exact procedure from the moment that user creates the duplicate entry and so on. If you don't know it but you know …
1
vote
2answers
46 views
Are partially updated values when multithreading still a concern on modern CPUs?
From the Wikipedia article on Read-Copy-Update:
The reason that it is safe to run the removal phase concurrently with readers is the semantics of modern CPUs guarantee that readers will see either …
