Skip to content

Instantly share code, notes, and snippets.

@lalyos
Last active August 2, 2026 06:30
Show Gist options
  • Select an option

  • Save lalyos/6a02431158ec06ccc7b2d19c0875a1ed to your computer and use it in GitHub Desktop.

Select an option

Save lalyos/6a02431158ec06ccc7b2d19c0875a1ed to your computer and use it in GitHub Desktop.

Test Page v1.2

function term() 
  -- url = "https://obligations-monitoring-sized-breakdown.trycloudflare.com/)"
  url = "https://user0.k3z.eu"
  return widget.html("<iframe src='" .. url .."' width=500 height=400 style='border: 1px solid #ccc;'></iframe>")
end

${term()}

Setting up git push

get deploy key to clipboard

# private key is in /space dir now
## op read "op://Employee/silver.k3z.eu/gh-deploy-key"|pbcopy
apk add openssh-client git 

#cat > ~/.ssh/id_ed25519 <<EOF
#chmod 600 ~/.ssh/id_ed25519
cp /space/id_ed25519 ~/.ssh/

ssh git@github.com
# Hi lalyos/silverbullet!

alias gl='git log --date=short --pretty=format:"%h %Cblue%ad%Creset %an %Cred%d %Cgreen%s%Creset" --graph'
alias gs='git status'

make a naked /space into a proper git repo

git init && git remote add origin git@github.com:lalyos/silverbullet.git && git fetch && git branch -u origin/master && git reset origin/master

Space lua

...

Some list

  • one
  • two
  • three
  • four
demo = {}

function demo.first()
  person = {
    {name="jeno", age=12, money=2},
    {name="bela", age=42, money=30},
    {name="geza", age=77, money=81}
  }
  
  return person
end

#contact

name: jeno
age: 43

${ demo.first() }

${shell.run("echo",{"12345"})}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment