Urbit's identity layer pervades everything on Mars. Unfortunately, despite talking to Mars a lot, Earth is not quite so fortunate. A notable example are requests made to Urbit's HTTP server, Eyre. Presently, when viewing for example a blog post hosted by someone else's urbit, there is no way for a user to leave a comment signed by their own identity right then and there: they need to go through their own urbit instead, maybe even installing a matching blog app.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # 0 * * * * /Users/imiell/git/work/bin/home/slack_start_stop.sh start | |
| # 3-59 * * * * /Users/imiell/git/work/bin/home/slack_start_stop.sh stop | |
| DO_START=0 | |
| DO_STOP=0 | |
| while [ "$1" != "" ]; do | |
| case $1 in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Source: https://gist.github.com/0c56f8b8a820198ada44123fa1bf4b60 | |
| ################################################################ | |
| # How To Apply GitOps For Everything Using Crossplane And Flux # | |
| # https://youtu.be/dunU2ABitMA # | |
| ################################################################ | |
| # Additional Info: | |
| # - eksctl - How to Create and Manage AWS EKS clusters: https://youtu.be/pNECqaxyewQ | |
| # - Flux CD v2 With GitOps Toolkit - Kubernetes Deployment And Sync Mechanism: https://youtu.be/R6OeIgb7lUI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| apiVersion: kyverno.io/v1 | |
| kind: ClusterPolicy | |
| metadata: | |
| name: auto-vpa-creation | |
| annotations: | |
| policies.kyverno.io/title: Add default VPA | |
| policies.kyverno.io/category: Cost Optimization | |
| policies.kyverno.io/subject: Vertical Pod Autoscaler | |
| policies.kyverno.io/description: >- |
OlderNewer