Skip to content

Instantly share code, notes, and snippets.

View mirql's full-sized avatar
🌀
Love Sparkle!

mirql

🌀
Love Sparkle!
View GitHub Profile
@mirql
mirql / machine.js
Created June 14, 2021 07:46
Generated by XState Viz: https://xstate.js.org/viz
const fetch = Machine(
{
"initial": [
"greeting"
],
"context": {
"sessionId": "",
"failedAttempts": 0,
"call": {}
},
@mirql
mirql / remove-all-from-docker.sh
Created April 15, 2021 04:45 — forked from beeman/remove-all-from-docker.sh
Remove all from Docker
# Stop all containers
docker stop `docker ps -qa`
# Remove all containers
docker rm `docker ps -qa`
# Remove all images
docker rmi -f `docker images -qa `
# Remove all volumes