₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,274 members, 8,449,509 topics. Date: Tuesday, 21 July 2026 at 10:01 PM

Toggle theme

Mj's Posts

Nairaland ForumMj's ProfileMj's Posts

1 2 3 4 5 6 7 8 ... 17 18 19 20 21 22 23 24 25 (of 28 pages)

ProgrammingRe: Urgent Help On Sparql Query Ontology by mj(op): 3:33pm On Jun 18, 2012
the code i posted is working is just that i need to add the synonyms to each patient which should not be the case, maybe im missing something in my ontology i dnt know. take Kobojunkie as a doctor, you called disease of the brain Brain_Neoplasm, another doctor calls it Brain_Tumor, you keep records in the hospital database using Brain_Neoplasm, another doctor uses Brain_Tumor, you have no idea there is another name for Brain_Neoplasm, you came to the system and type Brain_Neoplasm (Looking for patients with Brain Neoplasm) but the result is not conclusive since Brain_Neoplasm is synonym to Brain_Tumor. Using Ontology to solve this problem. the aim is for you to look for patients with Brain_Tumor but patients with Brain_Neoplasm comes up as well without you typing anything on Brain_Neoplasm ( The system checks for patients with the keyword you type and then check for its synonyms and uses the synonyms to check for patients having that synonym disease. I hope this make sense more. This project means alot to me, its my final year project, I have less than a week to submit. Thanks.
ProgrammingRe: Urgent Help On Sparql Query Ontology by mj(op): 2:45pm On Jun 18, 2012
yes, thats what im trying to do, but the user supplies me jst a keyword, i have to check for records on that keyword and also check for the synonyms automatically, this is the union select statement i did use for it, its not showing the results of the Synonyms (Brain_Neoplasm), is jst showing results of patients with Brain_Tumor only, if i add the synonyms to the patient record it works, but that should not be the case, i cant be adding the disease and their synonyms to each patient. I know i'm missing something.Thanks.
PREFIX table: <http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#>
SELECT ?FullName ?DOB ?sex
WHERE {
{
?x table:FullName ?FullName;
table:DOB ?DOB;
table:sex ?sex;
table:Disease table:Brain_Tumor.
}
UNION
{
?x table:FullName ?FullName;
table:DOB ?DOB;
table:sex ?sex;
table:Synonyms table:Brain_Tumor.
}
}
ProgrammingRe: Urgent Help On Sparql Query Ontology by mj(op): 2:25pm On Jun 18, 2012
I really do appreciate ur response, d idea of the ontology is to be able to find records that really do not depend on the exact match of the keyword you type, for instance I might type brain_tumor, although no patient with record of brain_tumor but I'm having results since there are patients with brain_neoplasm based on d fact that I have related brain_tumor with brain_neoplasm on d ontology as synonyms...I hope this helps. Thanks.
ProgrammingRe: Urgent Help On Sparql Query Ontology by mj(op): 7:52am On Jun 18, 2012
the filter reg is use for searching for string, and its not working, im trying to query semantically here, pls look at it again, im also wrkin on it as well. thanks
ProgrammingRe: Urgent Help On Sparql Query Ontology by mj(op): 9:31pm On Jun 17, 2012
Thanks Kobojunkie, I have modified the ontology, you will now see <Synonyms> on each disease, this is my select statement for patient with Brain_Neoplasm, but its not selecting patients with Brain Tumor, how can I make it select patients with Brain_Tumor since Brain_Tumor is synonym to Brain_Neoplasm as stated in my ontology. Thanks.
PREFIX table: <http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#>
SELECT ?FullName ?DOB ?sex
WHERE {

?x table:FullName ?FullName;
table:DOB ?DOB;
table:sex ?sex;
table:Disease table:Brain_Neoplasm.


}
ProgrammingRe: Urgent Help On Sparql Query Ontology by mj(op): 3:31am On Jun 17, 2012
thanks for your response, this is my ontology done on protege 4.2, I defined Brain_Neoplasm using Synonyms Brain_Tumor, etc, i have been on this for a while now, i'm checking on the link you sent though. pls helpppppp, pls.
    </owl:NamedIndividual>
<?xml version="1.0"?>


<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY Diagnosis "http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#" >
]>


<rdf:RDF xmlns="http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#"
xml:base="http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:Diagnosis="http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<owl:Ontology rdf:about="http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis"/>



<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->




<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->




<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#DOB -->

<owl:ObjectProperty rdf:about="&Diagnosis;DOB"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Disease -->

