on the primary display
$ screen -S PRESO
mirror session on the secondary display
$ screen -x PRESO
alias:: {author lastname} ({year}) {title} tags:: [[publication]], [[Logseq citation manager]], type:: {type}; status:: icon:: 📚
flowchart TD
A[Amazon SWF]
A-->B[Azure/durable task]
A-->C[infinitic]
B-->D[Azure Durable Functions]
B-->E[Cadence]
A-->E
E-->F[Temporal.io]
click A href "https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-welcome.html" "Amazon SWF"
package main | |
import ( | |
"context" | |
"errors" | |
"fmt" | |
"os" | |
"os/signal" | |
) |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
labels: | |
k8s-app: metrics-server | |
name: metrics-server | |
namespace: kube-system | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRole |
name: Go tests | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 |
for name in */ ; do | |
if [ -d "$name" ] && [ ! -L "$name" ]; then | |
cd $name | |
if [ -d ".git" ]; then | |
BRANCH=`git branch --no-color | grep -e "^*" | tr -d ' *'` | |
if [ "$BRANCH" == "master" ] || [ "$BRANCH" == "main" ]; then | |
if git remote | grep origin > /dev/null; then | |
printf 'Update source in directory: %s\n' "$name" | |
git pull | |
fi |
{ | |
"default-makefile": { | |
"prefix": "help", | |
"body": [ | |
"# https://suva.sh/posts/well-documented-makefiles/#simple-makefile", | |
".DEFAULT_GOAL:=help", | |
"SHELL:=/bin/bash", | |
"", | |
".PHONY: help deps clean build watch", | |
"", |
{ | |
"go main function": { | |
"prefix": "main", | |
"body": [ | |
"package main", | |
"", | |
"func main() {\n\t$0\n}" | |
], | |
"description": "Main func" | |
}, |