Skip to content

Commit 84a8fef

Browse files
committed
chore: rename Place to Location
1 parent 7acc0ec commit 84a8fef

9 files changed

Lines changed: 18 additions & 18 deletions

File tree

240226_DIF_linked-vp/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"Language": "en",
55
"Presenter": [
66
{
7-
"name": "Jan Christoph Ebersbach"
7+
"name": "Jan Christoph Ebersbach",
88
"url": "https://www.linkedin.com/in/jcebersbach/"
99
}
1010
],
11-
"Place": {
11+
"Location": {
1212
"name": "DIF Work Item Linked-VP - WG Identifiers & Discovery",
1313
"url": "https://github.com/decentralized-identity/linked-vp"
1414
}

240311_chainist/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"Language": "de",
55
"Presenter": [
66
{
7-
"name": "Jan Christoph Ebersbach"
7+
"name": "Jan Christoph Ebersbach",
88
"url": "https://www.linkedin.com/in/jcebersbach/"
99
}
1010
],
11-
"Place": {
11+
"Location": {
1212
"name": "Chainist Emerging Tech Community",
1313
"url": "https://www.linkedin.com/company/chainist"
1414
}

240416_IIW_linked-vp/metadata.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"Language": "en",
55
"Presenter": [
66
{
7-
"name": "Jan Christoph Ebersbach"
7+
"name": "Jan Christoph Ebersbach",
88
"url": "https://www.linkedin.com/in/jcebersbach/"
9-
}
9+
},
1010
{
11-
"name": "Brian Richter"
11+
"name": "Brian Richter",
1212
"url": "https://www.linkedin.com/in/brianrichter"
1313
}
1414
],
15-
"Place": {
15+
"Location": {
1616
"name": "Internet Identity Workshop XXXVIII",
1717
"url": "https://internetidentityworkshop.com/"
1818
}

240619_DICE_DID_Traits/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"Language": "en",
55
"Presenter": [
66
{
7-
"name": "Jan Christoph Ebersbach"
7+
"name": "Jan Christoph Ebersbach",
88
"url": "https://www.linkedin.com/in/jcebersbach/"
99
}
1010
],
11-
"Place": {
11+
"Location": {
1212
"name": "Digital Identity unConference Europe 2024",
1313
"url": "https://diceurope.org/"
1414
}

240619_DICE_linked-vp/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"Language": "en",
55
"Presenter": [
66
{
7-
"name": "Jan Christoph Ebersbach"
7+
"name": "Jan Christoph Ebersbach",
88
"url": "https://www.linkedin.com/in/jcebersbach/"
99
}
1010
],
11-
"Place": {
11+
"Location": {
1212
"name": "Digital Identity unConference Europe 2024",
1313
"url": "https://diceurope.org/"
1414
}

240620_Self-Sovereign_did-web/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"Language": "en",
55
"Presenter": [
66
{
7-
"name": "Jan Christoph Ebersbach"
7+
"name": "Jan Christoph Ebersbach",
88
"url": "https://www.linkedin.com/in/jcebersbach/"
99
}
1010
],
11-
"Place": {
11+
"Location": {
1212
"name": "Digital Identity unConference Europe 2024",
1313
"url": "https://diceurope.org/"
1414
}

251102_Hackerspace_NixOS_Introduction/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"url": "https://www.linkedin.com/in/jcebersbach/"
99
}
1010
],
11-
"Place": {
11+
"Location": {
1212
"name": "Hackerspace Bremen e.V.",
1313
"url": "https://www.hackerspace-bremen.de/"
1414
}

Justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ update: githooks
4646
let folder = $filename | path dirname | path basename
4747
let presenter = $metadata.Presenter
4848
let extended_metadata = $metadata | upsert Title $"<a name="($folder)" href="#($folder)">($in.Title)</a>"
49-
let extended_metadata = $extended_metadata | upsert Place $"<a href="($in.Place.url)">($in.Place.name)</a>"
49+
let extended_metadata = $extended_metadata | upsert Location $"<a href="($in.Location.url)">($in.Location.name)</a>"
5050
let extended_metadata = $extended_metadata | upsert Presenter ($in.Presenter | each { $"<a href="($in.url)">($in.name)</a>" } | str join " and ")
5151
let url = [$slidesdown ([$github_repository $folder SLIDES.md] | path join)] | str join ""
5252
let optimized_preview = [$folder preview_optimized.png] | path join
@@ -81,7 +81,7 @@ update: githooks
8181
8282
| Presenter | Location | Slides |
8383
| - | - | - |
84-
| ($extended_metadata.Presenter) | ($extended_metadata.Place) | [![($metadata.Title)]\(./($preview_small | path basename)\)]\(($url)\) |" | save -f ([$folder README.md] | path join)
84+
| ($extended_metadata.Presenter) | ($extended_metadata.Location) | [![($metadata.Title)]\(./($preview_small | path basename)\)]\(($url)\) |" | save -f ([$folder README.md] | path join)
8585
$extended_metadata
8686
} | to md | lines |
8787
insert 0 "# [identinet](https://identinet.io) presentations" |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[GitHub Repository](https://identinet/presentations)
33
<script src="https://scripts.simpleanalyticscdn.com/latest.js" async=""></script>
44

5-
| Date | Title | Language | Presenter | Place | Slides | Source |
5+
| Date | Title | Language | Presenter | Location | Slides | Source |
66
| --- | --- | --- | --- | --- | --- | --- |
77
| 2025-11-02 | <a name="251102_Hackerspace_NixOS_Introduction" href="#251102_Hackerspace_NixOS_Introduction">What is Nix and do I need it?</a> | en | <a href="https://www.linkedin.com/in/jcebersbach/">Jan Christoph Ebersbach</a> | <a href="https://www.hackerspace-bremen.de/">Hackerspace Bremen e.V.</a> | [![What is Nix and do I need it?](./251102_Hackerspace_NixOS_Introduction/preview_small.png)](./251102_Hackerspace_NixOS_Introduction) | <a href="https://github.com/identinet/presentations/tree/main/251102_Hackerspace_NixOS_Introduction">251102_Hackerspace_NixOS_Introduction</a> |
88
| 2024-06-20 | <a name="240620_Self-Sovereign_did-web" href="#240620_Self-Sovereign_did-web">Self-Sovereign did:web</a> | en | <a href="https://www.linkedin.com/in/jcebersbach/">Jan Christoph Ebersbach</a> | <a href="https://diceurope.org/">Digital Identity unConference Europe 2024</a> | [![Self-Sovereign did:web](./240620_Self-Sovereign_did-web/preview_small.png)](./240620_Self-Sovereign_did-web) | <a href="https://github.com/identinet/presentations/tree/main/240620_Self-Sovereign_did-web">240620_Self-Sovereign_did-web</a> |

0 commit comments

Comments
 (0)