├── README.md ├── css └── main.css ├── images ├── github-timeline.gif └── github-timeline.png ├── index.html └── js └── main.js /README.md: -------------------------------------------------------------------------------- 1 | # Stalk your boss timeline or events on Github 2 | 3 | ## Want to see the GitHub timeline or events of other users? 4 | 5 | The application allows you to see other users' GitHub streams. In this way, you can see the activities of the people followed by your bosses and friends. 6 | 7 | You do not need to log in to use the application. Just type the user name you want and click "Get Timeline" button. 8 | 9 |  10 | 11 | 12 | events: [https://able8.github.io/github-events](https://able8.github.io/github-events) 13 | 14 | timeline: [https://githubtimeline.xyz/](https://githubtimeline.xyz) 15 | 16 |  -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- 1 | .loader { 2 | border: 5px solid #f3f3f3; /* Light grey */ 3 | border-top: 5px solid #3498db; /* Blue */ 4 | border-radius: 50%; 5 | width: 3em; 6 | height: 3em; 7 | animation: spin 3s linear infinite; 8 | display: none; 9 | } 10 | 11 | @keyframes spin { 12 | 0% { transform: rotate(0deg); } 13 | 100% { transform: rotate(360deg); } 14 | } 15 | 16 | .timeline { 17 | /* display: none; */ 18 | } 19 | 20 | .link { 21 | color: #000; 22 | font-weight: bold; 23 | } 24 | 25 | .time { 26 | color: #888; 27 | } 28 | 29 | footer { 30 | bottom: 0; 31 | position: fixed; 32 | width: 100%; 33 | margin-top: 30px; 34 | background-color: #fff; 35 | padding: 5px; 36 | } 37 | 38 | img { 39 | width: 50px; 40 | height: 50px; 41 | margin-right: 10px; 42 | border-radius: 5px; 43 | } 44 | 45 | .item-row { 46 | border-bottom: 1px solid #ccc; 47 | padding: 10px 0px; 48 | width:100% 49 | } 50 | 51 | .title { 52 | width: 100%; 53 | text-align: center; 54 | } 55 | 56 | .container { 57 | padding-left: 30px !important; 58 | } 59 | -------------------------------------------------------------------------------- /images/github-timeline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/able8/github-events/36bc5e728fc59f4657f74de7419a7316e3c76b3e/images/github-timeline.gif -------------------------------------------------------------------------------- /images/github-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/able8/github-events/36bc5e728fc59f4657f74de7419a7316e3c76b3e/images/github-timeline.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |You can see the whole Public Events, just by typing in the user name!
24 |