Skip to content

Commit

Permalink
better logos + improve welcome slides
Browse files Browse the repository at this point in the history
  • Loading branch information
DivadNojnarg committed Oct 31, 2024
1 parent 95794a9 commit 538dcb8
Show file tree
Hide file tree
Showing 12 changed files with 177 additions and 60 deletions.
8 changes: 8 additions & 0 deletions _site/assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,12 @@

.mb-4{
margin-bottom:1.5rem!important
}

.container{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 20px;
}
34 changes: 31 additions & 3 deletions _site/search.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"href": "slides/0-welcome/welcome.html#david-granjon",
"title": "Introduction",
"section": "David Granjon",
"text": "David Granjon\n\n\nDavid works as a Lead Shiny Developer at Cynkra and founder of the open source RinteRface organisation."
"text": "David Granjon\n\n\nDavid works as a Lead Shiny Developer at cynkra GmbH and founder of the open source RinteRface organisation."
},
{
"objectID": "slides/1-blockr-user/blockr-user.html#developing-enterprise-grade-dashboards-isnt-easy",
Expand Down Expand Up @@ -137,7 +137,7 @@
"href": "slides/1-blockr-user/blockr-user.html#how-far-can-i-go-with-blockr",
"title": "Introduction to blockr for users",
"section": "How far can I go with blockr?",
"text": "How far can I go with blockr?\n\n\n\nFunded by"
"text": "How far can I go with blockr?"
},
{
"objectID": "slides/1-blockr-user/blockr-user.html#commercial-solutions",
Expand Down Expand Up @@ -522,7 +522,7 @@
"href": "slides/2-blockr-dev/blockr-dev.html#exercise-4-solution",
"title": "Introduction to blockr for developers",
"section": "🧪 Exercise 4: solution",
"text": "🧪 Exercise 4: solution\n\nregister_lm_block <- function(pkg) {\n register_block(\n constructor = new_cardinal09_block,\n name = \"cardinal09 block\",\n description = \"Create a cardinal09 block\",\n classes = c(\"cardinal09_block\", \"transform_block\"),\n input = \"data.frame\",\n output = \"gt\",\n package = pkg\n )\n}\n\n# Put in zzz.R\n.onLoad <- function(libname, pkgname) {\n register_lm_block(pkgname)\n invisible(NULL)\n}\n\n\n\n\nFunded by"
"text": "🧪 Exercise 4: solution\n\nregister_lm_block <- function(pkg) {\n register_block(\n constructor = new_cardinal09_block,\n name = \"cardinal09 block\",\n description = \"Create a cardinal09 block\",\n classes = c(\"cardinal09_block\", \"transform_block\"),\n input = \"data.frame\",\n output = \"gt\",\n package = pkg\n )\n}\n\n# Put in zzz.R\n.onLoad <- function(libname, pkgname) {\n register_lm_block(pkgname)\n invisible(NULL)\n}"
},
{
"objectID": "slides/2-blockr-dev/blockr-dev.html#how-does-a-select-block-look-like-14",
Expand Down Expand Up @@ -593,5 +593,33 @@
"title": "Introduction to blockr for developers",
"section": "How does a select block look like? (6/6)",
"text": "How does a select block look like? (6/6)\n\n\nnew_select_block <- function (columns = character(), ...)\n{\n all_cols <- function(data) colnames(data)\n fields <- list(\n columns = new_select_field(columns, all_cols, multiple = TRUE, title = \"Columns\")\n )\n\n select_expr <- quote(dplyr::select(.(columns)))\n\n6 new_block(\n fields = fields,\n expr = select_expr,\n class = c(\"select_block\", \"transform_block\"),\n ...\n )\n}\n\n\n6\n\nCall new_block, passing fields, an expression and custom class."
},
{
"objectID": "slides/0-welcome/welcome.html#hi-and-welcome",
"href": "slides/0-welcome/welcome.html#hi-and-welcome",
"title": "Introduction",
"section": "Hi and Welcome!",
"text": "Hi and Welcome!"
},
{
"objectID": "slides/0-welcome/welcome.html#important-information",
"href": "slides/0-welcome/welcome.html#important-information",
"title": "Introduction",
"section": "Important information",
"text": "Important information\n\nWorkshop website: https://bristolmyerssquibb.github.io/blockr.workshop/.\nLink to Posit Cloud: https://posit.cloud/spaces/562609/join?access_code=mg7T-WK4LDzIKbdkrRdFVHPBOWo-HaldODyqtjBk.\n"
},
{
"objectID": "slides/0-welcome/welcome.html#who-are-you-workshop-pre-requisites",
"href": "slides/0-welcome/welcome.html#who-are-you-workshop-pre-requisites",
"title": "Introduction",
"section": "Who are you: workshop pre-requisites",
"text": "Who are you: workshop pre-requisites\n\n\nYou are interested in data analysis.\nYou are an R user.\nYou are an R developer with package development knowledge."
},
{
"objectID": "slides/0-welcome/welcome.html#objectives",
"href": "slides/0-welcome/welcome.html#objectives",
"title": "Introduction",
"section": "Objectives",
"text": "Objectives\n\n\nAs an end-user: learn how to leverage blockr to create reproducible data pipelines in minutes without writing any code.\nAs a developer: learn how to empower users to use blockr by developing new blockr and deploying blockr applications."
}
]
64 changes: 30 additions & 34 deletions _site/slides/0-welcome/welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
}
</style>
<link rel="stylesheet" href="../../site_libs/revealjs/dist/theme/quarto.css">
<link rel="stylesheet" href="../../assets/css/custom.css">
<link href="../../site_libs/revealjs/plugin/quarto-line-highlight/line-highlight.css" rel="stylesheet">
<link href="../../site_libs/revealjs/plugin/reveal-menu/menu.css" rel="stylesheet">
<link href="../../site_libs/revealjs/plugin/reveal-menu/quarto-menu.css" rel="stylesheet">
Expand Down Expand Up @@ -337,68 +338,63 @@ <h1 class="title">Introduction</h1>
</div>

</section>
<section>
<section id="important-information" class="title-slide slide level1 center">
<h1>Important information</h1>
<section id="hi-and-welcome" class="slide level2" style="font-size: 1.5em">
<h2>Hi and Welcome!</h2>

</section>
<section id="before-we-start" class="slide level2">
<h2>Before we start</h2>
<img data-src="../../assets/images/hello.gif" class="quarto-figure quarto-figure-center r-stretch" style="width:100.0%"></section>
<section id="important-information" class="slide level2" style="font-size: 1.5em">
<h2>Important information</h2>
<ul>
<li>Workshop website: https://bristolmyerssquibb.github.io/blockr.workshop/.</li>
<li>Link to Posit Cloud: https://posit.cloud/spaces/562609/join?access_code=mg7T-WK4LDzIKbdkrRdFVHPBOWo-HaldODyqtjBk.</li>
<li></li>
</ul>
</section></section>
<section>
<section id="who-are-you" class="title-slide slide level1 center">
<h1>Who are you?</h1>

</section>
<section id="workshop-pre-requisites" class="slide level2">
<h2>Workshop pre-requisites</h2>
<section id="who-are-you-workshop-pre-requisites" class="slide level2" style="font-size: 1.5em">
<h2>Who are you: workshop pre-requisites</h2>
<div>
<ul>
<li>You are interested into data analysis.</li>
<li>You are an R user.</li>
<li>You are an <strong>R developer</strong> with package development knowledge.</li>
<li class="fragment">You are interested in <strong>data analysis</strong>.</li>
<li class="fragment">You are an R user.</li>
<li class="fragment">You are an <strong>R developer</strong> with package development knowledge.</li>
</ul>
</section></section>
<section>
<section id="who-are-we" class="title-slide slide level1 center">
<h1>Who are we?</h1>
</div>
</section>
<section id="david-granjon" class="slide level2" style="font-size: 1.5em">
<h2><strong>David Granjon</strong></h2>

<img data-src="./../../assets/images/david.jpg" class="quarto-figure quarto-figure-center r-stretch" style="width:70.0%"><p style="text-align: center">
David works as a Lead Shiny Developer at <a href="https://cynkra.com/"><strong>cynkra GmbH</strong></a> and founder of the open source <a href="https://rinterface.com/"><strong>RinteRface</strong></a> organisation.
</p>
</section>
<section id="karma" class="slide level2">
<section id="karma" class="slide level2" style="font-size: 1.5em">
<h2><strong>Karma</strong></h2>

<img data-src="./../../assets/images/karma.png" class="quarto-figure quarto-figure-center r-stretch"><p style="text-align: center">
Karma is an Innovation Strategy and Solutions Lead at Bristol Myers Squibb.
</p>
</section>
<section id="john" class="slide level2">
<section id="john" class="slide level2" style="font-size: 1.5em">
<h2><strong>John</strong></h2>

<img data-src="./../../assets/images/john.png" class="quarto-figure quarto-figure-center r-stretch"><p style="text-align: center">
John is senior R/JS/Go developer and founder/co-founder of <a href="https://opifex.org/">Opifex</a> and <a href="https://the-y-company.com/">The Y company</a>.
</p>
</section>
<section id="david-granjon" class="slide level2">
<h2><strong>David Granjon</strong></h2>

<img data-src="./../../assets/images/david.jpg" class="quarto-figure quarto-figure-center r-stretch"><p style="text-align: center">
David works as a Lead Shiny Developer at Cynkra and founder of the open source <a href="https://rinterface.com/"><strong>RinteRface</strong></a> organisation.
</p>
</section></section>
<section id="objectives" class="title-slide slide level1 center">
<h1>Objectives</h1>
<section id="objectives" class="slide level2" style="font-size: 1.5em">
<h2>Objectives</h2>
<div>
<ul>
<li>As an end-user: learn how to leverage block to create data analysises in minutes without writing any code.</li>
<li>As a developer: learn how to empower users to use blockr by developing new blockr and deploying blockr applications.</li>
<li class="fragment">As an end-user: learn how to leverage blockr to create <strong>reproducible</strong> data <strong>pipelines</strong> in minutes without writing any code.</li>
<li class="fragment">As a developer: learn how to <strong>empower</strong> users to use blockr by developing new blockr and <strong>deploying</strong> blockr applications.</li>
</ul>
</div>

<div class="quarto-auto-generated-content">
<div class="footer footer-default">
<p>Funded by <img class="mb-4" src="../../assets/images/bms.svg"></p>
<div class="container">
<img src="../../assets/images/bms.svg"> <img src="../../assets/images/cynkra.svg" width="15%"><img src="../../assets/images/y-company.png" width="15%">
</div>
</div>
</div>
</section>
Expand Down
4 changes: 3 additions & 1 deletion _site/slides/1-blockr-user/blockr-user.html
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,9 @@ <h2>How far can I go with blockr?</h2>

<div class="quarto-auto-generated-content">
<div class="footer footer-default">
<p>Funded by <img class="mb-4" src="../../assets/images/bms.svg"></p>
<div class="container">
<img src="../../assets/images/bms.svg"> <img src="../../assets/images/cynkra.svg" width="15%"><img src="../../assets/images/y-company.png" width="15%">
</div>
</div>
</div>
</section></section>
Expand Down
4 changes: 3 additions & 1 deletion _site/slides/2-blockr-dev/blockr-dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,9 @@ <h2>🧪 Exercise 4: solution</h2>

<div class="quarto-auto-generated-content">
<div class="footer footer-default">
<p>Funded by <img class="mb-4" src="../../assets/images/bms.svg"></p>
<div class="container">
<img src="../../assets/images/bms.svg"> <img src="../../assets/images/cynkra.svg" width="15%"><img src="../../assets/images/y-company.png" width="15%">
</div>
</div>
</div>
</section></section>
Expand Down
8 changes: 8 additions & 0 deletions assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,12 @@

.mb-4{
margin-bottom:1.5rem!important
}

.container{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 20px;
}
Loading

0 comments on commit 538dcb8

Please sign in to comment.