Merge pull request #11 from niclaz/data-tests-patch

Data tests patch - removing hyphens from speaker entries
This commit is contained in:
Mykola Siusko 2024-09-04 20:51:44 +02:00 committed by GitHub
commit 163324bbed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
17 changed files with 32 additions and 28 deletions

View File

@ -3,6 +3,7 @@
date: "2024-11-11"
city: Bangkok
country: th
# DevCon 2024 - November 12-15 2024
place: "[TBA](https://congress.web3privacy.info)"
place-address: TBA
confirmed: true
@ -315,5 +316,8 @@
rsvp: https://lu.ma/w3pn-meetup-rome1
speakers:
- jaromil
- vaclav-pavlin
- mykola-siusko
- arturo-filasto
- luca-lezzerini
- andrea-togni
- emanuele-russo
- marco-castignoli

View File

@ -1,5 +1,5 @@
name: Adrian Brink
caption: Co-founder of [Namada](https://namada.net) and [Anoma](https://anoma.net/)
caption: Cofounder of [Namada](https://namada.net) and [Anoma](https://anoma.net/)
country: us
refs:
twitter: adrianbrink

View File

@ -1,5 +1,5 @@
name: Alan Scott
caption: Co-founder of [Railgun](https://www.railgun.org/)
caption: Cofounder at [Railgun](https://www.railgun.org/)
country: us
refs:
twitter: tsu_kareta
twitter: tsu_kareta

View File

@ -1,5 +1,5 @@
name: Alex Gluchowski
caption: Co-Founder of [Matter Labs](https://matter-labs.io/) & [ZKSync](https://www.zksync.io/)
caption: CoFounder of [Matter Labs](https://matter-labs.io/) & [ZKSync](https://www.zksync.io/)
country: us
refs:
twitter: gluk64

View File

@ -1,5 +1,5 @@
name: Antoni Zolciak
caption: Co-founder of [Aleph Zero](https://alephzero.org/) & [Cardinal](https://cardinal.co/)
caption: Cofounder of [Aleph Zero](https://alephzero.org/) & [Cardinal](https://cardinal.co/)
country: pl
refs:
twitter: AntoniZolciak
twitter: AntoniZolciak

View File

@ -1,5 +1,5 @@
name: Bryce
nickname: gabari
caption: [Brume Wallet](https://brume.money/) co-founder & [MangroveDAO](https://mangrovedao.earth/) Core
caption: Cofounder at [Brume Wallet](https://brume.money/) & Core at [MangroveDAO](https://mangrovedao.earth/)
refs:
twitter: bryce_gabari

View File

@ -1,5 +1,5 @@
name: Mario Havel
caption: Hacker, Co-Founder of [Bordel Hackerspace](https://bordel.paralelnipolis.cz/)
caption: Hacker, Cofounder of [Bordel Hackerspace](https://bordel.paralelnipolis.cz/)
country: cz
refs:
twitter: TMIYChao

View File

@ -1,5 +1,5 @@
name: Max Hampshire
caption: Senior devrel of [Nym](https://nymtech.net/), Co-founder of [terra0](https://terra0.org/)
caption: Senior devrel of [Nym](https://nymtech.net/), Cofounder of [terra0](https://terra0.org/)
country: at
refs:
twitter: _wjth
twitter: _wjth

View File

@ -1,4 +1,4 @@
name: Moritz Boullenger
caption: Co-founder of fluidkey
caption: Cofounder of fluidkey
refs:
twitter: m0zrt

View File

@ -1,5 +1,5 @@
name: Pie Man
caption: Co-founder of [Fairblock Network](https://www.fairblock.network/)
caption: Cofounder of [Fairblock Network](https://www.fairblock.network/)
country:
refs:
twitter: Pememoni

View File

@ -1,4 +1,4 @@
name: Remi Gai
caption: Co-founder at [INCO](https://www.inco.org/)
caption: Cofounder at [INCO](https://www.inco.org/)
refs:
twitter: remi_gai

View File

@ -1,6 +1,6 @@
name: Rik Krieger
nickname: rikzrh
caption: Co-founder of [HOPR](https://hoprnet.org/)
caption: Cofounder of [HOPR](https://hoprnet.org/)
country: ch
refs:
twitter: rikzrh
twitter: rikzrh

View File

@ -1,5 +1,5 @@
name: Scott Moore
caption: Co-founder of [Gitcoin](https://www.gitcoin.co/)
caption: Cofounder of [Gitcoin](https://www.gitcoin.co/)
country: us
refs:
twitter: notscottmoore

View File

@ -1,5 +1,5 @@
name: Sebastian Bürgel
caption: Co-founder, [HOPR](http://hoprnet.org)
caption: Cofounder of [HOPR](http://hoprnet.org)
country: ch
refs:
twitter: SCBuergel

View File

@ -1,6 +1,6 @@
import { Engine } from "./engine.js";
import { join } from "https://deno.land/std@0.208.0/path/mod.ts";
import { exists } from "https://deno.land/std@0.213.0/fs/exists.ts";
import { join } from "https://deno.land/std@0.224.0/path/mod.ts";
import { exists } from "https://deno.land/std@0.224.0/fs/exists.ts";
const engine = new Engine();
await engine.init();
@ -61,4 +61,4 @@ for(const event of engine.rendered.events) {
`#img-${format}`
);
}
}
}

View File

@ -1,6 +1,6 @@
import { run } from "https://deno.land/x/run_simple/mod.ts";
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";
async function optimizeDir (dir, sizes) {
await emptyDir(join(dir, 'thumbs'))
@ -37,4 +37,4 @@ const eventSizes = { '128px': { width: 128 }, '360px': { width: 360 }, '640px':
await optimizeDir('./src/events/_images/2023', eventSizes)
await optimizeDir('./src/events/_images/2024', eventSizes)
//console.log(await run('ls'))
//console.log(await run('ls'))

View File

@ -1,7 +1,7 @@
import "https://deno.land/std@0.218.2/dotenv/load.ts";
import "https://deno.land/std@0.224.0/dotenv/load.ts";
import { gql, GraphQLClient } from "https://deno.land/x/graphql_request/mod.ts";
import { stringify } from "npm:yaml";
import { join } from "https://deno.land/std@0.208.0/path/mod.ts";
import { join } from "https://deno.land/std@0.224.0/path/mod.ts";
import fm from "npm:front-matter";
const warningGen = (link) => `# ----
@ -122,4 +122,4 @@ query {
console.log(`File written: ${fn}`)
}
await syncResearch()
await syncResearch()