├── .gitignore ├── README.md ├── graphics ├── Logos │ ├── dev_meet_developers_meetings_ipfs.png │ ├── dev_meet_developers_meetings_ipfs2.png │ ├── dev_meet_developers_meetings_ipfs_blue.png │ ├── dev_meet_developers_meetings_ipfs_onecolor.png │ ├── dev_meet_developers_meetings_libp2p_1.png │ └── dev_meet_developers_meetings_libp2p_2.png ├── dev_meet_big_illustration.png ├── dev_meetings_banner_ipfs.png └── dev_meetings_banner_libp2p.png ├── img ├── Berlin.jpg ├── Lisbon-small.jpeg └── Lisbon.jpeg └── presentations templates └── Dev_meetings_presentation.pptx /.gitignore: -------------------------------------------------------------------------------- 1 | # Project dependencies 2 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 3 | node_modules 4 | .cache/ 5 | # Build directory 6 | public/ 7 | .DS_Store 8 | yarn-error.log 9 | src/.next 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # This repository has been archived! 2 | 3 | This repo has been archived while we monitor the changing landscape for events in relation to the COVID-19 pandemic. 4 | To stay up to date on future IPFS events, please [subscribe to the IPFS newsletter](https://ipfs.us4.list-manage.com/subscribe?u=25473244c7d18b897f5a1ff6b&id=cad54b2230)! 5 | 6 | ### `IPFS Conf` Lisbon. Dates TBA. 7 | 8 | ![](img/Lisbon-small.jpeg) 9 | 10 | More details soon. ~~[Pre-register for IPFS Conf in 2020](https://goo.gl/forms/0Pu6VZzG8pRAmrrv2)~~ TBA. 11 | 12 | ### Looking for 2019 event? Check out `IPFS Camp` https://github.com/ipfs/camp && https://camp.ipfs.io 13 | -------------------------------------------------------------------------------- /graphics/Logos/dev_meet_developers_meetings_ipfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/graphics/Logos/dev_meet_developers_meetings_ipfs.png -------------------------------------------------------------------------------- /graphics/Logos/dev_meet_developers_meetings_ipfs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/graphics/Logos/dev_meet_developers_meetings_ipfs2.png -------------------------------------------------------------------------------- /graphics/Logos/dev_meet_developers_meetings_ipfs_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/graphics/Logos/dev_meet_developers_meetings_ipfs_blue.png -------------------------------------------------------------------------------- /graphics/Logos/dev_meet_developers_meetings_ipfs_onecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/graphics/Logos/dev_meet_developers_meetings_ipfs_onecolor.png -------------------------------------------------------------------------------- /graphics/Logos/dev_meet_developers_meetings_libp2p_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/graphics/Logos/dev_meet_developers_meetings_libp2p_1.png -------------------------------------------------------------------------------- /graphics/Logos/dev_meet_developers_meetings_libp2p_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/graphics/Logos/dev_meet_developers_meetings_libp2p_2.png -------------------------------------------------------------------------------- /graphics/dev_meet_big_illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/graphics/dev_meet_big_illustration.png -------------------------------------------------------------------------------- /graphics/dev_meetings_banner_ipfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/graphics/dev_meetings_banner_ipfs.png -------------------------------------------------------------------------------- /graphics/dev_meetings_banner_libp2p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/graphics/dev_meetings_banner_libp2p.png -------------------------------------------------------------------------------- /img/Berlin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/img/Berlin.jpg -------------------------------------------------------------------------------- /img/Lisbon-small.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/img/Lisbon-small.jpeg -------------------------------------------------------------------------------- /img/Lisbon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/img/Lisbon.jpeg -------------------------------------------------------------------------------- /presentations templates/Dev_meetings_presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/conf/1d0fe09961fb6bdc9f51f631d64ac313ff302953/presentations templates/Dev_meetings_presentation.pptx --------------------------------------------------------------------------------