If you download the netbeans plugin for clojure... make sure you download this as well...otherwise your project REPL will not start up.
http://code.google.com/p/clojure-contrib/downloads/list
Friday, January 29, 2010
Sunday, January 24, 2010
refactoring open source semweb api /toolkit(s)
Been working on some open source semweb tools / api toolkits.
http://code.google.com/u/@VxhURFVUDhhHVgh%2F/
A follow up from this post.....
Sunday, August 16, 2009
open source semweb api /toolkit(s)
In the process of consoldating these efforts into one project....
little turtle: A OWL-S model creation tool based on the jena api
bainbridge: Wrappers around ARQ to help process SPARQL Queries
casimir pulaski: convience wrappers for the jena api
bette graham: RDF based project configuration API
charles brooks: an RDF modeling tool
ziba: Execution of linked open data bound to java classes
three ton: api for java reflection and db schema inspection
Will follow up with more info soon....
http://code.google.com/u/@VxhURFVUDhhHVgh%2F/
A follow up from this post.....
Sunday, August 16, 2009
open source semweb api /toolkit(s)
In the process of consoldating these efforts into one project....
little turtle: A OWL-S model creation tool based on the jena api
bainbridge: Wrappers around ARQ to help process SPARQL Queries
casimir pulaski: convience wrappers for the jena api
bette graham: RDF based project configuration API
charles brooks: an RDF modeling tool
ziba: Execution of linked open data bound to java classes
three ton: api for java reflection and db schema inspection
Will follow up with more info soon....
Thursday, January 14, 2010
world's shortest N3 tutorial
Here's all you need to know to start using N3 right now
1). Allows RDF to be shown in a readable, natural, format.
2). Reduces file sizes.
3). You Can learn basic syntax by remembering a few rules.
4). Basic syntax is enough for most situations.
What are the Rules I need to know you ask?
1). Resources must end with a period
2). Use prefixes as much as possible
3). End each triple with a semi-colon
4). [] is short for bnode or anonomous
5). use “a” instead of rdf:type
and finally, an example to consider...
@prefix xsd: .
@prefix : .
[] a :SomeRDFClass ;
:xsdVal xsd:String ;
:hasLiteral “Some Value" .
1). Allows RDF to be shown in a readable, natural, format.
2). Reduces file sizes.
3). You Can learn basic syntax by remembering a few rules.
4). Basic syntax is enough for most situations.
What are the Rules I need to know you ask?
1). Resources must end with a period
2). Use prefixes as much as possible
3). End each triple with a semi-colon
4). [] is short for bnode or anonomous
5). use “a” instead of rdf:type
and finally, an example to consider...
@prefix xsd:
@prefix :
[] a :SomeRDFClass ;
:xsdVal xsd:String ;
:hasLiteral “Some Value" .
Just was invited to speak at april 8,9
http://www.phillyemergingtech.com/
So look for more posts in the near future regarding the status of some of my open source projects as well as ideas for the presentation. If anyone has a topic they would like to hear about, let me know
http://www.phillyemergingtech.com/
So look for more posts in the near future regarding the status of some of my open source projects as well as ideas for the presentation. If anyone has a topic they would like to hear about, let me know
Subscribe to:
Posts (Atom)