Giter VIP home page Giter VIP logo

Comments (9)

fuddl avatar fuddl commented on August 18, 2024

Twitter username → has quality → case insensitivity so
twitter.com/DerenRich should resolve to Q108267155 (actual value derenrich).

Alright, I'll see what I can do.

from wd.

fuddl avatar fuddl commented on August 18, 2024

@derenrich do you have any clue about how to make a case insensitive sparql query?

`
  SELECT ?item
  WHERE {
    ?item wdt:${ prop } "${ id }".
  }
`

should I just assume the string in the database is lower case?

`
SELECT ?item
WHERE {
  ?item wdt:${ prop } "${ ci ? id.toLowerCase() : id }".
}
`

from wd.

derenrich avatar derenrich commented on August 18, 2024

i think you have to rewrite the query with a filter and downcasing both the search and target strings (or a regex). probably less efficient but it's the only way to be sure.

from wd.

fuddl avatar fuddl commented on August 18, 2024

I'm starting to wonder why we are doing this. Does any part of the twitter api downcase the usernames? Is there a url scheme that only serves the usernames lowercased? If not, why don't we store usernames how they occur? What converts them to lowercase, and why?

from wd.

camelCaseNick avatar camelCaseNick commented on August 18, 2024

We are not doing that at all. Nothing is converted to lower case. On our side, P2002 is supposed to store the preferred variant and not the lower case one.

For me it would be "camelCaseNick" not "camelcasenick" nd if you clicked from within Twitter on my profile you'd get https://twitter.com/camelCaseNick. However if you manually navigated to https://twitter.com/camelcasenick Twitter would serve the same profile without a redirect. That is the problem here.

A functioning (though less efficient) query could be:

select ?item where {
  ?item wdt:${ prop } ?id.
  filter(lcase(?id) = "${ id.toLowerCase() }")
}

from wd.

fuddl avatar fuddl commented on August 18, 2024

However if you manually navigated to https://twitter.com/camelcasenick Twitter would serve the same profile without a redirect. That is the problem here.

I understand that. But how likely is it? Why should anybody do that?

I found https://twitter.com/camelCaseNick using twitters own search. However the page was linked with:

<link href="https://twitter.com/camelcasenick" rel="canonical">

So twitter seems to be uncertain, which username they want to show us. I would prefer to store the one that is not lowercased because it contains more information. 🤷

from wd.

derenrich avatar derenrich commented on August 18, 2024

This is a general problem not limited to Twitter

from wd.

fuddl avatar fuddl commented on August 18, 2024

@derenrich Version 0.189 should now resolve case insensitive identifiers case insensitively:
DerEnrich=derenrich

If you notice any problems, feel free to reopen this issue

from wd.

derenrich avatar derenrich commented on August 18, 2024

thanks!

from wd.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.