News    College    Portofolio    Tutorial    Hobby

| Subcribe via RSS

Tutorial    


Protégé – Ontology Builder

July 30th, 2008 | No Comments | Posted in Protégé, Tutorial

Protégé is a free, open source ontology editor and knowledge-base framework.

The Protégé platform supports two main ways of modeling ontologies via the Protégé-Frames and Protégé-OWL editors. Protégé ontologies can be exported into a variety of formats including RDF(S), OWL, and XML Schema. (more)

Protégé is based on Java, is extensible, and provides a plug-and-play environment that makes it a flexible base for rapid prototyping and application development. (more)
Protégé is supported by a strong community of developers and academic, government and corporate users, who are using Protégé for knowledge solutions in areas as diverse as biomedicine, intelligence gathering, and corporate modeling.

Download : protege.stanford.edu

Tutorial : ProtegeOWLTutorial.pdf and for v4 ProtegeOWLTutorial-p4.0.pdf

HaTTaWebID Random Testimonial Script

June 7th, 2008 | 5 Comments | Posted in Tutorial, php

Di kanan atas web HaTTaWebID ada Random Testimonial… Coba di refresh aja.. nanti random.. script PHP nya sederhana banget… kalo yang pengen masang juga…

<?php
$quotes = array(
"Random testimonial 1",
"Random testimonial 2",
"Random testimonial 3"
);
echo $quotes[rand(0, count($quotes) - 1)];
?>

Cara make : tinggal GANTI tulisan Random testimonial 1 dst. dengan testimonial yang ada… kalo lebih dari tiga tinggal ditambahin aja… seperti ini…
More »