forked from daattali/daattali.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshiny.html
53 lines (47 loc) · 1.74 KB
/
shiny.html
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
---
layout: base
title: "Dean Attali - R-Shiny Consultant"
subtitle: "R-Shiny developer and consultant with a MSc in Bioinformatics and a Bachelor of Computer Science. Previously a software engineer at Google, IBM, and Wish.com."
show-avatar: false
nav-short: true
---
<style>
footer {
margin-top: -10px;
}
#shiny-server-iframe {
margin-top: 51px;
border: 0 none;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
$(window).resize(function() {
setTimeout(function() {
$("#shiny-server-iframe")[0].contentWindow.postMessage('getHeight', '*');
}, 100);
});
$("#shiny-server-iframe").load(function() {
$("#shiny-server-iframe")[0].contentWindow.postMessage('getHeight', '*');
});
window.addEventListener("message", function(event) {
if (event.origin !== "https://daattali.com") {
return;
}
var data = event.data.split(":");
if (data[0] == "height") {
$("#shiny-server-iframe")[0].height = data[1];
} else if (data[0] == "scroll-to") {
$('html, body').animate({ scrollTop : data[1]}, 500);
}
})
});
</script>
<div style="font-size: 1px; color: transparent; height: 0;">
Dean is an R-Shiny expert and consultant
Services include: Building Shiny apps and analytics dashboards • Integrating Shiny apps with external services or libraries • Offering expert advice and guidance with Shiny
Clients range from individuals to startups to large companies and government agencies.
Previously a software engineer at Google and top San Francisco startup Wish.com
MSc in Bioinformatics, Bachelor of Computer Science.
</div>
<iframe id="shiny-server-iframe" src="https://daattali.com/shiny?iframe=1" scrolling="no" width="100%" height="1500"></iframe>