feat: initial commit
All checks were successful
Release to Production / build_and_release (push) Successful in 27s
31
.gitea/workflows/publish.yml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
name: Release to Production
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_and_release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Setup Node
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: |
|
||||||
|
npm -g install cloudron-surfer
|
||||||
|
npm install -g @marp-team/marp-cli
|
||||||
|
|
||||||
|
- name: Recreate slides
|
||||||
|
run: marp slides/intro2nostr.md -o intro2nostr/index.html --html=true
|
||||||
|
|
||||||
|
- name: Release Build
|
||||||
|
run: |
|
||||||
|
surfer config --token ${{ secrets.CLOUDRON_SURFER_TOKEN }} --server slides.nostrdev.com
|
||||||
|
surfer put ./* / --all -d
|
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
site
|
||||||
|
.DS_Store
|
||||||
|
node_modules
|
23
README.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
Available decks:
|
||||||
|
|
||||||
|
* [Intro2Nostr](/intro2nostr) - Funchal, 7th November 2024
|
||||||
|
|
||||||
|
[source](https://git.nostrdev.com/sigit/slides.nostrdev.com)
|
||||||
|
|
||||||
|
|
||||||
|
plan:
|
||||||
|
|
||||||
|
-
|
||||||
|
- quick intro
|
||||||
|
- create a new nostr account (extension)
|
||||||
|
- sign into iris.to and add metadata (kind 0)
|
||||||
|
- view site on nosta.me
|
||||||
|
- make a post on another primal.net
|
||||||
|
- get zapped
|
||||||
|
- go claim the zaps from npub.cash
|
||||||
|
- visit shopstr
|
||||||
|
- visit sigit
|
||||||
|
- visit satlantis
|
||||||
|
- visit wavlake
|
||||||
|
|
||||||
|
awesome nostr
|
BIN
img/agreement.jpg
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
img/nostrmoney.jpeg
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
img/ppill.jpeg
Normal file
After Width: | Height: | Size: 195 KiB |
BIN
img/projects.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
img/qrs.jpeg
Normal file
After Width: | Height: | Size: 239 KiB |
BIN
img/sigit.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
img/sigitbig.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
img/sigitsmall.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
55
slides/intro2nostr.md
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
---
|
||||||
|
marp: true
|
||||||
|
paginate: true
|
||||||
|
backgroundColor: white
|
||||||
|
auto-scaling: fittingHeader
|
||||||
|
theme: default
|
||||||
|
---
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Intro to Nostr
|
||||||
|
|
||||||
|
Presentation at the Nov '24 BTC meetup in Funchal
|
||||||
|
-->
|
||||||
|
|
||||||
|
# Nostr
|
||||||
|
|
||||||
|
## Notes & Other Stuff Transmitted by Relays
|
||||||
|
|
||||||
|
![bg right:50% height:600](../img/ppill.jpeg)
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
-->
|
||||||
|
---
|
||||||
|
<!-- header: ![h:6em align:right](../img/nostrmoney.jpeg) -->
|
||||||
|
|
||||||
|
# Why Nostr?
|
||||||
|
|
||||||
|
- Own your digital life
|
||||||
|
- Escape from walled gardens
|
||||||
|
- Support freedom technology
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
![bg right:46% height:550](../img/qrs.jpeg)
|
||||||
|
|
||||||
|
---
|
||||||
|
# What is Nostr?
|
||||||
|
|
||||||
|
- **IDENTITY**
|
||||||
|
- _Public / Private keys_
|
||||||
|
- **CLIENTS**
|
||||||
|
- _The apps you use_
|
||||||
|
- **RELAYS**
|
||||||
|
- _distributed database_
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Demo
|
||||||
|
|
||||||
|
- Create a Nostr account
|
||||||
|
- Update Profile
|
||||||
|
- Make post
|
||||||
|
- Make money from the post
|
||||||
|
- Check out some apps
|