Speakers: add Jakub Jedlinsky

This commit is contained in:
tree 2022-02-11 01:33:01 +01:00
rodič f07b7f4289
revize 57d9351f14
4 změnil soubory, kde provedl 12 přidání a 3 odebrání

Binární soubor nebyl zobrazen.

Za

Šířka:  |  Výška:  |  Velikost: 24 KiB

Binární soubor nebyl zobrazen.

Za

Šířka:  |  Výška:  |  Velikost: 65 KiB

Zobrazit soubor

@ -288,3 +288,12 @@
twitter: DusanKmetyo
tracks: [ zaklady, btc, spolecnost ]
- id: jakub-jedlinsky
name: Jakub Jedlinský
twitter: Jakub_Jedlinsky
bio: Makroekonom a analytik specializující se na modelování tokenomiky
orgs: |
Spoluzakladatel [Altlift.cz](https://altlift.cz), vyučující na [Katedra mezinárodních ekonomických vztahů FMV VŠE](https://kmev.vse.cz/)
lead: true
tracks: [ defi, alty, spolecnost ]

Zobrazit soubor

@ -18,11 +18,11 @@ function members(t) {
}
for (const t of teams.filter((t) => !t.parent)) {
console.log(`[${t.id}] +${members(t)}`);
console.log((t.id === 'core' ? '' : ' ') + `[${t.id}] +${members(t)}`);
for (const st of teams.filter((tx) => tx.parent === t.id)) {
console.log(` \\\__ [${st.id}] +${members(st)}`);
console.log(` [${st.id}] +${members(st)}`);
for (const st2 of teams.filter((tx2) => tx2.parent === st.id)) {
console.log(` \\\__ [${st2.id}] +${members(st2)}`);
console.log(` [${st2.id}] +${members(st2)}`);
}
}
}