-
Notifications
You must be signed in to change notification settings - Fork 348
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing tags list #757
Comments
Note to everyone: these presentation numbers are zero-indexed. |
@matthewfeickert fix these:
|
Updated the list, and some focus-areas (ssc, blueprint, and core) no longer require project to be set if they are the only focus-areas listed. Including something like |
Currently missing: (focus-area is very important, project mildly so, and location not all that important) @jlefevre: location=6 Generation code - Pythonimport itertools
from collections import Counter
both = [[l.split()[3][13:-4], {x.strip(".,") for x in l.split()[6:]}] for l in STR.splitlines()]
for key, value in itertools.groupby(both, lambda x: x[0]):
res = Counter(v for vals in value for v in vals[1])
print(f"@{key}:", ", ".join(f"{k}={v}" for k, v in res.items())) Generation code - RubySTR.split(/\n/)
.map{ |x| [x.split[3][13..-5], x.split[6..].map{ _1.delete('.,') }] }
.group_by{ _1[0] }
.transform_values{ |x| x.flat_map { _1[1] } }
.transform_values{ |v| v.each_with_object(Hash.new(0)){ _2[_1] += 1} }
.each{ |k, v| puts "@#{k}: #{v.map{ "#{_1}=#{_2}" }.join(' ')}" } |
how to express that a talk spans a focus-area? |
All IA: focus-area: ia
project: Empty project will silence the warning. You can also list several fa's or projects. |
thx |
@henryiii, could we get an updated list? |
List updated. |
Here are the missing tags that need to be worked on. If there's really no project associated with a presentation, then
project:
(blank) can be added to silence the warning.The text was updated successfully, but these errors were encountered: