-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (127 loc) · 5.97 KB
/
index.html
File metadata and controls
138 lines (127 loc) · 5.97 KB
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
<html>
<head>
<title>
javascript-cheat-sheet.notebook
</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="./assets/normalize.css/normalize.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Roboto|Noto+Sans|Source+Code+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="tailwind.css" />
<link href="./assets/c3/c3.min.css" rel="stylesheet">
<link rel="stylesheet" data-name="vs/editor/editor.main" href="./assets/monaco-editor/min/vs/editor/editor.main.css">
<link rel="stylesheet" type="text/css" href="menu.css">
<link rel="stylesheet" type="text/css" href="index.css">
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1131902396995880');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1131902396995880&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
</head>
<body>
<!-- https://codepen.io/surjithctly/pen/pLDwe -->
<input type="checkbox" name="toggle" id="toggle" />
<label for="toggle"></label>
<div class="flex flex-row flex-wrap">
<div class="w-full md:w-3/4 lg:w-3/4 xl:w-3/4">
<div class="pl-4 pr-4">
<div id="root"></div>
</div>
</div>
<div class="w-full md:w-1/4 lg:w-1/4 xl:w-1/4">
<div
class="flex flex-col items-center text-center border rounded p-4 mt-2 dfn-ad mt-32"
style="background-color: #4182E4;"
>
<a
target="_blank"
href="https://www.data-forge-notebook.com"
>
<img
class="w-full"
src="dfn-logo.png"
alt="Data-Forge Notebook"
>
</a>
<div class="text-sm mt-4 leading-normal">Exploratory coding, data analysis and visualization for JavaScript and TypeScript</div>
<a
target="_blank"
href="https://www.data-forge-notebook.com"
class="inline-block font-bold border rounded text-blue-500 border-white hover:text-blue-700 bg-white p-8 pt-3 pb-3 mt-4"
>
Learn more
</a>
</div>
<div
class="flex flex-col items-center text-center border rounded p-4 mt-8 dfn-ad"
style="background-color: #01313F;"
>
<a
target="_blank"
href="http://bit.ly/2t2cJu2"
>
<img
class="w-full"
src="JSDW.png"
alt="Data Wrangling with JavaScript"
>
</a>
<div class="text-sm mt-4 leading-normal">A practical and comprehensive guide to working with data in JavaScript</div>
<a
target="_blank"
href="http://bit.ly/2t2cJu2"
class="inline-block font-bold border rounded text-blue-500 border-white hover:text-blue-700 bg-white p-8 pt-3 pb-3 mt-4"
>
Learn more
</a>
</div>
</div>
</div>
<div class="menu">
<table>
<tr>
<td></td>
<td><a href="javascript-cheat-sheet.pdf" target="_blank">Download as PDF</a></td>
</tr>
<tr>
<td>The book</td>
<td><a href="http://bit.ly/2t2cJu2" target="_blank">Data Wrangling with JavaScript</a></td>
</tr>
<tr>
<td>The blog</td>
<td><a href="http://www.the-data-wrangler.com/" target="_blank">The Data Wrangler</a></td>
</tr>
</table>
<div style="padding-top: 15px";><strong>Edit <em>and</em> run</strong> this notebook in <a href="http://www.data-forge-notebook.com/" target="_blank">Data-Forge Notebook</a></div>
</div>
<script src="notebook.js"></script>
<script src="export.js"></script>
<!--
Monaco editor code has to come after export.js to avoid a problem.
-->
<script>var require = { paths: { 'vs': './assets/monaco-editor/min/vs' } };</script>
<script src="./assets/monaco-editor/min/vs/loader.js"></script>
<script src="./assets/monaco-editor/min/vs/editor/editor.main.nls.js"></script>
<script src="./assets/monaco-editor/min/vs/editor/editor.main.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
const els = document.getElementsByClassName("export-code");
for (var i = 0; i < els.length; ++i) {
monaco.editor.colorizeElement(els[i]);
}
});
</script>
</body>
</html>