From ec42293300fdf9d3475ff5959d4253a8eef0ebb7 Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:16:19 +0200 Subject: [PATCH 01/11] Added Congress + changed schema codes + bumped ajv ajv-formats version npm:ajv@8.17.1 npm:ajv-formats@3.0.1 --- utils/test.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/utils/test.js b/utils/test.js index 0fd89e1..3979d6c 100644 --- a/utils/test.js +++ b/utils/test.js @@ -1,5 +1,5 @@ -import Ajv from "npm:ajv@8.8.2"; -import addFormats from "npm:ajv-formats@2.1.1"; +import Ajv from "npm:ajv@8.17.1"; +import addFormats from "npm:ajv-formats@3.O.1"; import { Engine } from "./engine.js"; @@ -29,9 +29,11 @@ const eventTypes = { summit: { code: "s" }, meetup: { code: "m" }, hackathon: { code: "h" }, - "privacy-corner": { code: "c" }, + congress: { code: "c" }, + "privacy-corner": { code: "pc" }, "online-summit": { code: "os" }, - 'meta-hackathon': { code: "q" }, + "meta-hackathon": { code: "mh" }, + }; const usedIds = []; for (const event of engine.rendered.events) { From 1077762290f5d20642171370b653ad0936de1dc7 Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:23:00 +0200 Subject: [PATCH 02/11] bumoing deno.land dependencies in engine.js (see comments) Followed the rabbit hole deno.land/std is migrating to jsr:@std First step of migration is to update to v 0.244.0 (this commit) In future another commit should change these to jsr:@std --- utils/engine.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/engine.js b/utils/engine.js index 8484f85..51bad34 100644 --- a/utils/engine.js +++ b/utils/engine.js @@ -1,8 +1,8 @@ -import { join } from "https://deno.land/std@0.208.0/path/mod.ts"; -import { emptyDir } from "https://deno.land/std@0.196.0/fs/empty_dir.ts"; +import { join } from "https://deno.land/std@0.224.0/path/mod.ts"; +import { emptyDir } from "https://deno.land/std@0.224.0/fs/empty_dir.ts"; import { parse, stringify } from "npm:yaml"; -import { exists } from "https://deno.land/std@0.213.0/fs/exists.ts"; -import { copy } from "https://deno.land/std@0.214.0/fs/copy.ts"; +import { exists } from "https://deno.land/std@0.224.0/fs/exists.ts"; +import { copy } from "https://deno.land/std@0.224.0/fs/copy.ts"; const SRC_DIR = "./src"; const DEST_DIR = "./dist"; From fe9625dc7e20c25788f229d682422206b0345082 Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:28:23 +0200 Subject: [PATCH 03/11] fixed joshua-davila.yaml --- src/people/joshua-davila.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/people/joshua-davila.yaml b/src/people/joshua-davila.yaml index 231b391..0cecdd5 100644 --- a/src/people/joshua-davila.yaml +++ b/src/people/joshua-davila.yaml @@ -1,5 +1,5 @@ name: Joshua Davila -caption: Blog & podcast "[The Blockchain Socialist](https://linktr.ee/theblockchainsocialist)" +caption: Blogger & podcaster at [The Blockchain Socialist](https://linktr.ee/theblockchainsocialist) refs: twitter: TBSocialist - bsky: tbsocialist.bsky.social \ No newline at end of file + bsky: tbsocialist.bsky.social From 262c1de076796e8dddbfd295403adcc322de9670 Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:28:46 +0200 Subject: [PATCH 04/11] fixing jaya-klara-brekke.yaml --- src/people/jaya-klara-brekke.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/people/jaya-klara-brekke.yaml b/src/people/jaya-klara-brekke.yaml index b08eaaf..fc8e445 100644 --- a/src/people/jaya-klara-brekke.yaml +++ b/src/people/jaya-klara-brekke.yaml @@ -1,5 +1,5 @@ name: Jaya Klara Brekke -caption: Chief Strategy Officer @ [Nym](https://www.nymtech.net) +caption: Chief Strategy Officer at [Nym](https://www.nymtech.net) country: de refs: twitter: jayapapaya From 06db0128bb7f54f46ad27fa34bee26835dd69a98 Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:29:18 +0200 Subject: [PATCH 05/11] fixing juraj-bednar.yaml --- src/people/juraj-bednar.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/people/juraj-bednar.yaml b/src/people/juraj-bednar.yaml index 85ee985..87c34bd 100644 --- a/src/people/juraj-bednar.yaml +++ b/src/people/juraj-bednar.yaml @@ -1,5 +1,4 @@ name: Juraj Bednar -caption: Educator, writer, cryptoanarchist & biohacker ([blog](https://juraj.bednar.io/)) -country: sk +caption: Educator, writer, cryptoanarchist & biohacker [blog](https://juraj.bednar.io/) refs: - twitter: jurbed \ No newline at end of file + twitter: jurbed From 232cbdb8f45230277177cc763e99dff4e57db8d1 Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:29:59 +0200 Subject: [PATCH 06/11] Update limone-eth.yaml --- src/people/limone-eth.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/people/limone-eth.yaml b/src/people/limone-eth.yaml index 9ea8847..ef7ea90 100644 --- a/src/people/limone-eth.yaml +++ b/src/people/limone-eth.yaml @@ -1,5 +1,5 @@ name: limone.eth -caption: Serial hacker and community builder | core [urbeEth](https://twitter.com/urbeeth) & [ETHRome](https://www.ethrome.org/) +caption: Serial hacker and community builder, Core [urbeEth](https://twitter.com/urbeeth) & [ETHRome](https://www.ethrome.org/) country: it refs: - twitter: limone_eth \ No newline at end of file + twitter: limone_eth From 12e7947342a5793a846cb1ef89d87daed488a287 Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:30:35 +0200 Subject: [PATCH 07/11] Update mario-havel.yaml --- src/people/mario-havel.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/people/mario-havel.yaml b/src/people/mario-havel.yaml index 923f4b4..56ad4e3 100644 --- a/src/people/mario-havel.yaml +++ b/src/people/mario-havel.yaml @@ -1,5 +1,5 @@ name: Mario Havel -caption: Hacker, Co-Founder of [Bordel Hackerspace](https://bordel.paralelnipolis.cz/#/) +caption: Hacker, Co-Founder of [Bordel Hackerspace](https://bordel.paralelnipolis.cz/) country: cz refs: - twitter: TMIYChao \ No newline at end of file + twitter: TMIYChao From b644fb10ba7ab804f7a0b183b3252553a10315ea Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:32:35 +0200 Subject: [PATCH 08/11] Update tim-bansemer.yaml --- src/people/tim-bansemer.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/people/tim-bansemer.yaml b/src/people/tim-bansemer.yaml index 00cef43..0e74b2e 100644 --- a/src/people/tim-bansemer.yaml +++ b/src/people/tim-bansemer.yaml @@ -1,4 +1,4 @@ name: Tim Bansemer -caption: "[Aqua Protocol](https://aqua-protocol.org/)" +caption: [Aqua Protocol](https://aqua-protocol.org/) refs: - twitter: tim_bansemer \ No newline at end of file + twitter: tim_bansemer From e3fc4f19dbf938ad36fcbbdd37f694c503cba538 Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:33:06 +0200 Subject: [PATCH 09/11] Update wslyvh.yaml --- src/people/wslyvh.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/people/wslyvh.yaml b/src/people/wslyvh.yaml index 3655de6..a636406 100644 --- a/src/people/wslyvh.yaml +++ b/src/people/wslyvh.yaml @@ -1,4 +1,4 @@ name: Wesley -caption: Events @ Ethereum 🛠️ Indie Maker +caption: Events at Ethereum refs: - twitter: wslyvh \ No newline at end of file + twitter: wslyvh From 52847454e6d8d7c943cf972e22d63378cd2edc8f Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:33:44 +0200 Subject: [PATCH 10/11] Rename wslyvh.yaml to wesley.yaml --- src/people/{wslyvh.yaml => wesley.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/people/{wslyvh.yaml => wesley.yaml} (100%) diff --git a/src/people/wslyvh.yaml b/src/people/wesley.yaml similarity index 100% rename from src/people/wslyvh.yaml rename to src/people/wesley.yaml From 5c3ffec2f786e08e2363514a3a793eecdcb1a09b Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:38:27 +0200 Subject: [PATCH 11/11] changed privacy-corner to 'pc' instead of 'c' + cleaned up old events (commented code) --- src/events/index.yaml | 233 +----------------------------------------- 1 file changed, 1 insertion(+), 232 deletions(-) diff --git a/src/events/index.yaml b/src/events/index.yaml index a38179f..f82eae1 100644 --- a/src/events/index.yaml +++ b/src/events/index.yaml @@ -136,31 +136,6 @@ - radek-svarz - marcel-kolaja -#- id: m24ath -# issue: 22 -# type: meetup -# date: "2024/TBD" -# city: Athens -# country: gr -# coincidence: "" -# lead: Mykola -# optional: true -# slots: 3 -# speakers: -# - mykola-siusko -# design: -# image: athens01 - -# - id: w3pm-lib1 -# type: meetup -# date: "2024/Mar" -# city: Liberec -# country: cz -# coincidence: "[ETHBohemia](https://ethbohemia.ethevents.club/)" -# lead: Tree -# optional: true -# slots: 3 - - id: m24buc issue: 8 type: meetup @@ -214,34 +189,6 @@ design: image: amsterdam01 -#- id: m24tll -# issue: 10 -# type: meetup -# date: "2024-04-18" -# city: Tallinn -# country: ee -# lead: Tree -# # ETHTallinn - April 19 - 21, 2024 -# coincidence: "[ETHTallinn](https://www.ethtallinn.org/)" -# slots: 3 -# optional: true -# links: -# rsvp: https://lu.ma/w3pn-meetup-tallinn1 -# design: -# image: tallinn01 - -# - id: m24opo -# issue: 21 -# type: meetup -# date: "2024/May" -# city: Porto -# country: pt -# coincidence: "[ETHPorto](https://ethporto.org/)" -# slots: 3 -# optional: true -# speakers: -# - gabari - - id: m24ber issue: 6 type: meetup @@ -271,7 +218,7 @@ design: image: berlin03 -- id: c24ber +- id: pc24ber type: privacy-corner date: "2024-05-24" days: 3 @@ -330,72 +277,6 @@ design: image: prague01 -#- id: q24ble -# issue: 7 -# type: meta-hackathon -# date: "2024-06-19" -# days: 7 -# city: Bled -# country: si -# place: "[Subwork](https://subwork.xyz/)" -# place-address: Ljubljanska cesta 4, 4260 Bled -# confirmed: true -# coincidence: "W3PN Meta-hackathon" -# helpers: -# - PG -# - Mykola -# - Coinmandeer -# slots: 10 -# links: -# rsvp: https://lu.ma/w3pn-bled-hackathon1 -# speakers: -# - vaclav-pavlin -# - afri-schoedon -# - mykola-siusko -# - pg - -#- id: m24lju -# issue: 12 -# type: meetup -# date: "2024-06-21" -# city: Ljubljana -# country: si -# coincidence: "W3PN Meta-hackathon" -# helpers: -# - PG -# - Mykola -# - Coinmandeer -# slots: 5 -# links: -# rsvp: https://lu.ma/w3pn-meetup-ljubljana1 -# speakers: -# - joshua-davila -# - mykola-siusko - -#- id: os24q2 -# issue: 28 -# type: online-summit -# name-extension: Q2 -# date: "2024-06-23" -# lead: Tree -# slots: 8 -# links: -# rsvp: https://lu.ma/w3pn-os24q2 - -#- id: m24bcn -# issue: 20 -# type: meetup -# date: "2024/Jul" -# city: Barcelona -# country: es -# coincidence: "ETHBarcelona" -# slots: 3 -# optional: true -# design: -# image: barcelona02 -# speakers: -# - joshua-davila - - id: m24bru issue: 16 type: meetup @@ -415,48 +296,6 @@ - joshua-davila - mykola-siusko -#- id: m24waw -# issue: 19 -# type: meetup -# date: "2024-09-07" -# city: Warsaw -# country: pl -# # EthWarsaw 2024 - September 5-8, 2024 -# coincidence: "ETHWarsaw" -# lead: Tree -# slots: 3 -# optional: true -# design: -# image: warsaw01 -# links: -# rsvp: https://lu.ma/w3pn-m24waw - -#- id: os24q3 -# type: online-summit -# name-extension: Q3 -# date: "2024/Sep" -# lead: Tree -# slots: 8 - -#- id: m24cph -# issue: 18 -# type: meetup -# date: "2024-09-19" -# city: Copenhagen -# country: dk -# coincidence: "" -# lead: Tree -# slots: 3 -# optional: true -# design: -# image: copenhagen02 -# helpers: -# - czepluch -# links: -# rsvp: https://lu.ma/w3pn-m24cph -# signal: https://signal.group/#CjQKIPw56w6ZZ7L3I4dZ0BZNzMQu-Ipxe5sfz7XbYK5Smd8gEhCzs8zSMiSZLW2-gbZfqfwD -# speakers: -# - jaromil - id: m24rom issue: 13 @@ -478,73 +317,3 @@ - jaromil - vaclav-pavlin - mykola-siusko - -#- id: c24rom -# issue: 23 -# type: privacy-corner -# date: "2024-10-04" -# days: 3 -# city: Rome -# country: it -# coincidence: ETHRome -# coincidenceFull: ETHRome 2024 -# lead: Tree - -#- id: s24brn -# issue: 14 -# type: summit -# date: "2024-10-24" -# city: Brno -# country: cz -# coincidence: "ETHBrno" -# lead: Tree -# helpers: -# - PG -# - Mykola -# - Coinmandeer -# slots: 16 -# links: -# rsvp: https://lu.ma/w3pn-summit-brno1 -# speakers: -# - juraj-bednar -# - jaromil -# - vaclav-pavlin -# - mykola-siusko -# - pg -# design: -# image: brno01 - -#- id: c24brn -# issue: 24 -# type: privacy-corner -# date: "2024-10-25" -# days: 3 -# city: Brno -# country: cz -# coincidence: ETHBrno -# coincidenceFull: ETHBrno3 -# lead: Tree - -#- id: m24dc -# issue: 15 -# type: meetup -# date: "2024-11-11" -# city: Bangkok -# country: th -# # Devcon 7 - 12-15 Nov, 2024 -# coincidence: "[Devcon](https://devcon.org/)" -# slots: 5 -# design: -# image: bangkok01 -# links: -# rsvp: https://lu.ma/w3pn-meetup-devcon7 -# speakers: -# - edward-fricker -# - vaclav-pavlin - -#- id: os24q4 -# type: online-summit -# name-extension: Q4 -# date: "2024/Dec" -# lead: Tree -# slots: 8