Apps

Web

Android

Camp-2019-Schedule-Android.png

iOS & Co

Desktop

Confclerk

[1] ConfClerk is an application written in ​Qt, which makes conference schedules available offline. It displays the conference schedule from various views, supports searches on various items (speaker, speech topic, location, etc.) and enables you to select favorite events and create your own schedule.

ConfClerk is able to import schedules in schedule.xml format.

jq based Console Client

You can add this to your .bashrc and run camp to get the current days upcoming events:

 camp() { 
   curl -s https://fahrplan.events.ccc.de/camp/2019/Fahrplan/schedule.json \
     | jq -r '.schedule.conference.days | .[] | select(.date=="'$(date +%F)'") | .rooms | .[] | .[] | select(.date|strptime("%Y-%m-%dT%H:%M:%S%z") > now) | "\(.start) \(.duration)|\(.room)|\(.title)"' \
     | sort -V | column -t -s'|'
 }

URLs of schedule.xml/.json

see Static:Schedule#Merged_schedules for more information