This commit is contained in:
tree 2023-03-30 20:03:21 +02:00
rodič ab877d79d2
revize 277f203018
5 změnil soubory, kde provedl 24 přidání a 4 odebrání

Zobrazit soubor

@ -15,10 +15,14 @@ You can use JSON Hero to view the data:
## Want to add your own event? ## Want to add your own event?
Please check out our [Event Host Guide](https://guide.prgblockweek.com/event-host-guide) and then add your event to the catalogue using one of the following methods: Please check out our
[Event Host Guide](https://guide.prgblockweek.com/event-host-guide) and then add
your event to the catalogue using one of the following methods:
1. Use the online form (easy way): [Event submission form](https://prgblockweek.com/submit-event) 1. Use the online form (easy way):
2. Add your event manually - fork this repository, make your changes and ask for your changes to be merged via PR [Event submission form](https://prgblockweek.com/submit-event)
2. Add your event manually - fork this repository, make your changes and ask for
your changes to be merged via PR
## Follow us! ## Follow us!

Zobrazit soubor

@ -88,6 +88,22 @@
"photoUrl": "https://images.ctfassets.net/6j1me6tz5h39/15qMac7cF5dXQ9bes6jpFP/96372a94b15da0c4498ea350c595c0d7/97d25cd6976d3a552668d8282ebfc63a.jpeg", "photoUrl": "https://images.ctfassets.net/6j1me6tz5h39/15qMac7cF5dXQ9bes6jpFP/96372a94b15da0c4498ea350c595c0d7/97d25cd6976d3a552668d8282ebfc63a.jpeg",
"country": "hk", "country": "hk",
"photo": "photos/speakers/abeer-sharma.jpeg" "photo": "photos/speakers/abeer-sharma.jpeg"
},
{
"id": "kirsten-pomales",
"name": "Kirsten Pomales",
"twitter": "kirstenrpomales",
"caption": "TalentLayer",
"photoUrl": "https://images.ctfassets.net/6j1me6tz5h39/5u9vwjRJIXTcxjiKyIW1nO/7fa0f11880ff886bd5191a6d6714acee/cool_r3Xkpx2.png",
"photo": "photos/speakers/kirsten-pomales.png"
},
{
"id": "rhys-williams",
"name": "Rhys Williams",
"twitter": "rhysistweets",
"caption": "University of Glasgow",
"photoUrl": "https://images.ctfassets.net/6j1me6tz5h39/6d30X3MZOajpdcK2IJ5t0J/1deb1bfbf73148a4233d57d888d822b2/Media_741938_smxx.jpg",
"photo": "photos/speakers/rhys-williams.jpg"
} }
] ]
} }

Binární soubor nebyl zobrazen.

Za

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

Binární soubor nebyl zobrazen.

Za

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

Zobrazit soubor

@ -12,7 +12,7 @@ if (Deno.args[0]) {
await ev.sync(); await ev.sync();
} else { } else {
for (const event of entry.data.events) { for (const event of entry.data.events) {
if (!event.haveSync) { if (!event.haveSync || event.data.index.hidden) {
continue; continue;
} }
await event.sync(); await event.sync();