<owl:ObjectProperty rdf:about="&Diagnosis;Disease">
<rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
</owl:ObjectProperty>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#DiseaseN -->

<owl:ObjectProperty rdf:about="&Diagnosis;DiseaseN"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#GroupName -->

<owl:ObjectProperty rdf:about="&Diagnosis;GroupName"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Synonyms -->

<owl:ObjectProperty rdf:about="&Diagnosis;Synonyms"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#patient -->

<owl:ObjectProperty rdf:about="&Diagnosis;patient">
<rdfs:subPropertyOf rdf:resource="&Diagnosis;patient"/>
</owl:ObjectProperty>



<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->




<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Caused -->

<owl:DatatypeProperty rdf:about="&Diagnosis;Caused"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#DOB -->

<owl:DatatypeProperty rdf:about="&Diagnosis;DOB"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#DiseaseName -->

<owl:DatatypeProperty rdf:about="&Diagnosis;DiseaseName">
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
</owl:DatatypeProperty>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Doctor -->

<owl:DatatypeProperty rdf:about="&Diagnosis;Doctor"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#FullName -->

<owl:DatatypeProperty rdf:about="&Diagnosis;FullName"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#GroupValue -->

<owl:DatatypeProperty rdf:about="&Diagnosis;GroupValue"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#sex -->

<owl:DatatypeProperty rdf:about="&Diagnosis;sex"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#url -->

<owl:DatatypeProperty rdf:about="&Diagnosis;url"/>



<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->




<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Disease -->

<owl:Class rdf:about="&Diagnosis;Disease"/>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Patients -->

<owl:Class rdf:about="&Diagnosis;Patients"/>



<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Individuals
//
///////////////////////////////////////////////////////////////////////////////////////
-->




<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Aderenle -->

<owl:NamedIndividual rdf:about="&Diagnosis;Aderenle">
<rdf:type rdf:resource="&Diagnosis;Patients"/>
<DOB rdf:datatype="&xsd;string">22/04/1993</DOB>
<FullName rdf:datatype="&xsd;string">Adegboyega Aderenle</FullName>
<sex rdf:datatype="&xsd;string">Female</sex>
<Disease rdf:resource="&Diagnosis;Brain_Neoplasm"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Ayotunde -->

<owl:NamedIndividual rdf:about="&Diagnosis;Ayotunde">
<rdf:type rdf:resource="&Diagnosis;Patients"/>
<Disease rdf:resource="&Diagnosis;Pineoblastoma"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Balogun -->

<owl:NamedIndividual rdf:about="&Diagnosis;Balogun">
<rdf:type rdf:resource="&Diagnosis;Patients"/>
<FullName rdf:datatype="&xsd;string">Abdulateef Oluwagbenga</FullName>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Brain_Neoplasm -->

<owl:NamedIndividual rdf:about="&Diagnosis;Brain_Neoplasm">
<rdf:type rdf:resource="&Diagnosis;Disease"/>
<DiseaseName rdf:datatype="&xsd;string">Brain Neoplasm</DiseaseName>
<Doctor rdf:datatype="&xsd;string">Mrs Mabayoje</Doctor>
<Caused rdf:datatype="&xsd;string">Virus</Caused>
<url rdf:datatype="&xsd;string">http://www.brainneoplasm.com</url>
<patient rdf:resource="&Diagnosis;Aderenle"/>
<Synonyms rdf:resource="&Diagnosis;Brain_Tumor"/>
<owl:sameAs rdf:resource="&Diagnosis;Brain_Tumor"/>
<patient rdf:resource="&Diagnosis;Susan"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Brain_Tumor -->

<owl:NamedIndividual rdf:about="&Diagnosis;Brain_Tumor">
<rdf:type rdf:resource="&Diagnosis;Disease"/>
<Caused rdf:datatype="&xsd;string">Bacteria</Caused>
<DiseaseName rdf:datatype="&xsd;string">Brain Tumor</DiseaseName>
<Doctor rdf:datatype="&xsd;string">Mr. Amos Bajeh</Doctor>
<url rdf:datatype="&xsd;string">http://www.braintumor.com</url>
<Synonyms rdf:resource="&Diagnosis;Brain_Neoplasm"/>
<patient rdf:resource="&Diagnosis;Olaniyi"/>
<patient rdf:resource="&Diagnosis;Rashidat"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Joy -->

