{"id":18773601,"url":"https://github.com/protocol/labweek-2022","last_synced_at":"2025-04-13T09:12:41.769Z","repository":{"id":58819512,"uuid":"530671846","full_name":"protocol/labweek-2022","owner":"protocol","description":"The LabWeek 2022 website","archived":false,"fork":false,"pushed_at":"2022-11-29T14:26:04.000Z","size":10419,"stargazers_count":5,"open_issues_count":1,"forks_count":26,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-13T09:12:36.741Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://labweek2022.plnetwork.io","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"ipfs-shipyard/ipfs-thing-2022","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/protocol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-30T13:34:00.000Z","updated_at":"2023-11-18T20:34:33.000Z","dependencies_parsed_at":"2023-01-23T19:31:17.784Z","dependency_job_id":null,"html_url":"https://github.com/protocol/labweek-2022","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protocol%2Flabweek-2022","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protocol%2Flabweek-2022/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protocol%2Flabweek-2022/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protocol%2Flabweek-2022/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/protocol","download_url":"https://codeload.github.com/protocol/labweek-2022/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248688566,"owners_count":21145766,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T19:34:33.682Z","updated_at":"2025-04-13T09:12:41.735Z","avatar_url":"https://github.com/protocol.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LabWeek22\n\nA decentralized conference hosted by Protocol Labs. We are using this github repository and website to coordinate event listings. The website is published to:\n\nhttps://labweek2022.plnetwork.io\n\n## LabWeek 2022 Location and Dates\n\nLabWeek 2022 is happening October 20th to November 4th, in Lisbon.\n\n## Decentralized Conference\n\nA decentralized conference is a series of related events happening around\nthe same place and time, put on by a community. The goal is to enable people\nand groups to host their own events, loosely coordinating with the rest of the\ncommunity.\n\nEvents can be run in many formats: roundtables, talks with slides, hack sessions, whiteboard sessions, or more. Anyone can submit subevents, just follow the instructions below!\n\n# Getting started\n\nPlease read [this guide](https://bit.ly/LabWeek22HostEvents) to Hosting Events for LabWeek22 before proceeding if you have questions on venues, times, and registration: \n\n## Submitting subevents\n\nThere are 2 templates you can choose from to submit a subevent:\n1. Use _template-short-event if your event doesn't have structured times throughout. It's short and sweet.\n2. Use _template-long-event if your event has a lot of breakout times for different speakers, sessions, OR is going to be multiple days long. This template has timeslots you can fill out to let attendees know what to expect and when.\n\n### Creating an Event\n\n1. Select the short or long template depending on your event.\n2. Create a new file and name it your-event-name.toml\n3. Fill in the template with details for your event.\n4. Create a PR to this repo to add this new file.\n5. The Spaceport team will review and merge your event into the website. \n\nA quick note: If you are submitting an event that is private, it may not show up on the website since most attendees will not be able to attend. If you'd like it to appear in the schedule for some reason, please leave a comment in your PR for the Spaceport team to review.\n\n### Editing an Event\n\nIf you've already created your event but want to add or change details in the .toml file, create a PR with your edit requests, along with any comments. The Spaceport team will review and merge your changes to the website.\n\n### CSV dump of talks\n\nTo get a dump of talks/speakers for custom analysis, you can:\n1. Install the python version of yq: https://github.com/kislyuk/yq\n  - ``brew install python-yq``\n2. Run a command like ``tomlq -r '.name as $track_name | .date as $track_date | .timeslots[] | [$track_name, $track_date, .startTime, .title, (.speakers | join(\" \"))] | @csv' *.toml``\n\nThe above was gleaned from:\n1. https://stackoverflow.com/a/71290386/16318\n2. https://stackoverflow.com/a/32967407/16318\n3. https://stackoverflow.com/a/38693695/16318\n\n## Developers\n\n### What is `devent-website`?\n\nIt is a boilerplate starter website you can use to organize your own decentralized event.\nJust clone the https://github.com/jbenet/devent-website repo,\nedit `devent.toml`, change the layout and style to meet your needs,\nand publish.\n\n### What's `devent-website` built with?\n\n- Next.js\n- React\n- Tailwind CSS\n- Flowbyte CSS\n\nSo go look in their docs \u0026 tutorials if you run into trouble.\n\n### Developing \u0026 Publishing the website\n\nDevelop:\n```\ncd website \u0026\u0026 npm run dev\n```\nThen visit: http://localhost:3000\n\n\nPublish:\n```\ncd website\nnpm run build\nnpm run export\nipfs add -r out\n```\n\nPublish to fleek:\n- https://blog.fleek.co/posts/fleek-nextJS\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprotocol%2Flabweek-2022","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprotocol%2Flabweek-2022","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprotocol%2Flabweek-2022/lists"}