-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.xml
78 lines (50 loc) · 5.82 KB
/
feed.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.2.0">Jekyll</generator><link href="esracamci.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="esracamci.github.io/" rel="alternate" type="text/html" /><updated>2021-07-31T13:14:46-04:00</updated><id>esracamci.github.io/feed.xml</id><title type="html">Esra Camci</title><author><name>Esra Camci</name></author><entry><title type="html">bulb to bloom timeline</title><link href="esracamci.github.io/bulbs/" rel="alternate" type="text/html" title="bulb to bloom timeline" /><published>2021-04-02T00:00:00-04:00</published><updated>2021-04-02T00:00:00-04:00</updated><id>esracamci.github.io/bulbs</id><content type="html" xml:base="esracamci.github.io/bulbs/"><p>Central Pennsylvania, USDA zone 6b</p>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load("current", {packages:["timeline"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var container = document.getElementById('example5.1');
var chart = new google.visualization.Timeline(container);
var dataTable = new google.visualization.DataTable();
dataTable.addColumn({ type: 'string', id: 'Room' });
dataTable.addColumn({ type: 'string', id: 'Name' });
dataTable.addColumn({ type: 'date', id: 'Start' });
dataTable.addColumn({ type: 'date', id: 'End' });
dataTable.addRows([
// months are, for some reason, -1
[ 'Daffodil', 'Plant bulbs', new Date(2020,10,1,0,0,0), new Date(2020,10,1,0,0,0) ],
[ 'Daffodil', 'bloom by back deck', new Date(2021,2,26,0,0,0), new Date(2021,3,15,0,0,0) ],
[ 'Daffodil', 'by arbor day pine', new Date(2021,2,27,0,0,0), new Date(2021,3,19,0,0,0) ],
[ 'Daffodil', 'by weeping cherry', new Date(2021,2,29,0,0,0), new Date(2021,3,19,0,0,0) ],
[ 'Daffodil', 'in veggie patch W', new Date(2021,3,5,0,0,0), new Date(2021,3,19,0,0,0) ],
[ 'Iris', 'Plant bulbs', new Date(2020,10,2,0,0,0), new Date(2020,10,2,0,0,0) ],
// [ 'Iris', 'bloom by deck', new Date(2021,4,29,0,0,0), new Date(2021,5,20,0,0,0) ],
// [ 'Iris', 'by weeping cherry', new Date(2021,4,29,0,0,0), new Date(2021,5,20,0,0,0) ],
// [ 'Iris', 'in veggie patch E', new Date(2021,4,29,0,0,0), new Date(2021,5,20,0,0,0) ],
[ 'Puschkinia', 'Plant bulbs', new Date(2020,9,28,0,0,0), new Date(2020,9,28,0,0,0) ],
[ 'Puschkinia', 'bloom in rock garden', new Date(2021,2,17,0,0,0), new Date(2021,3,15,0,0,0) ],
[ 'Chionodoxa', 'Plant bulbs', new Date(2020,9,20,0,0,0), new Date(2020,9,20,0,0,0) ],
[ 'Chionodoxa', 'bloom by garage W', new Date(2021,3,3,0,0,0), new Date(2021,3,17,0,0,0) ],
[ 'Chionodoxa', 'by garage E', new Date(2021,3,7,0,0,0), new Date(2021,3,19,0,0,0) ],
[ 'Crocus', 'Plant bulbs', new Date(2020,9,20,0,0,0), new Date(2020,9,21,0,0,0) ],
[ 'Crocus', 'bloom by garage W', new Date(2021,2,29,0,0,0), new Date(2021,3,7,0,0,0) ],
[ 'Crocus', 'by garage E', new Date(2021,2,29,0,0,0), new Date(2021,3,7,0,0,0) ],
[ 'Red Devon Daffodil', 'Plant bulbs', new Date(2020,9,20,0,0,0), new Date(2020,9,20,0,0,0) ],
[ 'Red Devon Daffodil', 'bloom by garage W', new Date(2021,3,16,0,0,0), new Date(2021,3,19,0,0,0) ],
[ 'Red Devon Daffodil', 'by garage E', new Date(2021,3,17,0,0,0), new Date(2021,3,19,0,0,0) ],
['Oxford Elite Tulip', 'Plant bulbs', new Date(2020,9,20,0,0,0), new Date(2020,9,20,0,0,0) ],
['Dutch Iris', 'Plant bulbs', new Date(2020,9,20,0,0,0), new Date(2020,9,20,0,0,0) ],
[ 'Tulip', 'Plant bulbs', new Date(2020,9,15,0,0,0), new Date(2020,9,15,0,0,0) ],
[ 'Tulip', 'Bloom by oak tree', new Date(2021,3,18,0,0,0), new Date(2021,3,19,0,0,0) ],
]);
var options = {
timeline: { colorByRowLabel: true },
colors: ['FFCD00', '2F14F0', '4B87FF', 'A9AAFF', '7800FF', 'FFC100', 'F07814', '4614F0', 'FF4B6C'],
title: '2020-2021 Camci Garden Blooms',
is3D: true
};
chart.draw(dataTable, options);
}
</script>
<div id="example5.1" style="height: 800px;"></div></content><author><name>Esra Camci</name></author><category term="data-viz" /><category term="plants" /><summary type="html">Central Pennsylvania, USDA zone 6b</summary></entry><entry><title type="html">Hello world</title><link href="esracamci.github.io/hello-world/" rel="alternate" type="text/html" title="Hello world" /><published>2021-03-04T00:00:00-05:00</published><updated>2021-03-04T00:00:00-05:00</updated><id>esracamci.github.io/hello-world</id><content type="html" xml:base="esracamci.github.io/hello-world/"><p>This is a placeholder.</p></content><author><name>Esra Camci</name></author><category term="HTML" /><category term="Code" /><category term="jekyll" /><category term="blog" /><category term="github-page" /><summary type="html">This is a placeholder.</summary></entry></feed>