Graphql library testing

Testing Graphql libraries in different languages Graphql library testing Testing DX and “performance” of different languages and libraries. For the latest update see the repo Language Library Build/Install (s) Hot reload (s) RPS kbps 99% (ms) fake 99% (ms) store Python Ariadne 7 1 60 2400 190 285 Python Strawberry 7 1 50 1800 340 340 Rust async-graphql 55 4 1200 45000 4 80 Go gqlgen 120 1 640 25600 42 34 Javscript mercurius 3 1 305 12800 76 44 Disclaimer: This is probably all incorrect....

November 4, 2022 · 1 min · Ask Blaker

Self hosted Nextcloud

Nextcloud A self hosted, self owned, private dropbox alternative. An example repo to quickly test if this is something for you. Go the repo and follow the instructions

January 27, 2022 · 1 min · Ask Blaker

Self host Kubernetes cluster with Letsencrypt HTTPS, Wireguard, metrics and logging

Redirect Originally, this was written as a horribly long blog post, including all yaml. But I realized the topic was so big that it deserved it own domain

June 9, 2021 · 1 min · Ask Blaker

HTTPS with letsencrypt using traefik and docker

Prerequisites A domain name and dns service A host with docker and docker-compose with a public ip (regular VPS) Some knowledge of docker and docker-compose Setting up DNS propagation might take some time, so set your domain first. In your domain settings, set an | DOMAIN | RECORD TYPE | TARGET | | --------------------------- | ----------- | ----------- | | subdomain.example.com | A RECORD | <SERVER-IP> | | *.subdomain.example.com | A RECORD | <SERVER-IP> | | nginx....

May 10, 2021 · 5 min · Ask Blaker

Heroku docker FastAPI

Make sure you have the Heroku CLI and GIT See this repo or the spoiler below: git clone git@github.com:askblaker/fastapi-docker-heroku.git cd fastapi-docker-heroku heroku create <your-app-name> heroku git:remote <your-app-name> heroku stack:set container git push heroku main Enjoy your api at https://your-app-name.herokuapp.com

November 3, 2020 · 1 min · Ask Blaker