Re: List of designated experts?

Carsten Bormann <cabo@tzi.org> Sat, 29 February 2020 16:27 UTC

Return-Path: <cabo@tzi.org>
X-Original-To: ietf@ietfa.amsl.com
Delivered-To: ietf@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E5B3B3A0DE3 for <ietf@ietfa.amsl.com>; Sat, 29 Feb 2020 08:27:46 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.899
X-Spam-Level:
X-Spam-Status: No, score=-1.899 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Yh4hb-lgcoRo for <ietf@ietfa.amsl.com>; Sat, 29 Feb 2020 08:27:44 -0800 (PST)
Received: from gabriel-vm-2.zfn.uni-bremen.de (gabriel-vm-2.zfn.uni-bremen.de [134.102.50.17]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 715183A0DDF for <ietf@ietf.org>; Sat, 29 Feb 2020 08:27:43 -0800 (PST)
Received: from [172.16.42.113] (p548DC4D8.dip0.t-ipconnect.de [84.141.196.216]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gabriel-vm-2.zfn.uni-bremen.de (Postfix) with ESMTPSA id 48VBdl73l9z18Zw; Sat, 29 Feb 2020 17:27:39 +0100 (CET)
Content-Type: text/plain; charset="utf-8"
Mime-Version: 1.0 (Mac OS X Mail 13.0 \(3608.60.0.2.5\))
Subject: Re: List of designated experts?
From: Carsten Bormann <cabo@tzi.org>
In-Reply-To: <20200229154501.GB26816@sources.org>
Date: Sat, 29 Feb 2020 17:27:32 +0100
Cc: IETF Discussion <ietf@ietf.org>
X-Mao-Original-Outgoing-Id: 604686452.409508-570bf83503ec40e43500ed976a36ede9
Content-Transfer-Encoding: quoted-printable
Message-Id: <DDA12700-91AF-4429-9405-9789DAD979C8@tzi.org>
References: <20200229142710.GA15932@sources.org> <CAA=duU2d2g_QY5FBwysSKVcF9eFsriKG7KhvWxMZ+S2zJDvVKw@mail.gmail.com> <20200229154501.GB26816@sources.org>
To: Stephane Bortzmeyer <bortzmeyer@nic.fr>
X-Mailer: Apple Mail (2.3608.60.0.2.5)
Archived-At: <https://mailarchive.ietf.org/arch/msg/ietf/rs7n0zdwYqt1j03yt3zZOzaBK5Y>
X-BeenThere: ietf@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: IETF-Discussion <ietf.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/ietf>, <mailto:ietf-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/ietf/>
List-Post: <mailto:ietf@ietf.org>
List-Help: <mailto:ietf-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/ietf>, <mailto:ietf-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 29 Feb 2020 16:27:47 -0000

On 2020-02-29, at 16:45, Stephane Bortzmeyer <bortzmeyer@nic.fr> wrote:
> 
> I'm lazy and was looking for an existing list, if there is one.

media-types/application/vnd.paos.xml is broken; ignoring that, try

#!/usr/bin/env ruby
require 'rexml/document'
experts = Dir["./**/*.xml"].flat_map { |fn|
  REXML::XPath.match(REXML::Document.new(File.read(fn)), 
    "//expert").map { |x| x.text } rescue fn }
puts experts

in a directory that was rsynced from rsync.iana.org::assignments
Sorry, no optimization; takes 36 s on my laptop.

Maybe send output through `sort | uniq -c` (or write the equivalent Ruby code).
I was too lazy to write a parser for the approximately twelve different ways in which a primary/secondary split is indicated.

The crown goes to a guy called “Unassigned” (341 registries), with
  33 Russ Housley
  34 Margaret Wasserman
  34 Roman Danyliw, Takeshi Takahashi
  37 Joe Macker
as runner-ups (Russ has a few more where he is primary).

I was surprised by the number of registries my name is on :-)

Grüße, Carsten