<owl:NamedIndividual rdf:about="&Diagnosis;Joy">
<rdf:type rdf:resource="&Diagnosis;Patients"/>
<DOB rdf:datatype="&xsd;string">33/22/1221</DOB>
<sex rdf:datatype="&xsd;string">Famale</sex>
<FullName rdf:datatype="&xsd;string">Ibekwe Joy</FullName>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Olaniyi -->

<owl:NamedIndividual rdf:about="&Diagnosis;Olaniyi">
<rdf:type rdf:resource="&Diagnosis;Patients"/>
<DOB rdf:datatype="&xsd;string">4/2/1989</DOB>
<FullName rdf:datatype="&xsd;string">Ayeni Olaniyi</FullName>
<sex rdf:datatype="&xsd;string">Male</sex>
<Disease rdf:resource="&Diagnosis;Brain_Tumor"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Omolayo -->

<owl:NamedIndividual rdf:about="&Diagnosis;Omolayo">
<rdf:type rdf:resource="&Diagnosis;Patients"/>
<DOB rdf:datatype="&xsd;string">12/02/2003</DOB>
<sex rdf:datatype="&xsd;string">Male</sex>
<FullName rdf:datatype="&xsd;string">Oshadami Omolayo</FullName>
<Disease rdf:resource="&Diagnosis;Brain_Tumor"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Oshadami -->

<owl:NamedIndividual rdf:about="&Diagnosis;Oshadami">
<rdf:type rdf:resource="&Diagnosis;Patients"/>
<FullName rdf:datatype="&xsd;string">Oshadami MJ</FullName>
<Disease rdf:resource="&Diagnosis;Pineoblastoma"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Pineal_Pnet -->

<owl:NamedIndividual rdf:about="&Diagnosis;Pineal_Pnet">
<rdf:type rdf:resource="&Diagnosis;Disease"/>
<Synonyms rdf:resource="&Diagnosis;Pineoblastoma"/>
<owl:sameAs rdf:resource="&Diagnosis;Pineoblastoma"/>
<Synonyms rdf:resource="&Diagnosis;Pnet_Of_Pineal_Gland"/>
<owl:sameAs rdf:resource="&Diagnosis;Pnet_Of_Pineal_Gland"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Pineoblastoma -->

<owl:NamedIndividual rdf:about="&Diagnosis;Pineoblastoma">
<rdf:type rdf:resource="&Diagnosis;Disease"/>
<Caused rdf:datatype="&xsd;string">Hunger of the brain</Caused>
<Doctor rdf:datatype="&xsd;string">Mrs Janet Oshadami</Doctor>
<url rdf:datatype="&xsd;string">pineoblastoma.com</url>
<Synonyms rdf:resource="&Diagnosis;Pineal_Pnet"/>
<owl:sameAs rdf:resource="&Diagnosis;Pnet_Of_Pineal_Gland"/>
<Synonyms rdf:resource="&Diagnosis;Pnet_Of_Pineal_Gland"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Pnet_Of_Pineal_Gland -->

<owl:NamedIndividual rdf:about="&Diagnosis;Pnet_Of_Pineal_Gland">
<rdf:type rdf:resource="&Diagnosis;Disease"/>
<Synonyms rdf:resource="&Diagnosis;Pineal_Pnet"/>
<Synonyms rdf:resource="&Diagnosis;Pineoblastoma"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Rashidat -->

<owl:NamedIndividual rdf:about="&Diagnosis;Rashidat">
<rdf:type rdf:resource="&Diagnosis;Patients"/>
<DOB rdf:datatype="&xsd;string">22/22/2223</DOB>
<sex rdf:datatype="&xsd;string">Female</sex>
<FullName rdf:datatype="&xsd;string">Rashidat Zubeiru</FullName>
<Disease rdf:resource="&Diagnosis;Brain_Tumor"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#Susan -->

<owl:NamedIndividual rdf:about="&Diagnosis;Susan">
<rdf:type rdf:resource="&Diagnosis;Patients"/>
<DOB rdf:datatype="&xsd;string">31/12/1993</DOB>
<sex rdf:datatype="&xsd;string">Famale</sex>
<FullName rdf:datatype="&xsd;string">Olofua Susan</FullName>
<Disease rdf:resource="&Diagnosis;Brain_Neoplasm"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#group_1 -->

<owl:NamedIndividual rdf:about="&Diagnosis;group_1">
<GroupValue rdf:datatype="&xsd;string">One</GroupValue>
<DiseaseN rdf:resource="&Diagnosis;Brain_Neoplasm"/>
<DiseaseN rdf:resource="&Diagnosis;Brain_Tumor"/>
<owl:sameAs rdf:resource="&Diagnosis;group_2"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#group_2 -->

