Jump to content

User:Back ache

Status: Online

From Wikidata


Back ache is currently:
Online
Update: OnBusyClassAway
WikibreakAsleepHolidayOff




I'm a nice guy, I do a lot for wikidata and crowdsourcing generally, be nice to me... please

316,271+This user has made over 316,271 contributions to Wikimedia projects.

[1]


User:Back_ache/poetry

powershell

[edit]

needing to become proficient in the computer language "powershell" and API's, rather than me create pointless example code , I am using this as an opportunity to "fill in the blanks" in wikidata entries by calling publicly available  data using API's

Babel user information
en-GB-N This user has a native understanding of British English.
en-N This user has a native understanding of English.
es-1 Este usuario tiene un conocimiento básico del español.
Users by language


random querys to help fill in gaps

[edit]
#What entrys are using URL match pattern and which contain VIAF
SELECT ?item ?itemLabel ?value
WHERE 
{
  ?item wdt:P8966 ?value
     FILTER (CONTAINS(lcase(?value), "viaf"))   
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # Helps get the label in your language, if not, then en language
}
Try it!
#What noteable people don't have an ISNI
#Shows people raised in the public domain "life + 50 years".
SELECT ?item ?itemLabel ?genderLabel (GROUP_CONCAT(DISTINCT ?occupationLabel; SEPARATOR=", ") AS ?occupations) (GROUP_CONCAT(DISTINCT ?countryLabel; SEPARATOR=", ") AS ?countries) ?death ?articles {
  VALUES ?target_country { wd:Q16 wd:Q142 wd:Q39 wd:Q31 wd:Q145 } . #countries: Canada, France, Switzerland, Belgium, UK. Removing this line to get worldwide may cause a query timeout.
  VALUES ?occ { wd:Q2500638 wd:Q20826540 wd:Q215627 } . #occupation: creator, erudite, person. These 3 occupations will also look for subclasses. Example: Alan Turing is a cryptographer, a subclass of cryptologist, a subclass of mathematician, a subclass of scientist, a subclass of erudite.
   ?item wdt:P31 wd:Q5;
               wdt:P21 ?gender;
               wdt:P27 ?target_country;
               wdt:P27 ?country;
               wdt:P106/wdt:P279* ?occ ;
               wdt:P106 ?occupation;
               wikibase:sitelinks ?articles . #Service to count the number of articles in Wikipedia language versions. The higher the number, the greater the chances that the person is very notorious.
   ?item wdt:P570 ?death . hint:Prior hint:rangeSafe true .
  MINUS { ?item wdt:P213 [] }
   FILTER( ?death >= "1969-01-01T00:00:00"^^xsd:dateTime && ?death < "1970-01-01T00:00:00"^^xsd:dateTime ) #death: public domain "life+50 years". Change both years to get a list in different legislation. Example for USA: life+70 years
   SERVICE wikibase:label {
       bd:serviceParam wikibase:language "en" . #Service to retrieve the labels of items, in order of language. Example: if the label does not exist in French, the service will take the English label
       ?item rdfs:label ?itemLabel .
       ?gender rdfs:label ?genderLabel .
       ?occupation rdfs:label ?occupationLabel .
       ?country rdfs:label ?countryLabel .
   } .
} GROUP BY ?item ?itemLabel ?genderLabel ?death ?articles ORDER BY DESC (?articles) #Order by the number of articles in Wikipedia language versions. The most notorious people will be at the top of the list.
Try it!
SELECT ?item ?itemLabel ?itemDescription WHERE {
  ?item wdt:P31 wd:Q5.
  ?item wdt:P27 wd:Q145.
 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en,de,pt,es,no". }
  FILTER(NOT EXISTS {
    ?item rdfs:label ?lang_label.
    FILTER(LANG(?lang_label) = "en-gb")
  })
 }
 ORDER BY ?itemLabel
Try it!

podcasts

[edit]

podcasts with a feed not a language with an apple id but not a feed List entries with an apple podcast id but no end date or episode count


Apple podcasts with an episode count and not and end date


SELECT DISTINCT ?item WHERE {
  ?item p:P31 ?statement0.
  ?statement0 (ps:P31/(wdt:P279*)) wd:Q24634210.
  ?item p:P1113 ?statement1.
  ?statement1 (psv:P1113/wikibase:quantityAmount) ?numericQuantity.
  ?item p:P5842 ?statement2.
  ?statement2 (ps:P5842) _:anyValueP5842.
  MINUS {
    ?item p:P582 ?statement_3.
    ?statement_3 psv:P582 ?statementValue_3.
    ?statementValue_3 wikibase:timeValue ?P582_3.
  }
}
Try it!

tones

[edit]
  • 7.83 Schumann resonance
  • 13hz physcadelic

w:en:beat (acoustics)#Binaural beats

  • 174 Hz (Stress Relief)
  • 285 Hz (Heals Trauma)
  • 396 Hz (Release Fear)
  • 417 Hz (Remove Negative Energy)
  • 528 Hz (Positive Change)
  • 639 Hz (Love)
  • 741 Hz (Higher Consciousness)
  • 852 Hz (Awaken Intuition)
  • 963 Hz (Transcendence)
  • 40 Hz (Alzheimer's relief)

boats

[edit]

http://marineplan.com/open-ship-data-api/ https://ais.marineplan.com/location/2/ship.json?ship=232043461 Shows thigs with an MMSI but not a callsign

  1. https://meta.wikimedia.org/wiki/Special:CentralAuth?target=Back+ache