Skip to content

Instantly share code, notes, and snippets.

View simbo's full-sized avatar
:octocat:

Simon Lepel simbo

:octocat:
View GitHub Profile
@simbo
simbo / uberspace-simpleid.md
Last active June 24, 2018 22:00
Setup SimpleID at Uberspace

Setup SimpleID at Uberspace

About

These are my setup notes for SimpleID on my Uberspace.

### 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:
@simbo
simbo / introrx.md
Created September 5, 2018 19:51 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
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;
}
@simbo
simbo / raspberry-pi-setup.md
Last active January 26, 2023 15:38
Setting up a Raspberry Pi (Model B Rev 2, armv6l) with a linux without desktop, controlled remotely via ssh, installed zsh, pure prompt, ufw, git, node.js, npm, yarn, nginx with ssl

Setting up a Raspberry Pi (Model B Rev 2, armv6l)

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.

Prepare SD Card

Download the Raspberry Pi Imager,

@simbo
simbo / raspberry-pi-setup-pihole.md
Created November 24, 2020 15:22
Setting up a Raspberry Pi for pi-hole with nginx

Setting up a Raspberry Pi for pi-hole with nginx

Model: Raspberry Pi (Model B Rev 2, armv6l)

Prepare SD Card

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).

@simbo
simbo / pihole-setup-simple.md
Created November 25, 2020 15:45
Setting up a Raspberry Pi for pi-hole

Setting up a Raspberry Pi for pi-hole

Used Model: Raspberry Pi (Model B Rev 2, armv6l)

Prepare SD Card

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).

@simbo
simbo / gh-pages-user-deploy.yml
Last active November 29, 2020 10:22
GitHub Actions Workflow to deploy User or Organization Pages
name: CI
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🛎 Checkout
@simbo
simbo / gh-pages-project-deploy.yml
Last active November 29, 2020 10:22
GitHub Actions Workflow to deploy Project Pages
name: CI
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🛎 Checkout