{"id":22364140,"url":"https://github.com/11ways/where-is-everyone","last_synced_at":"2026-02-03T06:03:43.457Z","repository":{"id":203157887,"uuid":"708891012","full_name":"11ways/where-is-everyone","owner":"11ways","description":"Working locations for our team members","archived":false,"fork":false,"pushed_at":"2025-11-29T13:43:20.000Z","size":52,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-01T15:56:58.994Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/11ways.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-23T15:35:48.000Z","updated_at":"2025-11-29T13:43:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"80973408-e04b-42bf-99aa-6a2c463af1be","html_url":"https://github.com/11ways/where-is-everyone","commit_stats":null,"previous_names":["11ways/where-is-everyone"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/11ways/where-is-everyone","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/11ways%2Fwhere-is-everyone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/11ways%2Fwhere-is-everyone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/11ways%2Fwhere-is-everyone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/11ways%2Fwhere-is-everyone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/11ways","download_url":"https://codeload.github.com/11ways/where-is-everyone/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/11ways%2Fwhere-is-everyone/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29035286,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T02:28:16.591Z","status":"ssl_error","status_checked_at":"2026-02-03T02:27:48.904Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-12-04T17:18:38.230Z","updated_at":"2026-02-03T06:03:43.450Z","avatar_url":"https://github.com/11ways.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Where is Everyone?\n\nA web application that displays team members' working locations fetched from Google Calendar.\n\n## Features\n\n- Fetches working location data from Google Calendar\n- Modern, responsive web interface with card-based layout\n- Color-coded location badges (Office, Home, Remote)\n- Automatic data updates via shell script\n- GitHub Pages compatible\n\n## Setup\n\n### Prerequisites\n\n- Python 3.6+\n- Google Calendar API access\n- Git repository with GitHub Pages enabled\n\n### Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/11ways/where-is-everyone.git\ncd where-is-everyone\n```\n\n2. Install Python dependencies:\n```bash\npip3 install -r requirements.txt\n```\n\n3. Set up Google Calendar API credentials:\n   - Follow [Google's quickstart guide](https://developers.google.com/calendar/quickstart/python) to obtain `credentials.json`\n   - Place `credentials.json` in the repository root\n\n4. Authenticate with Google Calendar:\n```bash\npython3 export_working_locations.py\n```\nThis will open a browser for authentication and create `token.json`.\n\n## Usage\n\n### Update Working Locations\n\nRun the update script to fetch latest data:\n```bash\n./update-working-locations.sh\n```\n\nThis script:\n- Fetches working locations from Google Calendar\n- Updates `people.json`\n- Commits and pushes changes if data has changed\n\n### View the Web Application\n\n- **GitHub Pages**: Visit `https://[username].github.io/where-is-everyone`\n- **Local development**: \n  ```bash\n  python3 -m http.server 8000\n  # Then visit http://localhost:8000\n  ```\n\n## Data Format\n\nThe `people.json` file contains:\n```json\n{\n  \"people\": [\n    {\n      \"name\": \"Person Name\",\n      \"days\": [\n        {\n          \"timestamp\": \"2024-01-15T09:00:00Z\",\n          \"location\": \"Office\"\n        }\n      ]\n    }\n  ]\n}\n```\n\n## Files\n\n- `index.html` - Modern web interface\n- `export_working_locations.py` - Python script to fetch data from Google Calendar\n- `update-working-locations.sh` - Shell script to update and commit data\n- `people.json` - Working location data (auto-generated)\n- `requirements.txt` - Python dependencies\n- `credentials.json` - Google API credentials (not tracked in git)\n- `token.json` - OAuth token (not tracked in git)\n\n## Security\n\nThe following files are excluded from version control:\n- `token.json` - Contains OAuth tokens\n- `credentials.json` - Contains API credentials\n\n## Customization\n\nLocation badges are color-coded based on keywords:\n- Green: \"office\"\n- Orange: \"home\"  \n- Purple: \"remote\"\n- Blue: default for other locations\n\n## License\n\nThis project is open source and available under the MIT License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F11ways%2Fwhere-is-everyone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F11ways%2Fwhere-is-everyone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F11ways%2Fwhere-is-everyone/lists"}