Ontology about prehistoric archaeology sites
Dr. Roxana María Danger Mercaderes wrote a PhD thesis titled loosely "Extraction and analysis of information from a web semantic perspective". Unfortunately my espanol is extremely poor. However, I need to read the thesis so I translated via Google but it dies on page 41. Essentially she comes up with an ontology for prehistoric archaeological sites.
If the thesis is sound; which means I could finish reading it and this ontology is practical I'd like to use this as the basis for a conversion into an actual sparql-endpoint/content type that I could readily apply in a real world context. If anyone could help me translate this ontology into an english translation that would be very helpful. I guess I could spend the time doing it myself and brushing up my Spanish; that would be much slower mind you.
[1]: http://krono.act.uji.es/PhDs/RoxPhD/view
[2]: http://krono.act.uji.es/Links/ontologies/Archaeology.zip/view
My Calendar
Stuff i’m reading
- NYPL Opens First Green Branch
- Bronx 5 Train Express Service Halted For Repairs
- Bloomberg: No Sympathy For Frequently-Towed Detectives
- The BBC
- Pycurl on OSX
Archives
External Links
Login
Cumulus
"christopher warner" "content management" "content management systems" "exiftool" "nymag" "ploneconf 2008" "christopher warner" "ploneconf 2008" "plone" "christopher warner" "ploneconf 2008" "plone" "christopher warner" "nymedia" New York Media "python 2.5" "zope" "zope python 2.5" 2008 election law apple can i wear an obama tshirt to vote chimp cross-site cwarner cwarner@kernelcode.com Daniel J. Bernstein djb greatness funny dom dumb Ekiga election law FUBAR fucking dumb google LLC" "nymag.com" mugshot nymedia obama object databases opensolaris osx plone python SOP stupid retarded sun microsystems tshirt varnish vote vote 2008 vote2008 world plone day 2008
WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.
Pycurl on OSX
If you're trying to install pycurl 7.19.0 on OSX specifically (Darwin Kernel Version 10.2.0: Tue Nov 3 10:37:10 PST 2009; root:xnu-1486.2.11~1/RELEASE_I386 i386) and are wondering why exactly it is failing. It's because setup calls curl-config which calls the static version of libcurl. Part of the problem here is that Apple's build of curl still references libcurl.a but they have seemingly removed the static library from 10.6.2. It's not stubbed or replaced by anything so the install fails. Another part of the problem is that pycurl is looking for a static library. I'm not going to get into a discussion on why using static libraries are nearly useless in most cases (even in embedded programming); except to say, static libraries are nearly useless in most nearly all cases; unless you know for sure you'll never, ever, ever, ever, ever until human kind has ended be upgrading the library. If you have that sort of vision and insight; i'd like for you to pick out some lotto numbers for me.
To fix replace lines 99-101 in setup.py with the following: libs = split_quoted(os.popen("'%s' --libs" % CURL_CONFIG).read())
I've reported to both Apple and the Pycurl mailing list.
[1]: http://pycurl.sourceforge.net/
[2]: http://people.redhat.com/drepper/no_static_linking.html