-
Notifications
You must be signed in to change notification settings - Fork 41
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
Major List Update 2023-08 #94
Comments
Major List Update How-To. The following is about the batch processing of a long list of accumulated |
Note:
Legend:
|
Did not find a single regex command that manages to do this in one operation. Seems to required nested grouping, and couldn't get it to work. Instead, here did it like this. # regex: single-item labels.
# description: in each line beginning with "labels: " and ending with single string, quote string, encase in brackets.
# example: labels: ab-c --> labels: ["ab-c"].
# reference: chatpgt.
sed -E '/^ labels: [^,]+$/ s/(labels: )(.+)/\1["\2"]/; /^labels: [^,]+$/! s/, /, /' in.file > out.file # regex: multi-item labels bracketing.
# description: in each line beginning with "labels: " and ending with comma-separated list of strings, encase list in brackets.
# example: labels: ab-c, def --> labels: [ab-c, def].
# reference: chatgpt.
sed -E '/^ labels: .*[ ,].*$/ s/([^:]+: )(.+)/\1[\2]/; /^labels: .*[ ,].*$/! s/, */, /' in.file > out.file Note that order of replacement matters here.
|
|
|
Closed with commit c069f2a. |
…, closes #216, closes #217, closes #218, closes #219, closes #221, closes #226, closes #227, closes #230, closes #232, closes #236, closes #239, closes #242, closes #245, closes #247, closes #250, closes #251, closes #252, closes #255, closes #260, closes #261, , closes #265, closes #270, closes #273, closes #274, closes #276, closes #277, closes #280, closes #283, closes #284, closes #285, closes #286, closes #288, closes #289, closes #290, closes #292, closes #293, closes #294, closes #296, closes #300, closes #306, closes #308, closes #310, closes #312, closes #313, closes #314, closes #315, closes #316, closes #317, closes #318, closes #319, closes #320, closes #321, closes #325, closes #331, closes #332, closes #339, closes #341, closes #342, closes #343
Social media announcements
Note. The '@' handles below are the respective social media site's profile handles, not GitHub profile handles. Main message.
Response messages.
Message text.
BlueSkyNone. MastodonMain message.
Response messages.
|
Issue corresponding to 1) commit c850b31 and its corresponding README update f99194f ...
Note: Closing multiple issues with commit message.. The correct syntax is
git commit -m "closes #1, closes #2, closes #3; YOUR COMMIT MESSAGE"
.and 2) commit series b666491 ... ba49089, adding some distnguishing graphical deco to the header, in this case, an emoji-tuple as list "logo". Started with the idea of having combining the Atom emoji with a self-made, same-style neural network emoji. Didn't like that in the end. Found no emoji that really works for signifying ML, so just stuck with the emoji triple Atom, DNA, Gem Stone / Snowflake, to signify atomistic molecules & materials.
The following is about the 1), the batch processing of a long list of add project issues. I document here how I did it for the next quarterly update around October.
The text was updated successfully, but these errors were encountered: