mdn.dev
HTML basics - Learn web development | MDN
HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables. As the title suggests, this article will give you a basic understanding of HTML and its functions.
A re-introduction to JavaScript (JS tutorial) - JavaScript | MDN
Why a re-introduction? Because JavaScript is notorious for being misunderstood. It is often derided as being a toy, but beneath its layer of deceptive simplicity, powerful language features await. JavaScript is now used by an incredible number of high-profile applications, showing that deeper knowledge of this technology is an important skill for any web or mobile developer.
Azure images - Builders | Packer by HashiCorp
Packer is able to create Azure VM images. To achieve this, Packer comes with multiple builders depending on the strategy you want to use to build the images.
Shiny Apps with Docker Compose, Part 1: Development
Use Docker Compose to simplify Shiny app deployment and reach dev/prod parity. Part 1 looks at local development.
Tutorial: Intro to React – React
A JavaScript library for building user interfaces
Optimizing your $Profile
Optimizing your $Profile Your PowerShell Profile allows you to customize your PowerShell session and runs at startup. Complex profiles can cause a significant delay in the startup of PowerShell as it is a script that needs to be executed before the prompt first shows up.
Field Guide to the R Ecosystem
This guide aims to introduce the reader to the main elements of the R ecosystem.
R package development workshop
Add POST requests to {shiny} with {brochure} - Colin Fay
[Disclaimer] The package presented in this blog post is stillexperimental at the time of writing these lines (2021-02-28), so itmight face some API changes in the future.Yesterday Jacqueline’s tweeted about her need to add POST requests toa {shiny} application.I'm astounded that it doesn't seem like a Shiny app is able to acceptPOST requests. I have data I wanna pass to my server :/— Dr. Jacqueline Nolis (@skyetetra)February27, 2021This is actually one of the things I had in mind when building{brochure}: more flexibility with the HTTP requests and how they arehandled.So here is a working ex...
Shiny in Production: App and Database Syncing :: Thomas Roh — Data Science
When using shiny in production, often you will want to have some sort of database interactions for storing and accessing data. The DBI package provides an easy way to do the database interactions with a variety of SQL database flavors. In this example, I’m going to use a SQLite in memory database for reproducibility. In practice, you will just switch to the code to use a persistent database. Let’s start by creating a table to right to.
R shiny app dashboards in 2021: The Ultimate Guide for Busy People – YakData brightRserver
In this guide you’ll find both original content and curated resources to: + Build R shiny apps from scratch + Select the optimal dashboard framework for your R shiny app dashboard + R packages to build interactive, professional quality data visualization + Improve the user experience and dashboard speed tricks + All the ways you can deploy and share R shiny app dashboards + Lessons from a dashboard veteran for better R shiny app dashboards
Dockerize a ShinyApp - Dr. Juan Camilo Orduz
Building a webapp for data collection & visualization using R Shiny – Nirzaree's Blog
This is a tutorial post about building a webapp with user form and leaflet map visualization using R Shiny. The webapp I built aims to collect crowdsourced data of how sustainable are the eateries …
Google Maps with Shiny · GitHub
React Native for Windows + macOS · Build native Windows & macOS apps with Javascript and React
Build native Windows & macOS apps with Javascript and React
Appsilon/data.validator: validate your data and create nice reports straight from R
validate your data and create nice reports straight from R - Appsilon/data.validator
Minimum Viable Product: 10 steps to build an MVP in details
We continue our series of articles about MVP development. Today we would like to tell you about 10 steps to build an MVP in details.
Web Architecture 101. The basic architecture concepts I wish… | by Jonathan Fulton | Storyblocks Product & Engineering
The basic architecture concepts I wish I knew when I was getting started as a web developer
PostgreSQL-Cheat-Sheet.pdf
Remote Data Science Team Best Practices: Scrum, GitHub, Docker, and More
Learn best practices for setting up a data science team. I'll cover Scrum methodology, GitHub, Docker, renv, linter, and a variety of other tools.
The Docker Handbook – 2021 Edition
The concept of containerization itself is pretty old. But the emergence of the Docker Engine in 2013 has made it much easier to containerize your applications. According to the Stack Overflow Developer Survey - 2020, Docker is the #1 most wanted platform, #2 most loved platform, and also the #3
Build and deploy an app to Cloud Run with a single command
Now you can use Google Cloud Buildpacks to automatically convert your application code into a container image and deploy it to Cloud Run.
The Twelve-Factor App
A methodology for building modern, scalable, maintainable software-as-a-service apps.
dreamRs/datamods
Shiny modules to import data into an application or addin - dreamRs/datamods
Chapter 22 Introduction to {charpente} | Outstanding User Interfaces with Shiny
R-universe
R-universe: builds
Cloud Run gets WebSockets, HTTP-2 and gRPC bidirectional streams
You can run more kinds of apps on Cloud Run thanks to support for WebSockets, HTTP-2 end-to-end gRPC bidirectional streaming.
Hosting a Shiny App using Docker
I used shinyapps.io for my own shiny app. It’s a great service. You can deploy your app for free, test it and show it to other people. But there’s also a downside: The memory an app can use is limited. So I was looking for another way to deploy my app. So I took a look at Docker.