Thursday, 19 December 2019

Places having article in En Wiki do not have in Ar Wiki

SELECT DISTINCT ?item ?entitle ?enarticle WHERE {
  ?item wdt:P31/wdt:P279* wd:Q486972;
                 wdt:P17 wd:Q878.
       
  MINUS {
    ?ararticle schema:about ?item;
               schema:isPartOf <https://ar.wikipedia.org/>.
  }
  ?enarticle schema:about ?item;
             schema:name ?entitle;
             schema:isPartOf <https://en.wikipedia.org/>.
}

SPARQL query to find out all female scientists with no Arabic but an English article

SPARQL query to find out all female scientists with no Arabic but an English article.


SELECT DISTINCT ?item ?entitle ?enarticle WHERE {
  ?item wdt:P31 wd:Q5;
        wdt:P106/wdt:P279* wd:Q901;
        wdt:P21 wd:Q6581072.
  MINUS {
    ?ararticle schema:about ?item;
               schema:isPartOf <https://ar.wikipedia.org/>.
  }
  ?enarticle schema:about ?item;
             schema:name ?entitle;
             schema:isPartOf <https://en.wikipedia.org/>.

}


Courtesy - Lucas Werkmeister
 [Dec 18, 2019 12:01:27 AM
It is his version: https://w.wiki/E4X

Tuesday, 1 October 2019

Missing descriptions in ml districts

To add description.
Located in the administrative territorial entity - p131
Malappuram district (Q1030918)


#no description
SELECT ?item ?itemLabel?itemLabel_ml WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?item wdt:P131 wd:Q1030918.
  optional {?item rdfs:label ?itemLabel_ml . filter(lang(?itemLabel_ml)="ml")}
  filter not exists {?item schema:description ?itemDesc_ml . filter(lang(?itemDesc_ml)="ml")}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 200


Tuesday, 24 September 2019

Uses of assessment data to improve learning

always keep learning it keeps you young - Patty Berg






Useful websites

Edpuzzle.com







https://quizlet.com/latest  ( First let them read the glossary , then using quizlet you can shows flashcards )


Saturday, 21 September 2019

Planning and implementing effective lessons

Planning and implementing effective lessons
21-9-19



Being challenged in life is inevitable, being defeated is optional- Roger Crawford.


What will students learn? Planning.

Topic & Sub topic:

Too much? Too less?
Have they learnt this before?
What is the new learning here?
How do you know?

Wednesday, 18 September 2019

SPARKL query - current indian actors who do not have des in ml

#no description
SELECT ?item ?itemLabel ?itemLabel_ml
WHERE
{
  ?item wdt:P106 wd:Q33999 ;
          wdt:P27 wd:Q668 ;
          wdt:P21 wd:Q6581072 .
  optional {?item rdfs:label ?itemLabel_ml . filter(lang(?itemLabel_ml)="ml")}
  filter not exists {?item schema:description ?itemDesc_ml . filter(lang(?itemDesc_ml)="ml")}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}