-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathpage-index.js
159 lines (159 loc) Β· 4.85 KB
/
page-index.js
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
module.exports = [
{
title: "Tutorials",
href: "tutorials",
excerpt: "Learn about common scenarios and use cases for Timescale",
children: [
{
title: "Build a Real-Time Cryptocurrency Data Pipeline with TimescaleDB and Python",
href: "real-time-cryptocurrency-data-pipeline",
excerpt: "Create a real-time cryptocurrency data pipeline using TimescaleDB and Python",
},
{
title: "Cryptocurrency - part 1",
href: "blockchain-query",
excerpt: "Query the Bitcoin blockchain",
children: [
{
title: "Set up",
href: "blockchain-dataset",
excerpt:
"Set up a dataset so you can query the Bitcoin blockchain",
},
{
title: "Query data",
href: "beginner-blockchain-query",
excerpt: "Query the Bitcoin blockchain dataset",
},
{
title: "Bonus: set up compression",
href: "blockchain-compress",
excerpt:
"Compress the dataset so you can store the Bitcoin blockchain more efficiently",
},
],
},
{
title: "Cryptocurrency - part 2",
href: "blockchain-analyze",
excerpt: "Analyze the Bitcoin blockchain with Timescale hyperfunctions",
children: [
{
title: "Set up",
href: "blockchain-dataset",
excerpt:
"Set up a dataset so you can analyze the Bitcoin blockchain",
},
{
title: "Query data",
href: "analyze-blockchain-query",
excerpt: "Analyze the Bitcoin blockchain dataset with Timescale hyperfunctions",
},
],
},
{
title: "Energy - part 1",
href: "energy-data",
excerpt: "Learn how to analyze energy consumption data",
children: [
{
title: "Set up",
href: "dataset-energy",
excerpt: "Set up a dataset so you can analyze energy consumption data",
},
{
title: "Query data",
href: "query-energy",
excerpt: "Queries energy consumption data",
},
{
title: "Bonus: set up compression",
href: "compress-energy",
excerpt:
"Compress the dataset so you can store the data more efficiently",
},
]
},
{
title: "Finance - part 1",
href: "financial-tick-data",
excerpt: "Use Timescale to store financial tick data",
children: [
{
title: "Set up",
href: "financial-tick-dataset",
excerpt: "Set up a dataset so you can query financial tick data",
},
{
title: "Query data",
href: "financial-tick-query",
excerpt: "Query and visualize financial tick data",
},
{
title: "Bonus: set up compression",
href: "financial-tick-compress",
excerpt:
"Compress the dataset so you can store the data more efficiently",
},
],
},
{
title: "Finance - part 2",
href: "financial-ingest-real-time",
excerpt: "Ingest real-time financial data with websocket",
children: [
{
title: "Set up",
href: "financial-ingest-dataset",
excerpt: "Set up a dataset so you can query the real-time data",
},
{
title: "Query data",
href: "financial-ingest-query",
excerpt: "Query and visualize real-time data",
},
],
},
{
title: "Transport - part 1",
href: "nyc-taxi-cab",
excerpt: "An introduction to time-series using NYC taxi data",
children: [
{
title: "Set up",
href: "dataset-nyc",
excerpt: "Set up a dataset so you can query NYC data",
},
{
title: "Query data",
href: "query-nyc",
excerpt: "Query NYC data",
},
{
title: "Bonus: set up compression",
href: "compress-nyc",
excerpt:
"Compress the dataset so you can store the data more efficiently",
},
],
},
{
title: "Transport - part 2",
href: "nyc-taxi-geospatial",
excerpt: "Learn how to plot geospatial time-series data with NYC taxi cabs",
children: [
{
title: "Set up",
href: "dataset-nyc",
excerpt: "Set up a dataset so you can plot geospatial NYC taxi data",
},
{
title: "Query data",
href: "plot-nyc",
excerpt: "Plot geospatial NYC taxi data",
},
],
},
],
},
];