User talk:Timbaaa/Archive 2
This is an archive of past discussions about User:Timbaaa. Do not edit the contents of this page. If you wish to start a new discussion or revive an old one, please do so on the current talk page. |
Archive 1 | Archive 2 | Archive 3 |
This page has archives. Sections older than 60 days may be automatically archived by Lowercase sigmabot III when more than 4 sections are present. |
Graph extension
Hi Timbaaa, than you for your offer.
Some users would like to be able to make annotations on graph: I was thinking to add additional marks
- - vertical / horizontal line at specific values
- - rectangle shape for x,y data range
Requests and examples are here Template_talk:Graph:Chart#Vertical lines in Wikipedia charts Please check what would be best way to define it in Graph template parameters and in Vega JSON and figure out best default settings (color, transparency etc.). Base on this I will try to prepare code in module. --Pietrasagh (talk) 16:09, 9 August 2020 (UTC)
Pietrasagh, Doing... (That's actually my request.) - Timbaaa -> ping me 10:11, 10 August 2020 (UTC)
- @Pietrasagh:,Made something have a look
{{Graph:Chart | x = 1,2,3,4,5 | y1 = 2,4,0,1,3 | y2 = 2,3 , 4,-1 ,2 |legend = }}
Produces(JSON in source and here)
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org. |
We need something like the following (JSON in source and here).
{{Graph:Chart | x = 1,2,3,4,5 | y1 = 2,4,0,1,3 | y2 = 2,3 , 4,-1 ,2 | legend = | v1 = 2.3 | v1Title = Vertical line | h1 = 1.6 | h1Title = Horizontal line }}
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org. |
I just appended the annotation values to `value` array in `data` property. Check the comments in lines 243 to 260 in the JSON. Can it be done with Lua? - Timbaaa -> ping me 08:06, 11 August 2020 (UTC)
- Hi, yes this should work and can be done with Lua but only for `line` graph type. To have annotations independent of graph type it should be defined on separate `marks' group. To avoid changing to much of existing Lua code I think it would be good idea to define annotations coordinates `data` also in separate data set. Color for lines should should be fixes (e.g. as for axis) or defined separately (e.g. last element of `color` argument)
Extended content
|
---|
{
"legends": [
{
"properties": {
"title": {
"fill": {
"value": "#54595d"
}
},
"labels": {
"fill": {
"value": "#54595d"
}
}
},
"stroke": "color",
"title": "",
"fill": "color"
}
],
"scales": [
{
"type": "linear",
"name": "x",
"zero": false,
"domain": {
"data": "chart",
"field": "x"
},
"range": "width",
"nice": true
},
{
"type": "linear",
"name": "y",
"domain": {
"data": "chart",
"field": "y"
},
"zero": false,
"range": "height",
"nice": true
},
{
"domain": {
"data": "chart",
"field": "series"
},
"type": "ordinal",
"name": "color",
"range": "category10"
}
],
"version": 2,
"marks": [
{
"type": "group",
"marks": [
{
"properties": {
"hover": {
"stroke": {
"value": "red"
}
},
"update": {
"stroke": {
"scale": "color",
"field": "series"
}
},
"enter": {
"y": {
"scale": "y",
"field": "y"
},
"y2": {
"scale": "y",
"value": 0
},
"x": {
"scale": "x",
"field": "x"
},
"stroke": {
"scale": "color",
"field": "series"
},
"strokeWidth": {
"value": 2.5
},
"fill": {
"scale": "color",
"field": "series"
}
}
},
"type": "area"
}
],
"from": {
"data": "chart",
"transform": [
{
"groupby": [
"series"
],
"type": "facet"
}
]
}
},
{
"type": "group",
"marks": [
{
"properties": {
"enter": {
"y": {
"scale": "y",
"field": "y"
},
"x": {
"scale": "x",
"field": "x"
},
"stroke": {
"value": "#54595d"
},
"strokeWidth": {
"value": 2.5
}
}
},
"type": "line"
}
],
"from": {
"data": "annotations",
"transform": [
{
"groupby": [
"series"
],
"type": "facet"
}
]
}
}
],
"height": 200,
"axes": [
{
"type": "x",
"scale": "x",
"format": "d",
"properties": {
"title": {
"fill": {
"value": "#54595d"
}
},
"grid": {
"stroke": {
"value": "#54595d"
}
},
"ticks": {
"stroke": {
"value": "#54595d"
}
},
"axis": {
"strokeWidth": {
"value": 2
},
"stroke": {
"value": "#54595d"
}
},
"labels": {
"fill": {
"value": "#54595d"
}
}
},
"grid": false
},
{
"type": "y",
"scale": "y",
"format": "d",
"properties": {
"title": {
"fill": {
"value": "#54595d"
}
},
"grid": {
"stroke": {
"value": "#54595d"
}
},
"ticks": {
"stroke": {
"value": "#54595d"
}
},
"axis": {
"strokeWidth": {
"value": 2
},
"stroke": {
"value": "#54595d"
}
},
"labels": {
"fill": {
"value": "#54595d"
}
}
},
"grid": false
}
],
"data": [
{
"format": {
"parse": {
"y": "integer",
"x": "integer"
},
"type": "json"
},
"name": "chart",
"values": [
{
"y": 2,
"series": "y1",
"x": 1
},
{
"y": 4,
"series": "y1",
"x": 2
},
{
"y": 0,
"series": "y1",
"x": 3
},
{
"y": 1,
"series": "y1",
"x": 4
},
{
"y": 3,
"series": "y1",
"x": 5
},
{
"y": 2,
"series": "y2",
"x": 1
},
{
"y": 3,
"series": "y2",
"x": 2
},
{
"y": 4,
"series": "y2",
"x": 3
},
{
"y": 1,
"series": "y2",
"x": 4
},
{
"y": 2,
"series": "y2",
"x": 5
}
]
},
{
"format": {
"parse": {
"y": "integer",
"x": "integer"
},
"type": "json"
},
"name": "annotations",
"values": [
{
"y": 0,
"series": "Vertical line",
"x": 2.3
},
{
"y": 4,
"series": "Vertical line",
"x": 2.3
},
{
"y": 1.6,
"series": "Horizontal line",
"x": 1
},
{
"y": 1.6,
"series": "Horizontal line",
"x": 5
}
]
}
],
"width": 200
}
|
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org.
--Pietrasagh (talk) 09:25, 12 August 2020 (UTC)
- Pietrasagh, You are right I forgot that big element(chart types). - Timbaaa -> ping me 06:39, 14 August 2020 (UTC)
Pietrasagh, I think the annotation marks should also be included in legends in order to specify what that line actually represents.
1
Extended content
|
---|
{"legends":[{"values":["y1","y2","Vertical_line","Horizontal_line"],"properties":{"title":{"fill":{"value":"#54595d"}},"labels":{"fill":{"value":"#54595d"}}},"stroke":"color","title":"Legend","fill":"color"}],"scales":[{"type":"linear","name":"x","zero":false,"domain":{"data":"chart","field":"x"},"range":"width","nice":true},{"type":"linear","name":"y","domain":{"data":"chart","field":"y"},"zero":false,"range":"height","nice":true},{"domain":{"data":"chart","field":"series"},"type":"ordinal","name":"color","range":"category10"}],"version":2,"marks":[{"type":"group","marks":[{"properties":{"hover":{"stroke":{"value":"red"}},"update":{"stroke":{"scale":"color","field":"series"}},"enter":{"y":{"scale":"y","field":"y"},"y2":{"scale":"y","value":0},"x":{"scale":"x","field":"x"},"stroke":{"scale":"color","field":"series"},"strokeWidth":{"value":2.5},"fill":{"scale":"color","field":"series"}}},"type":"area"}],"from":{"data":"chart","transform":[{"groupby":["series"],"type":"facet"}]}},{"type":"group","marks":[{"properties":{"hover":{"stroke":{"value":"red"}},"update":{"stroke":{"scale":"color","field":"series"}},"enter":{"y":{"scale":"y","field":"y"},"x":{"scale":"x","field":"x"},"stroke":{"scale":"color","field":"series"},"strokeWidth":{"value":2.5}}},"type":"line"}],"from":{"data":"annotations","transform":[{"groupby":["series"],"type":"facet"}]}}],"height":200,"axes":[{"type":"x","scale":"x","format":"d","properties":{"title":{"fill":{"value":"#54595d"}},"grid":{"stroke":{"value":"#54595d"}},"ticks":{"stroke":{"value":"#54595d"}},"axis":{"strokeWidth":{"value":2},"stroke":{"value":"#54595d"}},"labels":{"fill":{"value":"#54595d"}}},"grid":false},{"type":"y","scale":"y","format":"d","properties":{"title":{"fill":{"value":"#54595d"}},"grid":{"stroke":{"value":"#54595d"}},"ticks":{"stroke":{"value":"#54595d"}},"axis":{"strokeWidth":{"value":2},"stroke":{"value":"#54595d"}},"labels":{"fill":{"value":"#54595d"}}},"grid":false}],"data":[{"format":{"parse":{"y":"integer","x":"integer"},"type":"json"},"name":"chart","values":[{"y":2,"series":"y1","x":1},{"y":4,"series":"y1","x":2},{"y":0,"series":"y1","x":3},{"y":1,"series":"y1","x":4},{"y":3,"series":"y1","x":5},{"y":2,"series":"y2","x":1},{"y":3,"series":"y2","x":2},{"y":4,"series":"y2","x":3},{"y":1,"series":"y2","x":4},{"y":2,"series":"y2","x":5}]},{"format":{"parse":{"y":"integer","x":"integer"},"type":"json"},"name":"annotations","values":[{"y":0,"series":"Vertical_line","x":2.3},{"y":4,"series":"Vertical_line","x":2.3},{"y":1.6,"series":"Horizontal_line","x":1},{"y":1.6,"series":"Horizontal_line","x":5}]}],"width":200}
|
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org. |
2
Extended content
|
---|
{"legends":[{"values":["Verticalline","Horizontalline","y1","y2"],"properties":{"title":{"fill":{"value":"#54595d"}},"labels":{"fill":{"value":"#54595d"}}},"stroke":"color","title":"Legend","fill":"color"}],"scales":[{"type":"linear","name":"x","zero":false,"domain":{"data":"chart","field":"x"},"range":"width","nice":true},{"type":"linear","name":"y","domain":{"data":"chart","field":"y"},"zero":false,"range":"height","nice":true},{"domain":{"data":"chart","field":"series"},"type":"ordinal","name":"color","range":"category10"}],"version":2,"marks":[{"type":"group","marks":[{"properties":{"hover":{"stroke":{"value":"red"}},"update":{"stroke":{"scale":"color","field":"series"}},"enter":{"y":{"scale":"y","field":"y"},"y2":{"scale":"y","value":0},"x":{"scale":"x","field":"x"},"stroke":{"scale":"color","field":"series"},"strokeWidth":{"value":2.5}}},"type":"line"}],"from":{"data":"chart","transform":[{"groupby":["series"],"type":"facet"}]}},{"type":"group","marks":[{"properties":{"hover":{"stroke":{"value":"red"}},"update":{"stroke":{"scale":"color","field":"series"}},"enter":{"y":{"scale":"y","field":"y"},"x":{"scale":"x","field":"x"},"stroke":{"scale":"color","field":"series"},"strokeWidth":{"value":2.5}}},"type":"line"}],"from":{"data":"annotations","transform":[{"groupby":["series"],"type":"facet"}]}}],"height":200,"axes":[{"type":"x","scale":"x","format":"d","properties":{"title":{"fill":{"value":"#54595d"}},"grid":{"stroke":{"value":"#54595d"}},"ticks":{"stroke":{"value":"#54595d"}},"axis":{"strokeWidth":{"value":2},"stroke":{"value":"#54595d"}},"labels":{"fill":{"value":"#54595d"}}},"grid":false},{"type":"y","scale":"y","format":"d","properties":{"title":{"fill":{"value":"#54595d"}},"grid":{"stroke":{"value":"#54595d"}},"ticks":{"stroke":{"value":"#54595d"}},"axis":{"strokeWidth":{"value":2},"stroke":{"value":"#54595d"}},"labels":{"fill":{"value":"#54595d"}}},"grid":false}],"data":[{"format":{"parse":{"y":"integer","x":"integer"},"type":"json"},"name":"chart","values":[{"y":2,"series":"y1","x":1},{"y":4,"series":"y1","x":2},{"y":0,"series":"y1","x":3},{"y":1,"series":"y1","x":4},{"y":3,"series":"y1","x":5},{"y":2,"series":"y2","x":1},{"y":3,"series":"y2","x":2},{"y":4,"series":"y2","x":3},{"y":1,"series":"y2","x":4},{"y":2,"series":"y2","x":5}]},{"format":{"parse":{"y":"integer","x":"integer"},"type":"json"},"name":"annotations","values":[{"y":0,"series":"Verticalline","x":2.3},{"y":4,"series":"Verticalline","x":2.3},{"y":1.6,"series":"Horizontalline","x":1},{"y":1.6,"series":"Horizontalline","x":5}]}],"width":200}
|
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org. |
- Timbaaa -> ping me 07:38, 15 August 2020 (UTC)
- Opacity has to be changed and stroke width has to be reduced for annotations. - Timbaaa -> ping me 07:40, 15 August 2020 (UTC)
- It would be great if you could figure out optimal color/opacity and stroke width for line annotations. Maybe you have some good real life example for tests. I want to focus now on fixing problems with new logic for `showSymbol` after my last update. In those [1] articles charts doesn't display symbols after update --Pietrasagh (talk) 08:42, 15 August 2020 (UTC)
- Pietrasagh, If you haven't already figured out where it is causing problem for symbols. For one of the graphs from search,
- It would be great if you could figure out optimal color/opacity and stroke width for line annotations. Maybe you have some good real life example for tests. I want to focus now on fixing problems with new logic for `showSymbol` after my last update. In those [1] articles charts doesn't display symbols after update --Pietrasagh (talk) 08:42, 15 August 2020 (UTC)
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org. |
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org. |
- Check the highlighted property, it should not be empty.
{"legends":[],"scales":[{"type":"linear","name":"x","zero":false,"domain":{"data":"chart","field":"x"},"range":"width","nice":true},{"type":"linear","name":"y","domain":{"data":"chart","field":"y"},"zero":false,"range":"height","nice":true},{"domain":{"data":"chart","field":"series"},"type":"ordinal","name":"color","range":"category10"},{"domain":{"data":"chart","field":"series"},"type":"ordinal","name":"symSize","range":[]
}],"version":2,"marks":[{"type":"line","properties":{"hover":{"stroke":{"value":"red"}},"update":{"stroke":{"scale":"color","field":"series"}},"enter":{"y":{"scale":"y","field":"y"},"x":{"scale":"x","field":"x"},"stroke":{"scale":"color","field":"series"},"strokeWidth":{"value":2.5}}},"from":{"data":"chart"}},{"type":"symbol","properties":{"enter":{"y":{"scale":"y","field":"y"},"x":{"scale":"x","field":"x"},"size":{"scale":"symSize","field":"series"},"fill":{"scale":"color","field":"series"},"stroke":{"scale":"color","field":"series"},"shape":{"value":"circle"},"strokeWidth":{"value":0}}},"from":{"data":"chart"}}],"height":150,"axes":[{"type":"x","title":"Year","scale":"x","format":"d","properties":{"title":{"fill":{"value":"#54595d"}},"grid":{"stroke":{"value":"#54595d"}},"ticks":{"stroke":{"value":"#54595d"}},"axis":{"strokeWidth":{"value":2},"stroke":{"value":"#54595d"}},"labels":{"fill":{"value":"#54595d"}}},"grid":false},{"type":"y","title":"Population","scale":"y","format":"d","properties":{"title":{"fill":{"value":"#54595d"}},"grid":{"stroke":{"value":"#54595d"}},"ticks":{"stroke":{"value":"#54595d"}},"axis":{"strokeWidth":{"value":2},"stroke":{"value":"#54595d"}},"labels":{"fill":{"value":"#54595d"}}},"grid":true}],"data":[{"format":{"parse":{"y":"integer","x":"integer"},"type":"json"},"name":"chart","values":[{"y":3490540,"series":"y","x":1963},{"y":4056995,"series":"y","x":1969},{"y":5661801,"series":"y","x":1980},{"y":7383097,"series":"y","x":1990},{"y":9885591,"series":"y","x":2000},{"y":13092666,"series":"y","x":2010}]}],"width":350}
- Timbaaa -> ping me 10:14, 15 August 2020 (UTC)
@Pietrasagh:Finalized with following:
- 2 new fields in `data`- one for horizontal annotations, one for vertical annotations
- 4 new fields in `marks` one for horizontal annotations(`line` and `text` types), one for vertical annotations(`line` and `text` types)
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org. |
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org. |
My initial usage request was for the following graph: to mark the dates of lockdown and openings, etc..,
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org. |
Something like this
Graphs are unavailable due to technical issues. There is more info on Phabricator and on MediaWiki.org. |
Another usage example is at Nationwide opinion polling for the 2020 Democratic Party presidential primaries#Polling aggregation - Timbaaa -> ping me 06:43, 16 August 2020 (UTC)
annotations test
Feel free to test new code. It's on German wiki. I'm still working on it. As always there are problems with bar charts.
Example is here de:Benutzer:Pietrasagh/Spielwiese2
{{Graph:Chart/Spielwiese2
|type = line
|colors = #ffff5ba0, #641050ff, #ffaaff00,|x=0,1,2,3|y1=0,3.342,2.3423,5.32423|y2=1,2.342,4.63,2.32423|y3=3,1.342,2.63,6.32423|linewidths = 2,4,0|showSymbols = 5,8,10|symbolsShape = triangle_up, cross, banana
|vannotatonsline = 1, 2, 3
|hannotatonsline = 4, 5, 6
|vannotatonslabel = label1, label2, label3
|hannotatonslabel = label4, label5, label6
}}
--Pietrasagh (talk) 20:28, 22 August 2020 (UTC)
- Pietrasagh, Tested with few cases at User:Timbaaa/sandbox/2(with debug) and Template:Graph:Chart/testcases.
- When attempting to use either one annotations, bugs appear:
- When using v only - h annotation appear at `y:value=0`(since there is no data for mark in JSON).
- When using h only - there is no `mark` properties for annotations in vegaJSON - Timbaaa -> ping me 02:52, 23 August 2020 (UTC)
- Thanks for tests. Now it seems to work. Please see [User:Pietrasagh/sandbox2]] --Pietrasagh (talk) 08:31, 23 August 2020 (UTC)
The Signpost: 30 August 2020
- News and notes: The high road and the low road
- In the media: Storytelling large and small
- Featured content: Going for the goal
- Special report: Wikipedia's not so little sister is finding its own way
- Op-Ed: The longest-running hoax
- Traffic report: Heart, soul, umbrellas, and politics
- News from the WMF: Fourteen things we’ve learned by moving Polish Wikimedia conference online
- Recent research: Detecting spam, and pages to protect; non-anonymous editors signal their intelligence with high-quality articles
- Arbitration report: A slow couple of months
- From the archives: Wikipedia for promotional purposes?
Simon Munzu
You still have not corrected two inaccuracies about 'Simon Munzu' (me) that I brought to your attention about three months ago.
- @Mia Abiekuti and Simon Munzu: I have replied to your query here.(Click the blue link). Please sign your messages on talk page by typing "~~~~" at the end of your message. → Timbaaa talk 01:47, 26 September 2020 (UTC)
The Signpost: 27 September 2020
- Special report: Paid editing with political connections
- News and notes: More large-scale errors at a "small" wiki
- In the media: WIPO, Seigenthaler incident 15 years later
- Featured content: Life finds a Way
- Arbitration report: Clarifications and requests
- Traffic report: Is there no justice?
- Recent research: Wikipedia's flood biases
The Signpost: 27 September 2020
- Special report: Paid editing with political connections
- News and notes: More large-scale errors at a "small" wiki
- In the media: WIPO, Seigenthaler incident 15 years later
- Featured content: Life finds a Way
- Arbitration report: Clarifications and requests
- Traffic report: Is there no justice?
- Recent research: Wikipedia's flood biases
Your help desk question
You did not get a response to this question. Did you find the answer somewhere else? If not, it sounds like a question for WP:VPT.— Vchimpanzee • talk • contributions • 22:58, 28 September 2020 (UTC)
The Signpost: 1 November 2020
- News and notes: Ban on IPs on ptwiki, paid editing for Tatarstan, IP masking
- In the media: Murder, politics, religion, health and books
- Book review: Review of Wikipedia @ 20
- Discussion report: Proposal to change board composition, In The News dumps Trump story
- Featured content: The "Green Terror" is neither green nor sufficiently terrifying. Worst Hallowe'en ever.
- Traffic report: Jump back, what's that sound?
- Interview: Joseph Reagle and Jackie Koerner
- News from the WMF: Meet the 2020 Wikimedian of the Year
- Recent research: OpenSym 2020: Deletions and gender, masses vs. elites, edit filters
- In focus: The many (reported) deaths of Wikipedia
ArbCom 2020 Elections voter message
The Signpost: 29 November 2020
- News and notes: Jimmy Wales "shouldn't be kicked out before he's ready"
- Op-Ed: Re-righting Wikipedia
- Opinion: How billionaires re-write Wikipedia
- Featured content: Frontonia sp. is thankful for delicious cyanobacteria
- Traffic report: 007 with Borat, the Queen, and an election
- News from Wiki Education: An assignment that changed a life: Kasey Baker
- GLAM plus: West Coast New Zealand's Wikipedian at Large
- Wikicup report: Lee Vilenski wins the 2020 WikiCup
- Recent research: Wikipedia's Shoah coverage succeeds where libraries fail
- Essay: Writing about women
The Signpost: 28 December 2020
- Arbitration report: 2020 election results
- Featured content: Very nearly ringing in the New Year with "Blank Space" – but we got there in time.
- Traffic report: 2020 wraps up
- Recent research: Predicting the next move in Wikipedia discussions
- Essay: Subjective importance
- Gallery: Angels in the architecture
- Humour: 'Twas the Night Before Wikimas
The Signpost: 31 January 2021
- News and notes: 1,000,000,000 edits, board elections, virtual Wikimania 2021
- Special report: Wiki reporting on the United States insurrection
- In focus: From Anarchy to Wikiality, Glaring Bias to Good Cop: Press Coverage of Wikipedia's First Two Decades
- Technology report: The people who built Wikipedia, technically
- Videos and podcasts: Celebrating 20 years
- News from the WMF: Wikipedia celebrates 20 years of free, trusted information for the world
- Recent research: Students still have a better opinion of Wikipedia than teachers
- Humour: Dr. Seuss's Guide to Wikipedia
- Featured content: New Year, same Featured Content report!
- Traffic report: The most viewed articles of 2020
- Obituary: Flyer22 Frozen
The Signpost: 28 February 2021
- News and notes: Maher stepping down
- Disinformation report: A "billionaire battle" on Wikipedia: Sex, lies, and video
- In the media: Corporate influence at OSM, Fox watching the hen house
- News from the WMF: Who tells your story on Wikipedia
- Featured content: A Love of Knowledge, for Valentine's Day
- Traffic report: Does it almost feel like you've been here before?
- Gallery: What is Black history and culture?
The Signpost: 28 March 2021
- News and notes: A future with a for-profit subsidiary?
- Gallery: Wiki Loves Monuments
- In the media: Wikimedia LLC and disinformation in Japan
- News from the WMF: Project Rewrite: Tell the missing stories of women on Wikipedia and beyond
- Recent research: 10%-30% of Wikipedia’s contributors have subject-matter expertise
- From the archives: Google isn't responsible for Wikipedia's mistakes
- Obituary: Yoninah
- From the editor: What else can we say?
- Arbitration report: Open letter to the Board of Trustees
- Traffic report: Wanda, Meghan, Liz, Phil and Zack
The Signpost: 25 April 2021
- From the editor: A change is gonna come
- Disinformation report: Paid editing by a former head of state's business enterprise
- In the media: Fernando, governance, and rugby
- Opinion: The (Universal) Code of Conduct
- Op-Ed: A Little Fun Goes A Long Way
- Changing the world: The reach of protest images on Wikipedia
- Recent research: Quality of aquatic and anatomical articles
- Traffic report: The verdict is guilty, guilty, guilty
- News from Wiki Education: Encouraging professional physicists to engage in outreach on Wikipedia
The Signpost: 25 April 2021
- From the editor: A change is gonna come
- Disinformation report: Paid editing by a former head of state's business enterprise
- In the media: Fernando, governance, and rugby
- Opinion: The (Universal) Code of Conduct
- Op-Ed: A Little Fun Goes A Long Way
- Changing the world: The reach of protest images on Wikipedia
- Recent research: Quality of aquatic and anatomical articles
- Traffic report: The verdict is guilty, guilty, guilty
- News from Wiki Education: Encouraging professional physicists to engage in outreach on Wikipedia
The Signpost: 25 April 2021
- From the editor: A change is gonna come
- Disinformation report: Paid editing by a former head of state's business enterprise
- In the media: Fernando, governance, and rugby
- Opinion: The (Universal) Code of Conduct
- Op-Ed: A Little Fun Goes A Long Way
- Changing the world: The reach of protest images on Wikipedia
- Recent research: Quality of aquatic and anatomical articles
- Traffic report: The verdict is guilty, guilty, guilty
- News from Wiki Education: Encouraging professional physicists to engage in outreach on Wikipedia
The Signpost: 27 June 2021
- News and notes: Elections, Wikimania, masking and more
- In the media: Boris and Joe, reliability, love, and money
- Disinformation report: Croatian Wikipedia: capture and release
- Recent research: Feminist critique of Wikipedia's epistemology, Black Americans vastly underrepresented among editors, Wiki Workshop report
- Traffic report: So no one told you life was gonna be this way
- News from the WMF: Searching for Wikipedia
- WikiProject report: WikiProject on open proxies interview
- Forum: Is WMF fundraising abusive?
- Discussion report: Reliability of WikiLeaks discussed
- Obituary: SarahSV
The Signpost: 25 July 2021
- News and notes: Wikimania and a million other news stories
- Special report: Hardball in Hong Kong
- In the media: Larry is at it again
- Board of Trustees candidates: See the candidates
- Traffic report: Football, tennis and marveling at Loki
- News from the WMF: Uncapping our growth potential – interview with James Baldwin, Finance and Administration Department
- Humour: A little verse
The Signpost: 29 August 2021
- News and notes: Enough time left to vote! IP ban
- In the media: Vive la différence!
- Wikimedians of the year: Seven Wikimedians of the year
- Gallery: Our community in 20 graphs
- News from Wiki Education: Changing the face of Wikipedia
- Recent research: IP editors, inclusiveness and empathy, cyclones, and world heritage
- WikiProject report: WikiProject Days of the Year Interview
- Traffic report: Olympics, movies, and Afghanistan
- Community view: Making Olympic history on Wikipedia
The Signpost: 26 September 2021
- News and notes: New CEO, new board members, China bans
- In the media: The future of Wikipedia
- Op-Ed: I've been desysopped
- Disinformation report: Paid promotional paragraphs in German parliamentary pages
- Discussion report: Editors discuss Wikipedia's vetting process for administrators
- Recent research: Wikipedia images for machine learning; Experiment justifies Wikipedia's high search rankings
- Community view: Is writing Wikipedia like making a quilt?
- Traffic report: Kanye, Emma Raducanu and 9/11
- News from Diff: Welcome to the first grantees of the Knowledge Equity Fund
- WikiProject report: The Random and the Beautiful
You have been pruned from the Wikipedia:WikiProject Tamil Nadu/Participants list.
Hi Timbaaa! You're receiving this notification because you were previously listed at Wikipedia:WikiProject Tamil Nadu/Participants, but you haven't made any edits to the English Wikipedia in over 1 year.
Because of your inactivity, you have been removed from the list. If you would like to resubscribe, you can do so at any time by visiting Wikipedia:WikiProject Tamil Nadu/Participants.
Thank you! Message delivered to you with love by Yapperbot :) | Is this wrong? Contact my bot operator. | Sent at 18:01, 27 September 2021 (UTC)
Your access to AWB may be temporarily removed
Hello Timbaaa! This message is to inform you that due to editing inactivity, your access to AutoWikiBrowser may be temporarily removed. If you do not resume editing within the next week, your username will be removed from the CheckPage. This is purely for routine maintenance and is not indicative of wrongdoing on your part. You may regain access at any time by simply requesting it at WP:PERM/AWB. Thank you! — MusikBot II talk 17:21, 28 September 2021 (UTC)
The Signpost: 31 October 2021
- From the editor: Different stories, same place
- News and notes: The sockpuppet who ran for adminship and almost succeeded
- Discussion report: Editors brainstorm and propose changes to the Requests for adminship process
- Recent research: Welcome messages fail to improve newbie retention
- Community view: Reflections on the Chinese Wikipedia
- Traffic report: James Bond and the Giant Squid Game
- Technology report: Wikimedia Toolhub, winners of the Coolest Tool Award, and more
- Serendipity: How Wikipedia helped create a Serbian stamp
- Book review: Wikipedia and the Representation of Reality
- WikiProject report: Redirection
- Humour: A very Wiki crossword
Nomination for deletion of Template:Grand Trunk Express route map
Template:Grand Trunk Express route map has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. WikiCleanerMan (talk) 21:53, 31 October 2021 (UTC)
The Signpost: 29 November 2021
- In the media: Denial: climate change, mass killings and pornography
- WikiCup report: The WikiCup 2021
- Deletion report: What we lost, what we gained
- From a Wikipedia reader: What's Matt Amodio?
- Arbitration report: ArbCom in 2021
- Discussion report: On the brink of change – RFA reforms appear imminent
- Technology report: What does it take to upload a file?
- WikiProject report: Interview with contributors to WikiProject Actors and Filmmakers
- Recent research: Vandalizing Wikipedia as rational behavior
- Humour: A very new very Wiki crossword
The Signpost: 28 December 2021
- From the editor: Here is the news
- News and notes: Jimbo's NFT, new arbs, fixing RfA, and financial statements
- Serendipity: Born three months before her brother?
- In the media: The past is not even past
- Arbitration report: A new crew for '22
- By the numbers: Four billion words and a few numbers
- Deletion report: We laughed, we cried, we closed as "no consensus"
- Gallery: Wikicommons presents: 2021
- Traffic report: Spider-Man, football and the departed
- Crossword: Another Wiki crossword for one and all
- Humour: Buying Wikipedia
The Signpost: 30 January 2022
- Special report: WikiEd course leads to Twitter harassment
- News and notes: Feedback for Board of Trustees election
- Interview: CEO Maryana Iskander "four weeks in"
- Black History Month: What are you doing for Black History Month?
- WikiProject report: The Forgotten Featured
- Arbitration report: New arbitrators look at new case and antediluvian sanctions
- Traffic report: The most viewed articles of 2021
- Obituary: Twofingered Typist
- Essay: The prime directive
- In the media: Fuzzy-headed government editing
- Recent research: Articles with higher quality ratings have fewer "knowledge gaps"
- Crossword: Cross swords with a crossword
Nomination for deletion of Template:COVID-19 pandemic data/India/Andhra Pradesh medical cases chart
Template:COVID-19 pandemic data/India/Andhra Pradesh medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:37, 19 February 2022 (UTC)
Nomination for deletion of Template:COVID-19 pandemic data/India/Bihar medical cases chart
Template:COVID-19 pandemic data/India/Bihar medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:38, 19 February 2022 (UTC)
Nomination for deletion of Template:COVID-19 pandemic data/India/Gujarat medical cases chart
Template:COVID-19 pandemic data/India/Gujarat medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:38, 19 February 2022 (UTC)
Nomination for deletion of Template:COVID-19 pandemic data/India/Nagaland medical cases chart
Template:COVID-19 pandemic data/India/Nagaland medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:42, 19 February 2022 (UTC)
Nomination for deletion of Template:COVID-19 pandemic data/India/Punjab medical cases chart
Template:COVID-19 pandemic data/India/Punjab medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:42, 19 February 2022 (UTC)
Nomination for deletion of Template:COVID-19 pandemic data/India/Jammu and Kashmir medical cases chart
Template:COVID-19 pandemic data/India/Jammu and Kashmir medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:43, 19 February 2022 (UTC)
Nomination for deletion of Template:COVID-19 pandemic data/India/Madhya Pradesh medical cases chart
Template:COVID-19 pandemic data/India/Madhya Pradesh medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:45, 19 February 2022 (UTC)
Nomination for deletion of Template:COVID-19 pandemic data/India/Puducherry medical cases chart
Template:COVID-19 pandemic data/India/Puducherry medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:45, 19 February 2022 (UTC)
Nomination for deletion of Template:COVID-19 pandemic data/India/Telangana medical cases chart
Template:COVID-19 pandemic data/India/Telangana medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:46, 19 February 2022 (UTC)
Nomination for deletion of Template:COVID-19 pandemic data/India/Uttar Pradesh medical cases chart
Template:COVID-19 pandemic data/India/Uttar Pradesh medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:46, 19 February 2022 (UTC)
Nomination for deletion of Template:COVID-19 pandemic data/India/Uttarakhand medical cases chart
Template:COVID-19 pandemic data/India/Uttarakhand medical cases chart has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Nigej (talk) 09:47, 19 February 2022 (UTC)
The Signpost: 27 February 2022
- From the team: Selection of a new Signpost Editor-in-Chief
- News and notes: Impacts of Russian invasion of Ukraine
- Special report: A presidential candidate's team takes on Wikipedia
- In the media: Wiki-drama in the UK House of Commons
- Technology report: Community Wishlist Survey results
- WikiProject report: 10 years of tea
- Featured content: Featured Content returns
- Deletion report: The 10 most SHOCKING deletion discussions of February
- Recent research: How editors and readers may be emotionally affected by disasters and terrorist attacks
- Arbitration report: Parties remonstrate, arbs contemplate, skeptics coordinate
- Gallery: The vintage exhibit
- Traffic report: Euphoria, Pamela Anderson, lies and Netflix
- News from Diff: The Wikimania 2022 Core Organizing Team
- Crossword: A Crossword, featuring Featured Articles
- Humour: Notability of mailboxes
The Signpost: 27 March 2022
- From the Signpost team: How The Signpost is documenting the 2022 Russian invasion of Ukraine
- News and notes: Of safety and anonymity
- Eyewitness Wikimedian, Kharkiv, Ukraine: Countering Russian aggression with a camera
- Eyewitness Wikimedian, Vinnytsia, Ukraine: War diary
- Eyewitness Wikimedian, Western Ukraine: Working with Wikipedia helps
- Disinformation report: The oligarchs' socks
- In the media: Ukraine, Russia, and even some other stuff
- Wikimedian perspective: My heroes from Russia, Ukraine & beyond
- Discussion report: Athletes are less notable now
- Technology report: 2022 Wikimedia Hackathon
- Arbitration report: Skeptics given heavenly judgement, whirlwind of Discord drama begins to spin for tropical cyclone editors
- Traffic report: War, what is it good for?
- Deletion report: Ukraine, werewolves, Ukraine, YouTube pundits, and Ukraine
- From the archives: Burn, baby burn
- Essay: Yes, the sky is blue
- Tips and tricks: Become a keyboard ninja
- On the bright side: The bright side of news
The Signpost: 24 April 2022
- News and notes: Double trouble
- In the media: The battlegrounds outside and inside Wikipedia
- Special report: Ukrainian Wikimedians during the war
- Eyewitness Wikimedian, Vinnytsia, Ukraine: War diary (Part 2)
- Technology report: 8-year-old attribution issues in Media Viewer
- Featured content: Wikipedia's best content from March
- Interview: On a war and a map
- Serendipity: Wikipedia loves photographs, but hates photographers
- Traffic report: Justice Jackson, the Smiths, and an invasion
- News from the WMF: How Smart is the SMART Copyright Act?
- Humour: Really huge message boxes
- From the archives: Wales resigned WMF board chair in 2006 reorganization
The Signpost: 29 May 2022
- From the team: A changing of the guard
- News and notes: 2022 Wikimedia Board elections
- Community view: Have your say in the 2022 Wikimedia Foundation Board elections
- In the media: Putin, Jimbo, Musk and more
- Special report: Three stories of Ukrainian Wikimedians during the war
- Discussion report: Portals, April Fools, admin activity requirements and more
- WikiProject report: WikiProject COVID-19 revisited
- Technology report: A new video player for Wikimedia wikis
- Featured content: Featured content of April
- Interview: Wikipedia's pride
- Serendipity: Those thieving image farms
- Recent research: 35 million Twitter links analysed
- Tips and tricks: The reference desks of Wikipedia
- Traffic report: Strange highs and strange lows
- News from Diff: Winners of the Human rights and Environment special nomination by Wiki Loves Earth announced
- News from the WMF: The EU Digital Services Act: What’s the Deal with the Deal?
- From the archives: The Onion and Wikipedia
- Humour: A new crossword
The Signpost: 26 June 2022
- News and notes: WMF inks new rules on government-ordered takedowns, blasts Russian feds' censor demands, spends big bucks
- In the media: Editor given three-year sentence, big RfA makes news, Guy Standing takes it sitting down
- Special report: "Wikipedia's independence" or "Wikimedia's pile of dosh"?
- Featured content: Articles on Scots' clash, Yank's tux, Austrian's action flick deemed brilliant prose
- Recent research: Wikipedia versus academia (again), tables' "immortality" probed
- Serendipity: Was she really a Swiss lesbian automobile racer?
- News from the WMF: Wikimedia Enterprise signs first deals
- Gallery: Celebration of summer, winter
The Signpost: 1 August 2022
- From the editors: Rise of the machines, or something
- News and notes: Information considered harmful
- In the media: Censorship, medieval hoaxes, "pathetic supervillains", FB-WMF AI TL bid, dirty duchess deeds done dirt cheap
- Op-Ed: The "recession" affair
- Eyewitness Wikimedian, Vinnytsia, Ukraine: War diary (part 3)
- Community view: Youth culture and notability
- Opinion: Criminals among us
- Arbitration report: Winds of change blow for cyclone editors, deletion dustup draws toward denouement
- Deletion report: This is Gonzo Country
- Discussion report: Notability for train stations, notices for mobile editors, noticeboards for the rest of us
- Featured content: A little list with surprisingly few lists
- Tips and tricks: Cleaning up awful citations with Citation bot
- On the bright side: Ukrainian Wikimedians during the war — three (more) stories
- Essay: How to research an image
- Recent research: A century of rulemaking on Wikipedia analyzed
- Serendipity: Don't cite Wikipedia
- Gallery: A backstage pass
- From the archives: 2012 Russian Wikipedia shutdown as it happened
The Signpost: 31 August 2022
- News and notes: Admins wanted on English Wikipedia, IP editors not wanted on Farsi Wiki, donations wanted everywhere
- Special report: Wikimania 2022: no show, no show up?
- In the media: Truth or consequences? A tough month for truth
- Discussion report: Boarding the Trustees
- News from Wiki Education: 18 years a Wikipedian: what it means to me
- In focus: Thinking inside the box
- Tips and tricks: The unexpected rabbit hole of typo fixing in citations...
- Technology report: Vector (2022) deployment discussions happening now
- Serendipity: Two photos of every library on earth
- Featured content: Our man drills are safe for work, but our Labia is Fausta.
- Recent research: The dollar value of "official" external links
- Traffic report: What dreams (and heavily trafficked articles) may come
- Essay: Delete the junk!
- Humour: CommonsComix No. 1
- From the archives: 5, 10, and 15 years ago
The Signpost: 30 September 2022
- News and notes: Board vote results, bot's big GET, crat chat gives new mop, WMF seeks "sound logo" and "organizer lab"
- In the media: A few complaints and mild disagreements
- Special report: Decentralized Fundraising, Centralized Distribution
- Discussion report: Much ado about Fox News
- Traffic report: Kings and queens and VIPs
- Featured content: Farm-fresh content
- CommonsComix: CommonsComix 2: Paulus Moreelse
- From the archives: 5, 10, and 15 Years ago: September 2022
The Signpost: 31 October 2022
- From the team: A new goose on the roost
- News from the WMF: Governance updates from, and for, the Wikimedia Endowment
- Disinformation report: From Russia with WikiLove
- Featured content: Topics, lists, submarines and Gurl.com
- Serendipity: We all make mistakes – don’t we?
- Traffic report: Mama, they're in love with a criminal
The Signpost: 28 November 2022
- News and notes: English Wikipedia editors: "We don't need no stinking banners"
- In the media: "The most beautiful story on the Internet"
- Disinformation report: Missed and Dissed
- Book review: Writing the Revolution
- Technology report: Galactic dreams, encyclopedic reality
- Essay: The Six Million FP Man
- Tips and tricks: (Wiki)break stuff
- Recent research: Study deems COVID-19 editors smart and cool, questions of clarity and utility for WMF's proposed "Knowledge Integrity Risk Observatory"
- Featured content: A great month for featured articles
- Obituary: A tribute to Michael Gäbler
- From the archives: Five, ten, and fifteen years ago
- CommonsComix: Joker's trick
The Signpost: 1 January 2023
- Interview: ComplexRational's RfA debrief
- Technology report: Wikimedia Foundation's Abstract Wikipedia project "at substantial risk of failure"
- Essay: Mobile editing
- Arbitration report: Arbitration Committee Election 2022
- Recent research: Graham's Hierarchy of Disagreement in talk page disputes
- Featured content: Would you like to swing on a star?
- Traffic report: Football, football, football! Wikipedia Football Club!
- CommonsComix: #4: The Course of WikiEmpire
- From the archives: Five, ten, and fifteen years ago
The Signpost: 16 January 2023
- Special report: Coverage of 2022 bans reveals editors serving long sentences in Saudi Arabia since 2020
- News and notes: Revised Code of Conduct Enforcement Guidelines up for vote, WMF counsel departs, generative models under discussion
- In the media: Court orders user data in libel case, Saudi Wikipedia in the crosshairs, Larry Sanger at it again
- Technology report: View it! A new tool for image discovery
- In focus: Busting into Grand Central
- Serendipity: How I bought part of Wikipedia – for less than $100
- Featured content: Flip your lid
- Traffic report: The most viewed articles of 2022
- From the archives: Five, ten, and fifteen years ago