Here are my notes about deploying Scribble.rs to Digital Ocean.
Scribble.rs is an open-source, ad-free alternative to skribbl.io.
- Create Droplet
- Create Docker network
- Configure firewall
- Install and run Nginx Proxy Manager
Here are my notes about deploying Scribble.rs to Digital Ocean.
Scribble.rs is an open-source, ad-free alternative to skribbl.io.
When I tried to use the @react-pdf/renderer package (version 3.0.1) with a React 18 app, two problems arose. In this article, I'll describe those problems and tell you how I solved them.
Update: Here's a video demonstration of the problems and solution described in this article: https://youtu.be/YZP5r7Uy_bU
Demo of Issue in react-calendar-heatmap
Issue URL: kevinsqi/react-calendar-heatmap#59
| // connect() is a function that injects Redux-related props into your component. | |
| // You can inject data and callbacks that change that data by dispatching actions. | |
| function connect(mapStateToProps, mapDispatchToProps) { | |
| // It lets us inject component as the last step so people can use it as a decorator. | |
| // Generally you don't need to worry about it. | |
| return function (WrappedComponent) { | |
| // It returns a component | |
| return class extends React.Component { | |
| render() { | |
| return ( |