Add SOSP 2025 AEC#142
Open
nikpag wants to merge 1 commit intosysartifacts:masterfrom
Open
Conversation
Collaborator
|
@sanidhya-kashyap and @sudarsunkannan please review |
Collaborator
|
pinging @sanidhya-kashyap and @sudarsunkannan |
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:
Data quality:
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]})') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See #140