├── screenshot.jpg ├── README.md └── github-event-viewer.html /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zbycz/github-events-viewer/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # github-events-viewer 📆 2 | **aka "What did I do yesterday?"** 3 | 4 | Displays events from `http://api.github.com/users/{name}/events` - that means including events on your private repos. Github itself does provide only your public actions on your profile. 5 | 6 | 7 | - **[LIVE VERSION](https://zbycz.github.io/github-events-viewer/github-event-viewer.html)** (from master) 8 | 9 | 10 | ![screenshot](./screenshot.jpg) 11 | 12 | ## Hidden Options 13 | 14 | - `?date=today|yesterday|this-week` - filter events by date 15 | 16 | ## NO realtime data 17 | As stated in the [docs](https://docs.github.com/en/rest/activity/events?apiVersion=2022-11-28#list-events-for-the-authenticated-user): 18 | > The API is not built to serve real-time use cases. Depending on the time of day, event latency can be anywhere from 30s to 6h. 19 | 20 | ## Author and licence 21 | 22 | (c) 2016,2017,2024 [Pavel Zbytovský](http://zby.cz) 23 | 24 | Licenced under MIT license. 25 | 26 | ## See also 27 | 28 | - this code was formerly part of [OctoMate chrome extension](https://github.com/rubyerme/chrome-github-mate#octo-mate) (called Github Mate before) 29 | - [github-event-viewer](https://github.com/meganemura/github-event-viewer) - for (public) repo events 30 | - more useful links in this Hackernews post: https://news.ycombinator.com/item?id=41609246 31 | -------------------------------------------------------------------------------- /github-event-viewer.html: -------------------------------------------------------------------------------- 1 | 3 | 5 | 6 | 7 | 8 |
9 |

My github events viewer

10 | 11 |

12 | Displays your last actions, comments and commits on GitHub. 13 | Events comes from api.github.com/users/{name}/events - which shows your own private events as well. 14 |
15 | Github itself does provide only your public actions page: https://github.com/zbycz?tab=activity. 16 |

17 | 18 |

19 | Github username: , 20 | Access token: (get new "classic" token here, no permissions needed) 21 | 22 |

23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 38 | 39 |
daterepo
28 |
action
comments only 29 |
body length 30 |
{{date}} 34 | {{repo}} 35 | {{action}} 36 | {{len}} 37 |
40 | 41 | 42 |

43 | zbycz/github-events-viewer v1.2 44 |

45 | 46 | 47 | 48 | 203 | --------------------------------------------------------------------------------