313 Matching Annotations
  1. Aug 2023
  2. Jul 2023
  3. Jun 2023
    1. ```python def split_user(userid): """ Return the user and domain parts from the given user id as a dict.

      For example if userid is u'acct:seanh@hypothes.is' then return
      {'username': u'seanh', 'domain': u'hypothes.is'}'
      
      :raises InvalidUserId: if the given userid isn't a valid userid
      
      """
      match = re.match(r"^acct:([^@]+)@(.*)$", userid)
      if match:
          return {"username": match.groups()[0], "domain": match.groups()[1]}
      raise InvalidUserId(userid)
      

      ```

    1. You would need to have a phone number in order to create an Apple ID.

      Wow, you can't create an Apple ID without assigning yourself a telephone tracking number.

      Incredible.

  4. May 2023
  5. Apr 2023
  6. Mar 2023
  7. Feb 2023
  8. Jan 2023
    1. The URN “urn:iso:std:iso:19719:ed-1:v1:en,fr” denotes the first version of the first edition of ISO 19719, which is published bilingually in English and French.
  9. Dec 2022
  10. Nov 2022
    1. The @id keyword allows you to give a node a URI. This URI identifies the node. See Node Identifiers in the JSON-LD spec. (The equivalent in Microdata is the itemid attribute, and the equivalent in RDFa Lite is the resource attribute.)
  11. Oct 2022
  12. Sep 2022