User:KSmith (WMF): Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
Created page with "{{user info |full name = Kevin Smith|image name = Smith,_Kevin_March_2015.jpg |hover text = Kevin Smith, Agile Coach|job title = Agile Coach, [https://www.mediawiki.org/wiki/T..."
 
Sample burnup chart
Line 8: Line 8:
|contact me = * E-mail: ksmith{{@}}wikimedia.org
|contact me = * E-mail: ksmith{{@}}wikimedia.org
* IRC: "meeple27" on freenode}}
* IRC: "meeple27" on freenode}}

== Sample Burnup Chart ==
This is just some scratch work I'm doing, and needed a place to park it:
<graph>
{
"width": 400, "height": 200,
"padding": {"top": 10, "left": 30, "bottom": 30, "right": 10},
"data": [
{
"name": "table",
"values": [
{ "date": "2015-02-25", "scope":25, "done":0 },
{ "date": "2015-02-26", "scope":35, "done":5 },
{ "date": "2015-02-27", "scope":30, "done":9 },
{ "date": "2015-02-28", "scope":30, "done":18 },
{ "date": "2015-03-01", "scope":28, "done":22 },
{ "date": "2015-03-02", "scope":28, "done":27 }
]
}
],
"scales": [
{
"name": "x",
"type": "ordinal",
"range": "width",
"domain": {"data": "table", "field": "data.date"}
},
{
"name": "y",
"range": "height",
"nice": true,
"domain": {
"fields": [
{"data": "table", "field": "data.scope"},
{"data": "table", "field": "data.done"}
]
}
}
],
"axes": [
{"type": "x", "scale": "x"},
{"type": "y", "scale": "y"}
],
"marks": [
{
"type": "line",
"from": {"data": "table"},
"properties": {
"enter": {
"x": {"scale": "x", "field": "data.date"},
"x2": {"scale": "x", "field": "data.date", "offset": -1},
"y": {"scale": "y", "field": "data.done"},
"y2": {"scale": "y", "field": "data.done"}
},
"update": {
"stroke": {"value": "green"}
},
"hover": {
"stroke": {"value": "red"}
}
}
},
{
"type": "line",
"from": {"data": "table"},
"properties": {
"enter": {
"x": {"scale": "x", "field": "data.date"},
"x2": {"scale": "x", "field": "data.date", "offset": -1},
"y": {"scale": "y", "field": "data.scope"},
"y2": {"scale": "y", "field": "data.scope"}
},
"update": {
"stroke": {"value": "steelblue"}
},
"hover": {
"stroke": {"value": "red"}
}
}
}

]
}</graph>

Revision as of 20:28, 20 May 2015

Kevin Smith
Kevin Smith, Agile Coach
Kevin Smith
Agile Coach, Team Practices Group, Wikimedia Foundation

About me

My background is as a software developer, architect, and team lead. I have been a strong advocate of both FLOSS and agile software development since 1999. My first wikipedia edit was in 2005. My main hobby is boardgaming.

My work

I am coaching the Search Team. I am also observing the MediaWiki Architecture Committee on a temporary basis, and am guiding an initiative to get Phabricator to create better burn down charts.

Disclaimer: I work for the Wikimedia Foundation, and this is the account I intend to use for edits or statements I make in that role. However, the Foundation does not vet all my activity, so edits, statements, or other contributions made by this account may not reflect the views of the Foundation.

Contact me

  • E-mail: ksmith@wikimedia.org
  • IRC: "meeple27" on freenode


Sample Burnup Chart

This is just some scratch work I'm doing, and needed a place to park it: