Public signup for this instance is disabled. Go to our Self serve sign up page to request an account. Report potential security issues privately
It would be nice if there were a safe navigation operator for subscripts.
Safe navigation operator: a?.b
Safe index operator: a.size() > 0 ? a[0] : null => a?[0]