Source: https://www.r-bloggers.com/2020/07/5-steps-to-change-github-default-branch-from-master-to-main/
git branch -m master main
git push -u origin main
| [ | |
| { "id": 1, "content": "A", "start": "2020-06-20", "title": "This is a <B>title</B> for item A", "group": "group1" }, | |
| { "id": 2, "content": "item 2", "start": "2020-04-14", "group": "group1" }, | |
| { "id": 3, "content": "item 3", "start": "2020-04-18", "group": "group2" }, | |
| { "id": 4, "content": "item 4", "start": "2020-04-16", "end": "2020-05-29", "className": "testA", "group": "group2" }, | |
| { "id": 5, "content": "item 5", "start": "2020-05-25", "end": "2020-06-07", "group": "group3" }, | |
| { "id": 6, "content": "item 6", "start": "2020-11-27", "type": "point", "group": "group1" }, | |
| { "id": 7, | |
| "content": "Background<BR>Item #<B>7</B>", | |
| "start": "2020-12-01", |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <title>Timeline w/ Remote Data</title> | |
| <style type="text/css"> | |
| body, html { | |
| font-family: sans-serif; | |
| } |
| swagger: "2.0" | |
| info: | |
| description: "jira-status-reporter endpoings" | |
| version: "1.0.0" | |
| title: "JSR" | |
| termsOfService: "https://github.com/jolewis-ddn/jira-status-reporter" | |
| contact: | |
| email: "tbd@tbd.com" | |
| license: | |
| name: "MIT" |
| [...Array(100).keys()].forEach((i) => { | |
| try { | |
| const startDate = new Date() | |
| // Adjust here if you want to stage a different date | |
| // startDate.setDate(startDate.getDate() + 3) // 3 days in the future | |
| addBusinessDays(startDate, i, true) | |
| } catch (err) { | |
| console.error(err.message) | |
| } | |
| }) |
Source: https://www.r-bloggers.com/2020/07/5-steps-to-change-github-default-branch-from-master-to-main/
git branch -m master main
git push -u origin main
I hereby claim:
To claim this, I am signing this object:
| Type | Now | Later | |
|---|---|---|---|
| a | 48 | 80 | |
| b | 12 | 0 | |
| c | 21 | 8 | |
| d | 2 | 16 | |
| e | 4 | 2 | |
| f | 2 | 2 | |
| g | 1 | 1 |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Slopegraph</title> | |
| <!-- <script language="javascript" type="text/javascript" src="./js/p5.min.js"></script> --> | |
| <script language="javascript" type="text/javascript" src="./js/p5.js"></script> | |
| <script language="javascript" type="text/javascript" src="./js/p5.dom.js"></script> | |
| <script lang="javascript" type="text/javascript" src="./js/slopegraph.js"></script> | |
| <script type="text/javascript">var slopegraph = new p5(slopegraph, 'slopegraph');</script> | |
| </head> |
| /** | |
| * slopegraph.js | |
| * @author John D. Lewis | |
| * @requires {@link p5.js} | |
| * @requires {@link p5.dom.js} | |
| * @file P5 script to create a slopegraph | |
| * | |
| * See also: | |
| * - https://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0003nk | |
| * - http://charliepark.org/slopegraphs/ |