Skip to content

Add SOSP 2025 AEC#142

Open
nikpag wants to merge 1 commit intosysartifacts:masterfrom
nikpag:master
Open

Add SOSP 2025 AEC#142
nikpag wants to merge 1 commit intosysartifacts:masterfrom
nikpag:master

Conversation

@nikpag
Copy link
Copy Markdown

@nikpag nikpag commented Sep 19, 2025

See #140

@vahldiek
Copy link
Copy Markdown
Collaborator

@sanidhya-kashyap and @sudarsunkannan please review

@SolalPirelli
Copy link
Copy Markdown
Collaborator

pinging @sanidhya-kashyap and @sudarsunkannan

@vahldiek
Copy link
Copy Markdown
Collaborator

Thanks for this PR! I cross-checked the committee list against the public HotCRP page at https://sosp25ae.hotcrp.com/u/0/users/pc and found a few discrepancies:

Missing members (2): The PR has 91 members, but HotCRP lists 94. The following names are present on HotCRP but missing from the PR:

  • Aakash Sharma
  • Linjie Ma

Data quality:

  • 3 entries have None as affiliation: Gihwan Oh, Ram Sharan Chaulagain, Reza Shams — these should either be corrected or omitted.
  • 1 entry has an ALL-CAPS name: HONG FUNG HENG COLIN — should probably be title-cased.

Chairs match ✓ (Sanidhya Kashyap, Sudarsun Kannan, Baptiste Lepers) — all 3 confirmed.

Verification script (Python)
import requests
from bs4 import BeautifulSoup

resp = requests.get('https://sosp25ae.hotcrp.com/u/0/users/pc', timeout=30)
soup = BeautifulSoup(resp.text, 'html.parser')
table = soup.find('table')

chairs, members = [], []
for row in table.find_all('tr')[1:]:
    cells = row.find_all('td')
    if len(cells) < 2:
        continue
    name_cell, affil_cell = cells[0], cells[1]
    name = name_cell.get_text(strip=True)
    affil = affil_cell.get_text(strip=True)
    is_chair = bool(name_cell.find('span', class_='pcrole'))
    if is_chair:
        chairs.append((name.replace('chair', '').strip(), affil))
    elif name.strip() and name.strip() != '[No name]':
        members.append((name, affil))

print(f'Chairs: {len(chairs)}, Members: {len(members)}')
for c in chairs:
    print(f'  Chair: {c[0]} ({c[1]})')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants