Any d/l-able list of given names and their meanings?

Hi Folks

By googling I found many sites, but they all require you to click on a long list of links to step through the alphabet, so I'm thinking: Ask first, and as a last resort write a scraper.

4 Comments

This has names and their origins, but not their meanings...
http://www.lexique.org/public/Prenoms100.zip

Also, try playing around with http://dbpedia.org/sparql. The following query seems to give pretty good results...

SELECT $name $abstract
WHERE {
  $r a yago:FirstName106337307 .
  $r dbpprop:name $name .
  $r dbpedia-owl:abstract $abstract .
  FILTER( lang($abstract) = "en" )
}
LIMIT 100

Perhaps you meant $thanks x $many :)

Leave a comment

About Ron Savage

user-pic I try to write all code in Perl, but find I end up writing in bash, CSS, HTML, JS, and SQL, and doing database design, just to get anything done...