<owl:NamedIndividual rdf:about="&Diagnosis;group_2">
<DiseaseN rdf:resource="&Diagnosis;Pineoblastoma"/>
</owl:NamedIndividual>



<!-- http://www.semanticweb.org/denrele/ontologies/2012/5/Diagnosis#group_3 -->

<owl:NamedIndividual rdf:about="&Diagnosis;group_3"/>
</rdf:RDF>



<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->


ProgrammingUrgent Help On Sparql Query Ontology by mj(op): 2:52am On Jun 17, 2012
I have my ontology on diagnosis, it contains patients name, disease, some disease name are synonym to the other, i want a query that will select all the patients that have that disease ( for instance another name for brain tumor is brain neoplasm), if i select brain tumor, i want it to also bring out results for patients with brain neoplasm as well. I'm in need of this asap, thanks.
ProgrammingRe: Programmers: Share Your Twitter Handle by mj(m): 5:31pm On Jun 14, 2012
@OshadamiMJ
ProgrammingRe: Owl Dl Reasoner by mj(m): 3:03pm On Jun 09, 2012
looking at the ontology, cars, vehicle, automobiles are subclass of fourwheels, when a user searches for either car or vehicle or automobile it should return results on vehicle, automobile, car since the all belong to the same class.
<?xml version="1.0"?>


<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY Ontologywheels "http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl#" >
]>


<rdf:RDF xmlns="http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl#"
xml:base="http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:Ontologywheels="http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl#">
<owl:Ontology rdf:about="http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl"/>



<!-- http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl#automobile -->

<owl:Class rdf:about="&Ontologywheels;automobile">
<rdfs:subClassOf rdf:resource="&Ontologywheels;fourwheels"/>
</owl:Class>



<!-- http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl#cars -->

<owl:Class rdf:about="&Ontologywheels;cars">
<rdfs:subClassOf rdf:resource="&Ontologywheels;fourwheels"/>
</owl:Class>



<!-- http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl#computer -->

<owl:Class rdf:about="&Ontologywheels;computer"/>



<!-- http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl#fourwheels -->

<owl:Class rdf:about="&Ontologywheels;fourwheels"/>



<!-- http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl#laptop -->

<owl:Class rdf:about="&Ontologywheels;laptop">
<rdfs:subClassOf rdf:resource="&Ontologywheels;computer"/>
</owl:Class>



<!-- http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl#palmtop -->

<owl:Class rdf:about="&Ontologywheels;palmtop">
<rdfs:subClassOf rdf:resource="&Ontologywheels;computer"/>
</owl:Class>



<!-- http://www.semanticweb.org/ontologies/2012/5/Ontologywheels.owl#vehicle -->

