| ### Keybase proof | |
| I hereby claim: | |
| * I am simbo on github. | |
| * I am simbo (https://keybase.io/simbo) on keybase. | |
| * I have a public key ASB-_K2qrV1NC38xS6F7g-9AgzezZMV1vEge-ICGxiHFGwo | |
| To claim this, I am signing this object: |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| const { mkdirp } = require('mkdirp'); | |
| const { readFile, writeFile } = require('fs'); | |
| const { dirname, join } = require('path'); | |
| const rimraf = require('rimraf'); | |
| const { green, red, yellow } = require('chalk'); | |
| const imagemin = require('imagemin'); | |
| const imageminJpegRecompress = require('imagemin-jpeg-recompress'); | |
| const jimp = require('jimp'); | |
| const denodeify = require('denodeify'); | |
| const globby = require('globby'); |
| user nginx; | |
| worker_processes 1; | |
| pid /var/run/nginx.pid; | |
| error_log /var/log/nginx/error.log warn; | |
| events { | |
| worker_connections 1024; | |
| } |
How to setup a pi with a linux without desktop, controlled remotely via ssh.
Installing: zsh, pure prompt, ufw, git, node.js, npm, yarn, nginx with ssl, pi-hole.
Download the Raspberry Pi Imager,
Model: Raspberry Pi (Model B Rev 2, armv6l)
Download the Raspberry Pi Imager,
start it and follow the instructions to create an image using the
Raspberry Pi OS Lite (32-bit) (a debian port without desktop environment).
Used Model: Raspberry Pi (Model B Rev 2, armv6l)
Download the Raspberry Pi Imager,
start it and follow the instructions to create an image using the
Raspberry Pi OS Lite (32-bit) (a debian port without desktop environment).
| name: CI | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🛎 Checkout |
| name: CI | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🛎 Checkout |