I hereby claim:
- I am paberr on github.
- I am paberr (https://keybase.io/paberr) on keybase.
- I have a public key ASATnIfyTZiScT-KS2jbUcLRDtLkKTcWiHqy-ZbxhBZAcAo
To claim this, I am signing this object:
| # Start from the official Roundcube image (which already has the php entrypoint). | |
| FROM roundcube/roundcubemail:latest AS builder | |
| USER root | |
| # Install git, node, npm so we can clone the Kolab plugin and build CSS at runtime | |
| RUN apt-get update && apt-get install -y --no-install-recommends git nodejs npm | |
| RUN npm install -g less less-plugin-clean-css | |
| WORKDIR /usr/local/share |
I hereby claim:
To claim this, I am signing this object:
| /* | |
| * Map | |
| */ | |
| let map = new Map(); | |
| console.time('push'); | |
| for (let i = 0; i < 100000; i++) { | |
| map.set(i, i); | |
| } | |
| console.timeEnd('push'); |