<owl:Class rdf:about="&Ontologywheels;vehicle">
<rdfs:subClassOf rdf:resource="&Ontologywheels;fourwheels"/>
</owl:Class>
</rdf:RDF>
ProgrammingRe: Owl Dl Reasoner by mj(m): 12:42pm On Jun 02, 2012
im really interested in ontology, im working on information retrieval system based on ontology, i really need help on it. thanks, my no: 08067493797.
FamilyRe: Should The Character Of A Family Member Influence Your Marriage Decision! by mj(m): 9:18am On Apr 09, 2012
Rely on God, mak ur decision Gods way.
Christianity EtcRe: Jesus Did Not Die On A Friday by mj(m): 8:43pm On Apr 07, 2012
Jesus died on Nisan 14, that's on the Jewish Calendar and ,Nisan 14 falls on 5th April dis year. It varies every year but the most important thing is what date Nisan 14 falls on our calendar.
ProgrammingRe: Let's Learn Object Oriented PHP! by mj(m): 7:22pm On Apr 02, 2012
I'm in.
ProgrammingRe: Ontology Based Information Retrieval System by mj(op): 11:55pm On Mar 21, 2012
I'm ask to work on an information retrieval system based on ontolgy. The current information retrieval systems such as Google, Bing, etc, brings irrelevant results on a searched keyword making the recall and precision low, and sometimes webmasters deceive dz systems by supplying wrong meta tags which lowers the precision. My supervisor said with ontology based model, information retrieval systems can be improve. My task is to develop that IR that will be based on Ontology. I have study Protege, Jena API, Im yet to come up with a anything on it. Pls I need help on dz. Thanks.
ProgrammingOntology Based Information Retrieval System by mj(op): 10:31pm On Mar 20, 2012
Please is there anyone that can help me on this project? I really need help, thanks.
EventsRe: Computer Science Students' Congress by mj(m): 8:16am On Mar 10, 2012
It was really great to be there.
ProgrammingRe: Latent Semantic Indexing by mj(op): 10:36am On Feb 25, 2012
I'm working on an information retrieval system based on semantics. I need help on this project. Pls.
ProgrammingLatent Semantic Indexing by mj(op): 10:48pm On Feb 24, 2012
Pls has any one worked on latent semantic indexing? I'm really in need of help here, 08067493797. Or drop ur no 4 me to call.
ProgrammingRe: Excel To Microsoft Sql Server by mj(op): 1:41pm On Jan 13, 2012
@Dell_net, thanks very much, pls I'm havin problem inserting a variable dt contains alphabets into the sql, , let's say a string. Thanks.
ProgrammingRe: Excel To Microsoft Sql Server by mj(op): 4:24pm On Jan 12, 2012
thanks, let me work on it, I'll reach you back. thanks once again.
ProgrammingRe: Excel To Microsoft Sql Server by mj(op): 8:48pm On Jan 09, 2012
Pls, can any1 help me on dz? I rily need help in sending data from d cells in excel to sql database using VBA. Thanks.
ProgrammingExcel To Microsoft Sql Server by mj(op): 12:29am On Jan 09, 2012
Pls I need help in sending data from excel sheet to sql server. Thanks.
EducationRe: 2011/2012 Unilorin Admissions by mj(m): 12:23pm On Oct 03, 2011
Pls U̶̲̥̅̊ guys should stop scaring him, at worse you will jst get add n drop form to correct it. Let ur mind be at rest, all is well. If U̶̲̥̅̊ need help, let me know, I will be in skool tomorrow, I'm in csc-final year. All d best.
EducationRe: 2011/2012 Unilorin Admissions by mj(m): 11:42pm On Oct 02, 2011
I want to welcome the computer science student (csc) to Unilorin, a lot awaits you, we are having our software exhibition next month. All the help needed will be given to you. www.mynacossunilorin.com , some of you will be recruited into Csc Web Developent Team to help with the maintenance of its website, I'm the head of the web development team n the director of the exhibition. U̶̲̥̅̊ ar all welcome, Greatest Unilorites.
EducationNovena University Admission 2011/2012 Session by mj(op): 9:41pm On Sep 08, 2011
PLs can any one help mw with admission info on Novena University? which website can one apply for the admission ? Thanks
Nairaland GeneralRe: The Programming Section Of Nl Is Now Bloody Worthless by mj(m): 2:00am On May 13, 2011
U ar all right, itz painful though, I can still remember vividly how I met DHTML through this section. Whenever I visit NL my venue is always this Section cos programming is what I love, a lot of d guys here hav rily helped me and now I'm helping others in return. But most time, no one is askin Qs here any longer, itz more or less an advertising section now, do we hav a Mod here?
Nairaland GeneralRe: The Programming Section Of Nl Is Now Bloody Worthless by mj(m): 1:58am On May 13, 2011
True talk.
EducationRe: Unilorin Admission 2010/2011 by mj(m): 6:44pm On Oct 26, 2010
Really, its so sad, lectures have started and we are yet to see freshers, anyway I cant disclose what i heard in school on what is delaying the admission list here, atleats I have to protect my school. anyway just keep looking, we are waiting for you guys.
Rems: whatever course u did in rems is what u will be given in 100level.
ProgrammingRe: Check This Out Programmerssss by mj(m): 5:03pm On Sep 29, 2010
are we going to send it thru Aso rock or where?
Tech JobsRe: Human Resource Management Software by mj(m): 9:14am On Sep 27, 2010
want the best HumanManager then visit http://www.systemspecs.com.ng/humanmanager/
WebmastersRe: Do You Turn Javascript Off? by mj(m): 10:07am On Sep 24, 2010
[quote author=yawa-ti-de link=topic=518681.msg6806577#msg6806577 date=1285237969]I turn it off when testing forms to see if they have back and front end validation. I also turn it off to see if my code gracefully degrades. Other than that, I think it is heresy to even think of turning it off as probably 99% of all apps out there use it in one form or the other.[/quote]

1 2 3 4 5 6 7 8 ... 17 18 19 20 21 22 23 24 25 (of 28 pages)