Skip to content

Instantly share code, notes, and snippets.

@dckc
Last active December 12, 2024 07:18
Show Gist options
  • Save dckc/53d44b5b11b9c462c9f3d0e33db2994f to your computer and use it in GitHub Desktop.
Save dckc/53d44b5b11b9c462c9f3d0e33db2994f to your computer and use it in GitHub Desktop.

blog item:


Earlier

I used the github API to get stargazer data for awesome-ocap. chatgpt wrote the code to make a chart.

stargazers_chart.svg

chatgpt wrote some code to do the fetching; the initial version had and endless loop, so I'm in a rate-limiting penalty box at github just now.

That meant using nix to set up a python env for pandas and such, but the rate limiting put the kibosh on that.

So I used uv to run it.

TODO:

  • attach GPT session
  • attach shell session
#!/usr/bin/env python3
import sys
import json
import urllib.request
import os
def fetch_stargazers(repo, token, output_file="stargazers.json"):
"""
Fetch stargazers from the GitHub API using a personal access token.
"""
base_url = f"https://api.github.com/repos/{repo}/stargazers"
headers = {
"Accept": "application/vnd.github.v3.star+json",
"Authorization": f"token {token}",
"User-Agent": "fetch-stargazers-script"
}
page = 1
per_page = 100
all_stargazers = []
while True:
url = f"{base_url}?page={page}&per_page={per_page}"
req = urllib.request.Request(url, headers=headers)
try:
with urllib.request.urlopen(req) as response:
data = response.read()
stargazers = json.loads(data.decode("utf-8"))
# Break if there are no more stargazers
if not stargazers:
break
all_stargazers.extend(stargazers)
page += 1
except urllib.error.HTTPError as e:
print(f"HTTP Error: {e.code} - {e.reason}")
if e.code == 403:
print("You may have hit the rate limit. Wait and try again later.")
sys.exit(1)
# Save to file
with open(output_file, "w") as f:
json.dump(all_stargazers, f, indent=2)
print(f"Fetched {len(all_stargazers)} stargazers and saved to {output_file}.")
if __name__ == "__main__":
if len(sys.argv) < 2:
print("Usage: fetch_stargazers.py <repo>")
sys.exit(1)
repo = sys.argv[1]
token = os.getenv("GITHUB_TOKEN")
if not token:
print("Error: A GitHub personal access token must be set in the GITHUB_TOKEN environment variable.")
sys.exit(1)
fetch_stargazers(repo, token)
# Makefile for fetching stargazers and generating a chart
# Repository details
REPO=dckc/awesome-ocap
OUTPUT=stargazers.json
SCRIPT=script.py
CHART=stargazers_chart.png
FETCH_SCRIPT=fetch_stargazers.py
# Python environment with Nix
PYTHON_ENV=nix run nixpkgs#python39Packages.matplotlib nixpkgs#python39Packages.pandas nixpkgs#python39Packages.requests -c python
# Fetch stargazers
fetch: $(OUTPUT)
$(OUTPUT): $(FETCH_SCRIPT)
@echo "Fetching stargazer data for $(REPO)..."
python3 $(FETCH_SCRIPT) $(REPO) $(OUTPUT)
@echo "Stargazer data saved to $(OUTPUT)."
# Generate chart
chart: $(CHART)
$(CHART): $(SCRIPT) $(OUTPUT)
@echo "Generating chart..."
@$(PYTHON_ENV) $(SCRIPT)
# Clean up
clean:
@rm -f $(OUTPUT) $(CHART)
# All tasks
all: fetch chart
.PHONY: fetch chart clean all
[project]
name = "sg"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"matplotlib>=3.9.3",
"pandas>=2.2.3",
"requests>=2.32.3",
]
import json
import pandas as pd
import matplotlib.pyplot as plt
# Load stargazers data
with open("stargazers.json", "r") as f:
data = json.load(f)
# Extract timestamps
timestamps = [item['starred_at'][:10] for item in data]
# Process data into a DataFrame
df = pd.DataFrame(timestamps, columns=["date"])
df['date'] = pd.to_datetime(df['date'])
stargazers_count = df.groupby('date').size().cumsum()
# Plot the chart
plt.figure(figsize=(10, 6))
plt.plot(stargazers_count.index, stargazers_count.values, marker='o')
plt.title("awesome-ocap Stargazer Growth")
plt.xlabel("Date")
plt.ylabel("Cumulative Stargazers")
plt.grid(True)
plt.savefig("stargazers_chart.svg")
plt.close()
[
{
"starred_at": "2016-10-16T03:18:08Z",
"user": {
"login": "william-ml-leslie",
"id": 47010,
"node_id": "MDQ6VXNlcjQ3MDEw",
"avatar_url": "https://avatars.githubusercontent.com/u/47010?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/william-ml-leslie",
"html_url": "https://github.com/william-ml-leslie",
"followers_url": "https://api.github.com/users/william-ml-leslie/followers",
"following_url": "https://api.github.com/users/william-ml-leslie/following{/other_user}",
"gists_url": "https://api.github.com/users/william-ml-leslie/gists{/gist_id}",
"starred_url": "https://api.github.com/users/william-ml-leslie/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/william-ml-leslie/subscriptions",
"organizations_url": "https://api.github.com/users/william-ml-leslie/orgs",
"repos_url": "https://api.github.com/users/william-ml-leslie/repos",
"events_url": "https://api.github.com/users/william-ml-leslie/events{/privacy}",
"received_events_url": "https://api.github.com/users/william-ml-leslie/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2016-10-16T17:48:34Z",
"user": {
"login": "gsfyrakis",
"id": 55080,
"node_id": "MDQ6VXNlcjU1MDgw",
"avatar_url": "https://avatars.githubusercontent.com/u/55080?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gsfyrakis",
"html_url": "https://github.com/gsfyrakis",
"followers_url": "https://api.github.com/users/gsfyrakis/followers",
"following_url": "https://api.github.com/users/gsfyrakis/following{/other_user}",
"gists_url": "https://api.github.com/users/gsfyrakis/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gsfyrakis/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsfyrakis/subscriptions",
"organizations_url": "https://api.github.com/users/gsfyrakis/orgs",
"repos_url": "https://api.github.com/users/gsfyrakis/repos",
"events_url": "https://api.github.com/users/gsfyrakis/events{/privacy}",
"received_events_url": "https://api.github.com/users/gsfyrakis/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2016-12-30T20:50:23Z",
"user": {
"login": "martymcguire",
"id": 14772,
"node_id": "MDQ6VXNlcjE0Nzcy",
"avatar_url": "https://avatars.githubusercontent.com/u/14772?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/martymcguire",
"html_url": "https://github.com/martymcguire",
"followers_url": "https://api.github.com/users/martymcguire/followers",
"following_url": "https://api.github.com/users/martymcguire/following{/other_user}",
"gists_url": "https://api.github.com/users/martymcguire/gists{/gist_id}",
"starred_url": "https://api.github.com/users/martymcguire/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/martymcguire/subscriptions",
"organizations_url": "https://api.github.com/users/martymcguire/orgs",
"repos_url": "https://api.github.com/users/martymcguire/repos",
"events_url": "https://api.github.com/users/martymcguire/events{/privacy}",
"received_events_url": "https://api.github.com/users/martymcguire/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-01-15T03:19:51Z",
"user": {
"login": "zmanian",
"id": 93434,
"node_id": "MDQ6VXNlcjkzNDM0",
"avatar_url": "https://avatars.githubusercontent.com/u/93434?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zmanian",
"html_url": "https://github.com/zmanian",
"followers_url": "https://api.github.com/users/zmanian/followers",
"following_url": "https://api.github.com/users/zmanian/following{/other_user}",
"gists_url": "https://api.github.com/users/zmanian/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zmanian/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zmanian/subscriptions",
"organizations_url": "https://api.github.com/users/zmanian/orgs",
"repos_url": "https://api.github.com/users/zmanian/repos",
"events_url": "https://api.github.com/users/zmanian/events{/privacy}",
"received_events_url": "https://api.github.com/users/zmanian/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-01-30T16:25:21Z",
"user": {
"login": "thinkmoore",
"id": 236849,
"node_id": "MDQ6VXNlcjIzNjg0OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/236849?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/thinkmoore",
"html_url": "https://github.com/thinkmoore",
"followers_url": "https://api.github.com/users/thinkmoore/followers",
"following_url": "https://api.github.com/users/thinkmoore/following{/other_user}",
"gists_url": "https://api.github.com/users/thinkmoore/gists{/gist_id}",
"starred_url": "https://api.github.com/users/thinkmoore/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/thinkmoore/subscriptions",
"organizations_url": "https://api.github.com/users/thinkmoore/orgs",
"repos_url": "https://api.github.com/users/thinkmoore/repos",
"events_url": "https://api.github.com/users/thinkmoore/events{/privacy}",
"received_events_url": "https://api.github.com/users/thinkmoore/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-02-09T05:48:27Z",
"user": {
"login": "laanwj",
"id": 126646,
"node_id": "MDQ6VXNlcjEyNjY0Ng==",
"avatar_url": "https://avatars.githubusercontent.com/u/126646?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/laanwj",
"html_url": "https://github.com/laanwj",
"followers_url": "https://api.github.com/users/laanwj/followers",
"following_url": "https://api.github.com/users/laanwj/following{/other_user}",
"gists_url": "https://api.github.com/users/laanwj/gists{/gist_id}",
"starred_url": "https://api.github.com/users/laanwj/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/laanwj/subscriptions",
"organizations_url": "https://api.github.com/users/laanwj/orgs",
"repos_url": "https://api.github.com/users/laanwj/repos",
"events_url": "https://api.github.com/users/laanwj/events{/privacy}",
"received_events_url": "https://api.github.com/users/laanwj/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-04-05T18:26:47Z",
"user": {
"login": "whipsch",
"id": 95411,
"node_id": "MDQ6VXNlcjk1NDEx",
"avatar_url": "https://avatars.githubusercontent.com/u/95411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/whipsch",
"html_url": "https://github.com/whipsch",
"followers_url": "https://api.github.com/users/whipsch/followers",
"following_url": "https://api.github.com/users/whipsch/following{/other_user}",
"gists_url": "https://api.github.com/users/whipsch/gists{/gist_id}",
"starred_url": "https://api.github.com/users/whipsch/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/whipsch/subscriptions",
"organizations_url": "https://api.github.com/users/whipsch/orgs",
"repos_url": "https://api.github.com/users/whipsch/repos",
"events_url": "https://api.github.com/users/whipsch/events{/privacy}",
"received_events_url": "https://api.github.com/users/whipsch/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-04-07T22:35:22Z",
"user": {
"login": "MostAwesomeDude",
"id": 118035,
"node_id": "MDQ6VXNlcjExODAzNQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/118035?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MostAwesomeDude",
"html_url": "https://github.com/MostAwesomeDude",
"followers_url": "https://api.github.com/users/MostAwesomeDude/followers",
"following_url": "https://api.github.com/users/MostAwesomeDude/following{/other_user}",
"gists_url": "https://api.github.com/users/MostAwesomeDude/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MostAwesomeDude/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MostAwesomeDude/subscriptions",
"organizations_url": "https://api.github.com/users/MostAwesomeDude/orgs",
"repos_url": "https://api.github.com/users/MostAwesomeDude/repos",
"events_url": "https://api.github.com/users/MostAwesomeDude/events{/privacy}",
"received_events_url": "https://api.github.com/users/MostAwesomeDude/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-04-07T22:36:06Z",
"user": {
"login": "asvarga",
"id": 1190809,
"node_id": "MDQ6VXNlcjExOTA4MDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1190809?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/asvarga",
"html_url": "https://github.com/asvarga",
"followers_url": "https://api.github.com/users/asvarga/followers",
"following_url": "https://api.github.com/users/asvarga/following{/other_user}",
"gists_url": "https://api.github.com/users/asvarga/gists{/gist_id}",
"starred_url": "https://api.github.com/users/asvarga/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/asvarga/subscriptions",
"organizations_url": "https://api.github.com/users/asvarga/orgs",
"repos_url": "https://api.github.com/users/asvarga/repos",
"events_url": "https://api.github.com/users/asvarga/events{/privacy}",
"received_events_url": "https://api.github.com/users/asvarga/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-04-07T23:05:07Z",
"user": {
"login": "zarutian",
"id": 2933876,
"node_id": "MDQ6VXNlcjI5MzM4NzY=",
"avatar_url": "https://avatars.githubusercontent.com/u/2933876?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zarutian",
"html_url": "https://github.com/zarutian",
"followers_url": "https://api.github.com/users/zarutian/followers",
"following_url": "https://api.github.com/users/zarutian/following{/other_user}",
"gists_url": "https://api.github.com/users/zarutian/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zarutian/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zarutian/subscriptions",
"organizations_url": "https://api.github.com/users/zarutian/orgs",
"repos_url": "https://api.github.com/users/zarutian/repos",
"events_url": "https://api.github.com/users/zarutian/events{/privacy}",
"received_events_url": "https://api.github.com/users/zarutian/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-05-02T03:18:49Z",
"user": {
"login": "marcoonroad",
"id": 3820407,
"node_id": "MDQ6VXNlcjM4MjA0MDc=",
"avatar_url": "https://avatars.githubusercontent.com/u/3820407?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/marcoonroad",
"html_url": "https://github.com/marcoonroad",
"followers_url": "https://api.github.com/users/marcoonroad/followers",
"following_url": "https://api.github.com/users/marcoonroad/following{/other_user}",
"gists_url": "https://api.github.com/users/marcoonroad/gists{/gist_id}",
"starred_url": "https://api.github.com/users/marcoonroad/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/marcoonroad/subscriptions",
"organizations_url": "https://api.github.com/users/marcoonroad/orgs",
"repos_url": "https://api.github.com/users/marcoonroad/repos",
"events_url": "https://api.github.com/users/marcoonroad/events{/privacy}",
"received_events_url": "https://api.github.com/users/marcoonroad/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-05-11T18:56:44Z",
"user": {
"login": "meejah",
"id": 145599,
"node_id": "MDQ6VXNlcjE0NTU5OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/145599?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/meejah",
"html_url": "https://github.com/meejah",
"followers_url": "https://api.github.com/users/meejah/followers",
"following_url": "https://api.github.com/users/meejah/following{/other_user}",
"gists_url": "https://api.github.com/users/meejah/gists{/gist_id}",
"starred_url": "https://api.github.com/users/meejah/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/meejah/subscriptions",
"organizations_url": "https://api.github.com/users/meejah/orgs",
"repos_url": "https://api.github.com/users/meejah/repos",
"events_url": "https://api.github.com/users/meejah/events{/privacy}",
"received_events_url": "https://api.github.com/users/meejah/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-06-17T17:03:08Z",
"user": {
"login": "baldvin",
"id": 3154829,
"node_id": "MDQ6VXNlcjMxNTQ4Mjk=",
"avatar_url": "https://avatars.githubusercontent.com/u/3154829?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/baldvin",
"html_url": "https://github.com/baldvin",
"followers_url": "https://api.github.com/users/baldvin/followers",
"following_url": "https://api.github.com/users/baldvin/following{/other_user}",
"gists_url": "https://api.github.com/users/baldvin/gists{/gist_id}",
"starred_url": "https://api.github.com/users/baldvin/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/baldvin/subscriptions",
"organizations_url": "https://api.github.com/users/baldvin/orgs",
"repos_url": "https://api.github.com/users/baldvin/repos",
"events_url": "https://api.github.com/users/baldvin/events{/privacy}",
"received_events_url": "https://api.github.com/users/baldvin/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-06-17T22:34:09Z",
"user": {
"login": "krisl",
"id": 782873,
"node_id": "MDQ6VXNlcjc4Mjg3Mw==",
"avatar_url": "https://avatars.githubusercontent.com/u/782873?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/krisl",
"html_url": "https://github.com/krisl",
"followers_url": "https://api.github.com/users/krisl/followers",
"following_url": "https://api.github.com/users/krisl/following{/other_user}",
"gists_url": "https://api.github.com/users/krisl/gists{/gist_id}",
"starred_url": "https://api.github.com/users/krisl/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/krisl/subscriptions",
"organizations_url": "https://api.github.com/users/krisl/orgs",
"repos_url": "https://api.github.com/users/krisl/repos",
"events_url": "https://api.github.com/users/krisl/events{/privacy}",
"received_events_url": "https://api.github.com/users/krisl/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T00:53:48Z",
"user": {
"login": "redshiftzero",
"id": 7832803,
"node_id": "MDQ6VXNlcjc4MzI4MDM=",
"avatar_url": "https://avatars.githubusercontent.com/u/7832803?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/redshiftzero",
"html_url": "https://github.com/redshiftzero",
"followers_url": "https://api.github.com/users/redshiftzero/followers",
"following_url": "https://api.github.com/users/redshiftzero/following{/other_user}",
"gists_url": "https://api.github.com/users/redshiftzero/gists{/gist_id}",
"starred_url": "https://api.github.com/users/redshiftzero/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/redshiftzero/subscriptions",
"organizations_url": "https://api.github.com/users/redshiftzero/orgs",
"repos_url": "https://api.github.com/users/redshiftzero/repos",
"events_url": "https://api.github.com/users/redshiftzero/events{/privacy}",
"received_events_url": "https://api.github.com/users/redshiftzero/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T01:37:32Z",
"user": {
"login": "zeekay",
"id": 285707,
"node_id": "MDQ6VXNlcjI4NTcwNw==",
"avatar_url": "https://avatars.githubusercontent.com/u/285707?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zeekay",
"html_url": "https://github.com/zeekay",
"followers_url": "https://api.github.com/users/zeekay/followers",
"following_url": "https://api.github.com/users/zeekay/following{/other_user}",
"gists_url": "https://api.github.com/users/zeekay/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zeekay/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zeekay/subscriptions",
"organizations_url": "https://api.github.com/users/zeekay/orgs",
"repos_url": "https://api.github.com/users/zeekay/repos",
"events_url": "https://api.github.com/users/zeekay/events{/privacy}",
"received_events_url": "https://api.github.com/users/zeekay/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T03:06:32Z",
"user": {
"login": "ChristopherA",
"id": 69103,
"node_id": "MDQ6VXNlcjY5MTAz",
"avatar_url": "https://avatars.githubusercontent.com/u/69103?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ChristopherA",
"html_url": "https://github.com/ChristopherA",
"followers_url": "https://api.github.com/users/ChristopherA/followers",
"following_url": "https://api.github.com/users/ChristopherA/following{/other_user}",
"gists_url": "https://api.github.com/users/ChristopherA/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ChristopherA/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ChristopherA/subscriptions",
"organizations_url": "https://api.github.com/users/ChristopherA/orgs",
"repos_url": "https://api.github.com/users/ChristopherA/repos",
"events_url": "https://api.github.com/users/ChristopherA/events{/privacy}",
"received_events_url": "https://api.github.com/users/ChristopherA/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T03:19:38Z",
"user": {
"login": "herestomwiththeweather",
"id": 16299,
"node_id": "MDQ6VXNlcjE2Mjk5",
"avatar_url": "https://avatars.githubusercontent.com/u/16299?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/herestomwiththeweather",
"html_url": "https://github.com/herestomwiththeweather",
"followers_url": "https://api.github.com/users/herestomwiththeweather/followers",
"following_url": "https://api.github.com/users/herestomwiththeweather/following{/other_user}",
"gists_url": "https://api.github.com/users/herestomwiththeweather/gists{/gist_id}",
"starred_url": "https://api.github.com/users/herestomwiththeweather/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/herestomwiththeweather/subscriptions",
"organizations_url": "https://api.github.com/users/herestomwiththeweather/orgs",
"repos_url": "https://api.github.com/users/herestomwiththeweather/repos",
"events_url": "https://api.github.com/users/herestomwiththeweather/events{/privacy}",
"received_events_url": "https://api.github.com/users/herestomwiththeweather/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T04:10:45Z",
"user": {
"login": "ebuchman",
"id": 2300911,
"node_id": "MDQ6VXNlcjIzMDA5MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/2300911?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ebuchman",
"html_url": "https://github.com/ebuchman",
"followers_url": "https://api.github.com/users/ebuchman/followers",
"following_url": "https://api.github.com/users/ebuchman/following{/other_user}",
"gists_url": "https://api.github.com/users/ebuchman/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ebuchman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ebuchman/subscriptions",
"organizations_url": "https://api.github.com/users/ebuchman/orgs",
"repos_url": "https://api.github.com/users/ebuchman/repos",
"events_url": "https://api.github.com/users/ebuchman/events{/privacy}",
"received_events_url": "https://api.github.com/users/ebuchman/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T08:32:45Z",
"user": {
"login": "burdges",
"id": 680126,
"node_id": "MDQ6VXNlcjY4MDEyNg==",
"avatar_url": "https://avatars.githubusercontent.com/u/680126?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/burdges",
"html_url": "https://github.com/burdges",
"followers_url": "https://api.github.com/users/burdges/followers",
"following_url": "https://api.github.com/users/burdges/following{/other_user}",
"gists_url": "https://api.github.com/users/burdges/gists{/gist_id}",
"starred_url": "https://api.github.com/users/burdges/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/burdges/subscriptions",
"organizations_url": "https://api.github.com/users/burdges/orgs",
"repos_url": "https://api.github.com/users/burdges/repos",
"events_url": "https://api.github.com/users/burdges/events{/privacy}",
"received_events_url": "https://api.github.com/users/burdges/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T09:24:28Z",
"user": {
"login": "cfcs",
"id": 9653993,
"node_id": "MDQ6VXNlcjk2NTM5OTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/9653993?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cfcs",
"html_url": "https://github.com/cfcs",
"followers_url": "https://api.github.com/users/cfcs/followers",
"following_url": "https://api.github.com/users/cfcs/following{/other_user}",
"gists_url": "https://api.github.com/users/cfcs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cfcs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cfcs/subscriptions",
"organizations_url": "https://api.github.com/users/cfcs/orgs",
"repos_url": "https://api.github.com/users/cfcs/repos",
"events_url": "https://api.github.com/users/cfcs/events{/privacy}",
"received_events_url": "https://api.github.com/users/cfcs/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-05T18:25:37Z",
"user": {
"login": "theophoric",
"id": 322054,
"node_id": "MDQ6VXNlcjMyMjA1NA==",
"avatar_url": "https://avatars.githubusercontent.com/u/322054?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/theophoric",
"html_url": "https://github.com/theophoric",
"followers_url": "https://api.github.com/users/theophoric/followers",
"following_url": "https://api.github.com/users/theophoric/following{/other_user}",
"gists_url": "https://api.github.com/users/theophoric/gists{/gist_id}",
"starred_url": "https://api.github.com/users/theophoric/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/theophoric/subscriptions",
"organizations_url": "https://api.github.com/users/theophoric/orgs",
"repos_url": "https://api.github.com/users/theophoric/repos",
"events_url": "https://api.github.com/users/theophoric/events{/privacy}",
"received_events_url": "https://api.github.com/users/theophoric/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-06T04:02:31Z",
"user": {
"login": "jdougan",
"id": 1650022,
"node_id": "MDQ6VXNlcjE2NTAwMjI=",
"avatar_url": "https://avatars.githubusercontent.com/u/1650022?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jdougan",
"html_url": "https://github.com/jdougan",
"followers_url": "https://api.github.com/users/jdougan/followers",
"following_url": "https://api.github.com/users/jdougan/following{/other_user}",
"gists_url": "https://api.github.com/users/jdougan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jdougan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jdougan/subscriptions",
"organizations_url": "https://api.github.com/users/jdougan/orgs",
"repos_url": "https://api.github.com/users/jdougan/repos",
"events_url": "https://api.github.com/users/jdougan/events{/privacy}",
"received_events_url": "https://api.github.com/users/jdougan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-07T04:32:24Z",
"user": {
"login": "hierophantos",
"id": 6514416,
"node_id": "MDQ6VXNlcjY1MTQ0MTY=",
"avatar_url": "https://avatars.githubusercontent.com/u/6514416?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hierophantos",
"html_url": "https://github.com/hierophantos",
"followers_url": "https://api.github.com/users/hierophantos/followers",
"following_url": "https://api.github.com/users/hierophantos/following{/other_user}",
"gists_url": "https://api.github.com/users/hierophantos/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hierophantos/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hierophantos/subscriptions",
"organizations_url": "https://api.github.com/users/hierophantos/orgs",
"repos_url": "https://api.github.com/users/hierophantos/repos",
"events_url": "https://api.github.com/users/hierophantos/events{/privacy}",
"received_events_url": "https://api.github.com/users/hierophantos/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-17T17:00:23Z",
"user": {
"login": "gandro",
"id": 50564,
"node_id": "MDQ6VXNlcjUwNTY0",
"avatar_url": "https://avatars.githubusercontent.com/u/50564?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gandro",
"html_url": "https://github.com/gandro",
"followers_url": "https://api.github.com/users/gandro/followers",
"following_url": "https://api.github.com/users/gandro/following{/other_user}",
"gists_url": "https://api.github.com/users/gandro/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gandro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gandro/subscriptions",
"organizations_url": "https://api.github.com/users/gandro/orgs",
"repos_url": "https://api.github.com/users/gandro/repos",
"events_url": "https://api.github.com/users/gandro/events{/privacy}",
"received_events_url": "https://api.github.com/users/gandro/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-27T23:23:11Z",
"user": {
"login": "gojomo",
"id": 1641,
"node_id": "MDQ6VXNlcjE2NDE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1641?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gojomo",
"html_url": "https://github.com/gojomo",
"followers_url": "https://api.github.com/users/gojomo/followers",
"following_url": "https://api.github.com/users/gojomo/following{/other_user}",
"gists_url": "https://api.github.com/users/gojomo/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gojomo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gojomo/subscriptions",
"organizations_url": "https://api.github.com/users/gojomo/orgs",
"repos_url": "https://api.github.com/users/gojomo/repos",
"events_url": "https://api.github.com/users/gojomo/events{/privacy}",
"received_events_url": "https://api.github.com/users/gojomo/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-08-10T15:51:48Z",
"user": {
"login": "reaandrew",
"id": 169734,
"node_id": "MDQ6VXNlcjE2OTczNA==",
"avatar_url": "https://avatars.githubusercontent.com/u/169734?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/reaandrew",
"html_url": "https://github.com/reaandrew",
"followers_url": "https://api.github.com/users/reaandrew/followers",
"following_url": "https://api.github.com/users/reaandrew/following{/other_user}",
"gists_url": "https://api.github.com/users/reaandrew/gists{/gist_id}",
"starred_url": "https://api.github.com/users/reaandrew/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/reaandrew/subscriptions",
"organizations_url": "https://api.github.com/users/reaandrew/orgs",
"repos_url": "https://api.github.com/users/reaandrew/repos",
"events_url": "https://api.github.com/users/reaandrew/events{/privacy}",
"received_events_url": "https://api.github.com/users/reaandrew/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-08-10T17:07:01Z",
"user": {
"login": "robotlolita",
"id": 406477,
"node_id": "MDQ6VXNlcjQwNjQ3Nw==",
"avatar_url": "https://avatars.githubusercontent.com/u/406477?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/robotlolita",
"html_url": "https://github.com/robotlolita",
"followers_url": "https://api.github.com/users/robotlolita/followers",
"following_url": "https://api.github.com/users/robotlolita/following{/other_user}",
"gists_url": "https://api.github.com/users/robotlolita/gists{/gist_id}",
"starred_url": "https://api.github.com/users/robotlolita/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/robotlolita/subscriptions",
"organizations_url": "https://api.github.com/users/robotlolita/orgs",
"repos_url": "https://api.github.com/users/robotlolita/repos",
"events_url": "https://api.github.com/users/robotlolita/events{/privacy}",
"received_events_url": "https://api.github.com/users/robotlolita/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-08-10T18:01:51Z",
"user": {
"login": "patrickdlogan",
"id": 103964,
"node_id": "MDQ6VXNlcjEwMzk2NA==",
"avatar_url": "https://avatars.githubusercontent.com/u/103964?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/patrickdlogan",
"html_url": "https://github.com/patrickdlogan",
"followers_url": "https://api.github.com/users/patrickdlogan/followers",
"following_url": "https://api.github.com/users/patrickdlogan/following{/other_user}",
"gists_url": "https://api.github.com/users/patrickdlogan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/patrickdlogan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/patrickdlogan/subscriptions",
"organizations_url": "https://api.github.com/users/patrickdlogan/orgs",
"repos_url": "https://api.github.com/users/patrickdlogan/repos",
"events_url": "https://api.github.com/users/patrickdlogan/events{/privacy}",
"received_events_url": "https://api.github.com/users/patrickdlogan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-08-12T10:57:25Z",
"user": {
"login": "bompi88",
"id": 3270628,
"node_id": "MDQ6VXNlcjMyNzA2Mjg=",
"avatar_url": "https://avatars.githubusercontent.com/u/3270628?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bompi88",
"html_url": "https://github.com/bompi88",
"followers_url": "https://api.github.com/users/bompi88/followers",
"following_url": "https://api.github.com/users/bompi88/following{/other_user}",
"gists_url": "https://api.github.com/users/bompi88/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bompi88/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bompi88/subscriptions",
"organizations_url": "https://api.github.com/users/bompi88/orgs",
"repos_url": "https://api.github.com/users/bompi88/repos",
"events_url": "https://api.github.com/users/bompi88/events{/privacy}",
"received_events_url": "https://api.github.com/users/bompi88/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-08-14T14:53:07Z",
"user": {
"login": "JackBracken",
"id": 295749,
"node_id": "MDQ6VXNlcjI5NTc0OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/295749?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JackBracken",
"html_url": "https://github.com/JackBracken",
"followers_url": "https://api.github.com/users/JackBracken/followers",
"following_url": "https://api.github.com/users/JackBracken/following{/other_user}",
"gists_url": "https://api.github.com/users/JackBracken/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JackBracken/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JackBracken/subscriptions",
"organizations_url": "https://api.github.com/users/JackBracken/orgs",
"repos_url": "https://api.github.com/users/JackBracken/repos",
"events_url": "https://api.github.com/users/JackBracken/events{/privacy}",
"received_events_url": "https://api.github.com/users/JackBracken/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-09-17T08:33:03Z",
"user": {
"login": "void4",
"id": 11392207,
"node_id": "MDQ6VXNlcjExMzkyMjA3",
"avatar_url": "https://avatars.githubusercontent.com/u/11392207?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/void4",
"html_url": "https://github.com/void4",
"followers_url": "https://api.github.com/users/void4/followers",
"following_url": "https://api.github.com/users/void4/following{/other_user}",
"gists_url": "https://api.github.com/users/void4/gists{/gist_id}",
"starred_url": "https://api.github.com/users/void4/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/void4/subscriptions",
"organizations_url": "https://api.github.com/users/void4/orgs",
"repos_url": "https://api.github.com/users/void4/repos",
"events_url": "https://api.github.com/users/void4/events{/privacy}",
"received_events_url": "https://api.github.com/users/void4/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-09-29T02:27:50Z",
"user": {
"login": "dhbaird",
"id": 1010554,
"node_id": "MDQ6VXNlcjEwMTA1NTQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/1010554?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dhbaird",
"html_url": "https://github.com/dhbaird",
"followers_url": "https://api.github.com/users/dhbaird/followers",
"following_url": "https://api.github.com/users/dhbaird/following{/other_user}",
"gists_url": "https://api.github.com/users/dhbaird/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dhbaird/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dhbaird/subscriptions",
"organizations_url": "https://api.github.com/users/dhbaird/orgs",
"repos_url": "https://api.github.com/users/dhbaird/repos",
"events_url": "https://api.github.com/users/dhbaird/events{/privacy}",
"received_events_url": "https://api.github.com/users/dhbaird/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-10-02T13:15:49Z",
"user": {
"login": "valpackett",
"id": 208340,
"node_id": "MDQ6VXNlcjIwODM0MA==",
"avatar_url": "https://avatars.githubusercontent.com/u/208340?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/valpackett",
"html_url": "https://github.com/valpackett",
"followers_url": "https://api.github.com/users/valpackett/followers",
"following_url": "https://api.github.com/users/valpackett/following{/other_user}",
"gists_url": "https://api.github.com/users/valpackett/gists{/gist_id}",
"starred_url": "https://api.github.com/users/valpackett/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/valpackett/subscriptions",
"organizations_url": "https://api.github.com/users/valpackett/orgs",
"repos_url": "https://api.github.com/users/valpackett/repos",
"events_url": "https://api.github.com/users/valpackett/events{/privacy}",
"received_events_url": "https://api.github.com/users/valpackett/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-10-02T22:15:32Z",
"user": {
"login": "pwrdwnsys",
"id": 10925805,
"node_id": "MDQ6VXNlcjEwOTI1ODA1",
"avatar_url": "https://avatars.githubusercontent.com/u/10925805?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/pwrdwnsys",
"html_url": "https://github.com/pwrdwnsys",
"followers_url": "https://api.github.com/users/pwrdwnsys/followers",
"following_url": "https://api.github.com/users/pwrdwnsys/following{/other_user}",
"gists_url": "https://api.github.com/users/pwrdwnsys/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pwrdwnsys/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pwrdwnsys/subscriptions",
"organizations_url": "https://api.github.com/users/pwrdwnsys/orgs",
"repos_url": "https://api.github.com/users/pwrdwnsys/repos",
"events_url": "https://api.github.com/users/pwrdwnsys/events{/privacy}",
"received_events_url": "https://api.github.com/users/pwrdwnsys/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-10-10T21:29:08Z",
"user": {
"login": "sunny-g",
"id": 2055636,
"node_id": "MDQ6VXNlcjIwNTU2MzY=",
"avatar_url": "https://avatars.githubusercontent.com/u/2055636?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/sunny-g",
"html_url": "https://github.com/sunny-g",
"followers_url": "https://api.github.com/users/sunny-g/followers",
"following_url": "https://api.github.com/users/sunny-g/following{/other_user}",
"gists_url": "https://api.github.com/users/sunny-g/gists{/gist_id}",
"starred_url": "https://api.github.com/users/sunny-g/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sunny-g/subscriptions",
"organizations_url": "https://api.github.com/users/sunny-g/orgs",
"repos_url": "https://api.github.com/users/sunny-g/repos",
"events_url": "https://api.github.com/users/sunny-g/events{/privacy}",
"received_events_url": "https://api.github.com/users/sunny-g/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-10-24T11:48:40Z",
"user": {
"login": "tomasklapka",
"id": 370171,
"node_id": "MDQ6VXNlcjM3MDE3MQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/370171?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tomasklapka",
"html_url": "https://github.com/tomasklapka",
"followers_url": "https://api.github.com/users/tomasklapka/followers",
"following_url": "https://api.github.com/users/tomasklapka/following{/other_user}",
"gists_url": "https://api.github.com/users/tomasklapka/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tomasklapka/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tomasklapka/subscriptions",
"organizations_url": "https://api.github.com/users/tomasklapka/orgs",
"repos_url": "https://api.github.com/users/tomasklapka/repos",
"events_url": "https://api.github.com/users/tomasklapka/events{/privacy}",
"received_events_url": "https://api.github.com/users/tomasklapka/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-11-03T04:08:04Z",
"user": {
"login": "krfkeith",
"id": 8629399,
"node_id": "MDQ6VXNlcjg2MjkzOTk=",
"avatar_url": "https://avatars.githubusercontent.com/u/8629399?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/krfkeith",
"html_url": "https://github.com/krfkeith",
"followers_url": "https://api.github.com/users/krfkeith/followers",
"following_url": "https://api.github.com/users/krfkeith/following{/other_user}",
"gists_url": "https://api.github.com/users/krfkeith/gists{/gist_id}",
"starred_url": "https://api.github.com/users/krfkeith/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/krfkeith/subscriptions",
"organizations_url": "https://api.github.com/users/krfkeith/orgs",
"repos_url": "https://api.github.com/users/krfkeith/repos",
"events_url": "https://api.github.com/users/krfkeith/events{/privacy}",
"received_events_url": "https://api.github.com/users/krfkeith/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-11-09T14:30:39Z",
"user": {
"login": "Ljzn",
"id": 19494388,
"node_id": "MDQ6VXNlcjE5NDk0Mzg4",
"avatar_url": "https://avatars.githubusercontent.com/u/19494388?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Ljzn",
"html_url": "https://github.com/Ljzn",
"followers_url": "https://api.github.com/users/Ljzn/followers",
"following_url": "https://api.github.com/users/Ljzn/following{/other_user}",
"gists_url": "https://api.github.com/users/Ljzn/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Ljzn/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Ljzn/subscriptions",
"organizations_url": "https://api.github.com/users/Ljzn/orgs",
"repos_url": "https://api.github.com/users/Ljzn/repos",
"events_url": "https://api.github.com/users/Ljzn/events{/privacy}",
"received_events_url": "https://api.github.com/users/Ljzn/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-11-21T08:24:08Z",
"user": {
"login": "liufengyun",
"id": 754633,
"node_id": "MDQ6VXNlcjc1NDYzMw==",
"avatar_url": "https://avatars.githubusercontent.com/u/754633?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/liufengyun",
"html_url": "https://github.com/liufengyun",
"followers_url": "https://api.github.com/users/liufengyun/followers",
"following_url": "https://api.github.com/users/liufengyun/following{/other_user}",
"gists_url": "https://api.github.com/users/liufengyun/gists{/gist_id}",
"starred_url": "https://api.github.com/users/liufengyun/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/liufengyun/subscriptions",
"organizations_url": "https://api.github.com/users/liufengyun/orgs",
"repos_url": "https://api.github.com/users/liufengyun/repos",
"events_url": "https://api.github.com/users/liufengyun/events{/privacy}",
"received_events_url": "https://api.github.com/users/liufengyun/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-12-09T15:24:29Z",
"user": {
"login": "tomming",
"id": 8277221,
"node_id": "MDQ6VXNlcjgyNzcyMjE=",
"avatar_url": "https://avatars.githubusercontent.com/u/8277221?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tomming",
"html_url": "https://github.com/tomming",
"followers_url": "https://api.github.com/users/tomming/followers",
"following_url": "https://api.github.com/users/tomming/following{/other_user}",
"gists_url": "https://api.github.com/users/tomming/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tomming/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tomming/subscriptions",
"organizations_url": "https://api.github.com/users/tomming/orgs",
"repos_url": "https://api.github.com/users/tomming/repos",
"events_url": "https://api.github.com/users/tomming/events{/privacy}",
"received_events_url": "https://api.github.com/users/tomming/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-01-08T16:01:49Z",
"user": {
"login": "msingle",
"id": 18760,
"node_id": "MDQ6VXNlcjE4NzYw",
"avatar_url": "https://avatars.githubusercontent.com/u/18760?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/msingle",
"html_url": "https://github.com/msingle",
"followers_url": "https://api.github.com/users/msingle/followers",
"following_url": "https://api.github.com/users/msingle/following{/other_user}",
"gists_url": "https://api.github.com/users/msingle/gists{/gist_id}",
"starred_url": "https://api.github.com/users/msingle/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/msingle/subscriptions",
"organizations_url": "https://api.github.com/users/msingle/orgs",
"repos_url": "https://api.github.com/users/msingle/repos",
"events_url": "https://api.github.com/users/msingle/events{/privacy}",
"received_events_url": "https://api.github.com/users/msingle/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-01-08T18:21:03Z",
"user": {
"login": "rationalthug",
"id": 105758,
"node_id": "MDQ6VXNlcjEwNTc1OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/105758?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rationalthug",
"html_url": "https://github.com/rationalthug",
"followers_url": "https://api.github.com/users/rationalthug/followers",
"following_url": "https://api.github.com/users/rationalthug/following{/other_user}",
"gists_url": "https://api.github.com/users/rationalthug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rationalthug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rationalthug/subscriptions",
"organizations_url": "https://api.github.com/users/rationalthug/orgs",
"repos_url": "https://api.github.com/users/rationalthug/repos",
"events_url": "https://api.github.com/users/rationalthug/events{/privacy}",
"received_events_url": "https://api.github.com/users/rationalthug/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-01-23T17:46:56Z",
"user": {
"login": "mossid",
"id": 18329646,
"node_id": "MDQ6VXNlcjE4MzI5NjQ2",
"avatar_url": "https://avatars.githubusercontent.com/u/18329646?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mossid",
"html_url": "https://github.com/mossid",
"followers_url": "https://api.github.com/users/mossid/followers",
"following_url": "https://api.github.com/users/mossid/following{/other_user}",
"gists_url": "https://api.github.com/users/mossid/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mossid/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mossid/subscriptions",
"organizations_url": "https://api.github.com/users/mossid/orgs",
"repos_url": "https://api.github.com/users/mossid/repos",
"events_url": "https://api.github.com/users/mossid/events{/privacy}",
"received_events_url": "https://api.github.com/users/mossid/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-01-26T06:42:19Z",
"user": {
"login": "jubos",
"id": 41347,
"node_id": "MDQ6VXNlcjQxMzQ3",
"avatar_url": "https://avatars.githubusercontent.com/u/41347?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jubos",
"html_url": "https://github.com/jubos",
"followers_url": "https://api.github.com/users/jubos/followers",
"following_url": "https://api.github.com/users/jubos/following{/other_user}",
"gists_url": "https://api.github.com/users/jubos/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jubos/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jubos/subscriptions",
"organizations_url": "https://api.github.com/users/jubos/orgs",
"repos_url": "https://api.github.com/users/jubos/repos",
"events_url": "https://api.github.com/users/jubos/events{/privacy}",
"received_events_url": "https://api.github.com/users/jubos/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-02-04T17:57:50Z",
"user": {
"login": "kelbyludwig",
"id": 3527248,
"node_id": "MDQ6VXNlcjM1MjcyNDg=",
"avatar_url": "https://avatars.githubusercontent.com/u/3527248?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kelbyludwig",
"html_url": "https://github.com/kelbyludwig",
"followers_url": "https://api.github.com/users/kelbyludwig/followers",
"following_url": "https://api.github.com/users/kelbyludwig/following{/other_user}",
"gists_url": "https://api.github.com/users/kelbyludwig/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kelbyludwig/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kelbyludwig/subscriptions",
"organizations_url": "https://api.github.com/users/kelbyludwig/orgs",
"repos_url": "https://api.github.com/users/kelbyludwig/repos",
"events_url": "https://api.github.com/users/kelbyludwig/events{/privacy}",
"received_events_url": "https://api.github.com/users/kelbyludwig/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-02-08T23:18:34Z",
"user": {
"login": "kephas",
"id": 762421,
"node_id": "MDQ6VXNlcjc2MjQyMQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/762421?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kephas",
"html_url": "https://github.com/kephas",
"followers_url": "https://api.github.com/users/kephas/followers",
"following_url": "https://api.github.com/users/kephas/following{/other_user}",
"gists_url": "https://api.github.com/users/kephas/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kephas/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kephas/subscriptions",
"organizations_url": "https://api.github.com/users/kephas/orgs",
"repos_url": "https://api.github.com/users/kephas/repos",
"events_url": "https://api.github.com/users/kephas/events{/privacy}",
"received_events_url": "https://api.github.com/users/kephas/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-02-17T06:45:11Z",
"user": {
"login": "mikalv",
"id": 195767,
"node_id": "MDQ6VXNlcjE5NTc2Nw==",
"avatar_url": "https://avatars.githubusercontent.com/u/195767?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mikalv",
"html_url": "https://github.com/mikalv",
"followers_url": "https://api.github.com/users/mikalv/followers",
"following_url": "https://api.github.com/users/mikalv/following{/other_user}",
"gists_url": "https://api.github.com/users/mikalv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mikalv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mikalv/subscriptions",
"organizations_url": "https://api.github.com/users/mikalv/orgs",
"repos_url": "https://api.github.com/users/mikalv/repos",
"events_url": "https://api.github.com/users/mikalv/events{/privacy}",
"received_events_url": "https://api.github.com/users/mikalv/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-02-23T14:04:43Z",
"user": {
"login": "sardaukar",
"id": 153407,
"node_id": "MDQ6VXNlcjE1MzQwNw==",
"avatar_url": "https://avatars.githubusercontent.com/u/153407?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/sardaukar",
"html_url": "https://github.com/sardaukar",
"followers_url": "https://api.github.com/users/sardaukar/followers",
"following_url": "https://api.github.com/users/sardaukar/following{/other_user}",
"gists_url": "https://api.github.com/users/sardaukar/gists{/gist_id}",
"starred_url": "https://api.github.com/users/sardaukar/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sardaukar/subscriptions",
"organizations_url": "https://api.github.com/users/sardaukar/orgs",
"repos_url": "https://api.github.com/users/sardaukar/repos",
"events_url": "https://api.github.com/users/sardaukar/events{/privacy}",
"received_events_url": "https://api.github.com/users/sardaukar/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-02-24T22:32:56Z",
"user": {
"login": "hexwaxwing",
"id": 26129437,
"node_id": "MDQ6VXNlcjI2MTI5NDM3",
"avatar_url": "https://avatars.githubusercontent.com/u/26129437?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hexwaxwing",
"html_url": "https://github.com/hexwaxwing",
"followers_url": "https://api.github.com/users/hexwaxwing/followers",
"following_url": "https://api.github.com/users/hexwaxwing/following{/other_user}",
"gists_url": "https://api.github.com/users/hexwaxwing/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hexwaxwing/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hexwaxwing/subscriptions",
"organizations_url": "https://api.github.com/users/hexwaxwing/orgs",
"repos_url": "https://api.github.com/users/hexwaxwing/repos",
"events_url": "https://api.github.com/users/hexwaxwing/events{/privacy}",
"received_events_url": "https://api.github.com/users/hexwaxwing/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-03-09T13:48:37Z",
"user": {
"login": "yuanmai",
"id": 475195,
"node_id": "MDQ6VXNlcjQ3NTE5NQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/475195?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yuanmai",
"html_url": "https://github.com/yuanmai",
"followers_url": "https://api.github.com/users/yuanmai/followers",
"following_url": "https://api.github.com/users/yuanmai/following{/other_user}",
"gists_url": "https://api.github.com/users/yuanmai/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yuanmai/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yuanmai/subscriptions",
"organizations_url": "https://api.github.com/users/yuanmai/orgs",
"repos_url": "https://api.github.com/users/yuanmai/repos",
"events_url": "https://api.github.com/users/yuanmai/events{/privacy}",
"received_events_url": "https://api.github.com/users/yuanmai/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-03-12T22:22:35Z",
"user": {
"login": "yarec",
"id": 1519413,
"node_id": "MDQ6VXNlcjE1MTk0MTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1519413?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yarec",
"html_url": "https://github.com/yarec",
"followers_url": "https://api.github.com/users/yarec/followers",
"following_url": "https://api.github.com/users/yarec/following{/other_user}",
"gists_url": "https://api.github.com/users/yarec/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yarec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yarec/subscriptions",
"organizations_url": "https://api.github.com/users/yarec/orgs",
"repos_url": "https://api.github.com/users/yarec/repos",
"events_url": "https://api.github.com/users/yarec/events{/privacy}",
"received_events_url": "https://api.github.com/users/yarec/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-03-19T22:34:26Z",
"user": {
"login": "erwanor",
"id": 7871622,
"node_id": "MDQ6VXNlcjc4NzE2MjI=",
"avatar_url": "https://avatars.githubusercontent.com/u/7871622?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/erwanor",
"html_url": "https://github.com/erwanor",
"followers_url": "https://api.github.com/users/erwanor/followers",
"following_url": "https://api.github.com/users/erwanor/following{/other_user}",
"gists_url": "https://api.github.com/users/erwanor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/erwanor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/erwanor/subscriptions",
"organizations_url": "https://api.github.com/users/erwanor/orgs",
"repos_url": "https://api.github.com/users/erwanor/repos",
"events_url": "https://api.github.com/users/erwanor/events{/privacy}",
"received_events_url": "https://api.github.com/users/erwanor/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-03-29T02:34:12Z",
"user": {
"login": "taktoa",
"id": 553443,
"node_id": "MDQ6VXNlcjU1MzQ0Mw==",
"avatar_url": "https://avatars.githubusercontent.com/u/553443?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/taktoa",
"html_url": "https://github.com/taktoa",
"followers_url": "https://api.github.com/users/taktoa/followers",
"following_url": "https://api.github.com/users/taktoa/following{/other_user}",
"gists_url": "https://api.github.com/users/taktoa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/taktoa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/taktoa/subscriptions",
"organizations_url": "https://api.github.com/users/taktoa/orgs",
"repos_url": "https://api.github.com/users/taktoa/repos",
"events_url": "https://api.github.com/users/taktoa/events{/privacy}",
"received_events_url": "https://api.github.com/users/taktoa/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-04-06T12:01:06Z",
"user": {
"login": "xuqzab",
"id": 24831619,
"node_id": "MDQ6VXNlcjI0ODMxNjE5",
"avatar_url": "https://avatars.githubusercontent.com/u/24831619?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/xuqzab",
"html_url": "https://github.com/xuqzab",
"followers_url": "https://api.github.com/users/xuqzab/followers",
"following_url": "https://api.github.com/users/xuqzab/following{/other_user}",
"gists_url": "https://api.github.com/users/xuqzab/gists{/gist_id}",
"starred_url": "https://api.github.com/users/xuqzab/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/xuqzab/subscriptions",
"organizations_url": "https://api.github.com/users/xuqzab/orgs",
"repos_url": "https://api.github.com/users/xuqzab/repos",
"events_url": "https://api.github.com/users/xuqzab/events{/privacy}",
"received_events_url": "https://api.github.com/users/xuqzab/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-04-08T12:20:24Z",
"user": {
"login": "le-bananafish",
"id": 11536361,
"node_id": "MDQ6VXNlcjExNTM2MzYx",
"avatar_url": "https://avatars.githubusercontent.com/u/11536361?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/le-bananafish",
"html_url": "https://github.com/le-bananafish",
"followers_url": "https://api.github.com/users/le-bananafish/followers",
"following_url": "https://api.github.com/users/le-bananafish/following{/other_user}",
"gists_url": "https://api.github.com/users/le-bananafish/gists{/gist_id}",
"starred_url": "https://api.github.com/users/le-bananafish/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/le-bananafish/subscriptions",
"organizations_url": "https://api.github.com/users/le-bananafish/orgs",
"repos_url": "https://api.github.com/users/le-bananafish/repos",
"events_url": "https://api.github.com/users/le-bananafish/events{/privacy}",
"received_events_url": "https://api.github.com/users/le-bananafish/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-04-19T15:55:40Z",
"user": {
"login": "liamsi",
"id": 7441766,
"node_id": "MDQ6VXNlcjc0NDE3NjY=",
"avatar_url": "https://avatars.githubusercontent.com/u/7441766?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/liamsi",
"html_url": "https://github.com/liamsi",
"followers_url": "https://api.github.com/users/liamsi/followers",
"following_url": "https://api.github.com/users/liamsi/following{/other_user}",
"gists_url": "https://api.github.com/users/liamsi/gists{/gist_id}",
"starred_url": "https://api.github.com/users/liamsi/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/liamsi/subscriptions",
"organizations_url": "https://api.github.com/users/liamsi/orgs",
"repos_url": "https://api.github.com/users/liamsi/repos",
"events_url": "https://api.github.com/users/liamsi/events{/privacy}",
"received_events_url": "https://api.github.com/users/liamsi/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-04-23T17:40:35Z",
"user": {
"login": "tschoffelen",
"id": 666220,
"node_id": "MDQ6VXNlcjY2NjIyMA==",
"avatar_url": "https://avatars.githubusercontent.com/u/666220?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tschoffelen",
"html_url": "https://github.com/tschoffelen",
"followers_url": "https://api.github.com/users/tschoffelen/followers",
"following_url": "https://api.github.com/users/tschoffelen/following{/other_user}",
"gists_url": "https://api.github.com/users/tschoffelen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tschoffelen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tschoffelen/subscriptions",
"organizations_url": "https://api.github.com/users/tschoffelen/orgs",
"repos_url": "https://api.github.com/users/tschoffelen/repos",
"events_url": "https://api.github.com/users/tschoffelen/events{/privacy}",
"received_events_url": "https://api.github.com/users/tschoffelen/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-04-26T19:10:31Z",
"user": {
"login": "squiddle",
"id": 98932,
"node_id": "MDQ6VXNlcjk4OTMy",
"avatar_url": "https://avatars.githubusercontent.com/u/98932?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/squiddle",
"html_url": "https://github.com/squiddle",
"followers_url": "https://api.github.com/users/squiddle/followers",
"following_url": "https://api.github.com/users/squiddle/following{/other_user}",
"gists_url": "https://api.github.com/users/squiddle/gists{/gist_id}",
"starred_url": "https://api.github.com/users/squiddle/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/squiddle/subscriptions",
"organizations_url": "https://api.github.com/users/squiddle/orgs",
"repos_url": "https://api.github.com/users/squiddle/repos",
"events_url": "https://api.github.com/users/squiddle/events{/privacy}",
"received_events_url": "https://api.github.com/users/squiddle/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-05-03T04:44:32Z",
"user": {
"login": "henrytill",
"id": 6430643,
"node_id": "MDQ6VXNlcjY0MzA2NDM=",
"avatar_url": "https://avatars.githubusercontent.com/u/6430643?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/henrytill",
"html_url": "https://github.com/henrytill",
"followers_url": "https://api.github.com/users/henrytill/followers",
"following_url": "https://api.github.com/users/henrytill/following{/other_user}",
"gists_url": "https://api.github.com/users/henrytill/gists{/gist_id}",
"starred_url": "https://api.github.com/users/henrytill/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/henrytill/subscriptions",
"organizations_url": "https://api.github.com/users/henrytill/orgs",
"repos_url": "https://api.github.com/users/henrytill/repos",
"events_url": "https://api.github.com/users/henrytill/events{/privacy}",
"received_events_url": "https://api.github.com/users/henrytill/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-08-04T14:24:10Z",
"user": {
"login": "chrish42",
"id": 632858,
"node_id": "MDQ6VXNlcjYzMjg1OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/632858?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/chrish42",
"html_url": "https://github.com/chrish42",
"followers_url": "https://api.github.com/users/chrish42/followers",
"following_url": "https://api.github.com/users/chrish42/following{/other_user}",
"gists_url": "https://api.github.com/users/chrish42/gists{/gist_id}",
"starred_url": "https://api.github.com/users/chrish42/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/chrish42/subscriptions",
"organizations_url": "https://api.github.com/users/chrish42/orgs",
"repos_url": "https://api.github.com/users/chrish42/repos",
"events_url": "https://api.github.com/users/chrish42/events{/privacy}",
"received_events_url": "https://api.github.com/users/chrish42/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-08-31T00:47:50Z",
"user": {
"login": "jalcine",
"id": 452100,
"node_id": "MDQ6VXNlcjQ1MjEwMA==",
"avatar_url": "https://avatars.githubusercontent.com/u/452100?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jalcine",
"html_url": "https://github.com/jalcine",
"followers_url": "https://api.github.com/users/jalcine/followers",
"following_url": "https://api.github.com/users/jalcine/following{/other_user}",
"gists_url": "https://api.github.com/users/jalcine/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jalcine/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jalcine/subscriptions",
"organizations_url": "https://api.github.com/users/jalcine/orgs",
"repos_url": "https://api.github.com/users/jalcine/repos",
"events_url": "https://api.github.com/users/jalcine/events{/privacy}",
"received_events_url": "https://api.github.com/users/jalcine/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-08-31T11:01:47Z",
"user": {
"login": "raucao",
"id": 842,
"node_id": "MDQ6VXNlcjg0Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/842?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/raucao",
"html_url": "https://github.com/raucao",
"followers_url": "https://api.github.com/users/raucao/followers",
"following_url": "https://api.github.com/users/raucao/following{/other_user}",
"gists_url": "https://api.github.com/users/raucao/gists{/gist_id}",
"starred_url": "https://api.github.com/users/raucao/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/raucao/subscriptions",
"organizations_url": "https://api.github.com/users/raucao/orgs",
"repos_url": "https://api.github.com/users/raucao/repos",
"events_url": "https://api.github.com/users/raucao/events{/privacy}",
"received_events_url": "https://api.github.com/users/raucao/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-09-05T08:29:12Z",
"user": {
"login": "scull7",
"id": 234352,
"node_id": "MDQ6VXNlcjIzNDM1Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/234352?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scull7",
"html_url": "https://github.com/scull7",
"followers_url": "https://api.github.com/users/scull7/followers",
"following_url": "https://api.github.com/users/scull7/following{/other_user}",
"gists_url": "https://api.github.com/users/scull7/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scull7/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scull7/subscriptions",
"organizations_url": "https://api.github.com/users/scull7/orgs",
"repos_url": "https://api.github.com/users/scull7/repos",
"events_url": "https://api.github.com/users/scull7/events{/privacy}",
"received_events_url": "https://api.github.com/users/scull7/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-09-11T09:29:25Z",
"user": {
"login": "alanz",
"id": 409607,
"node_id": "MDQ6VXNlcjQwOTYwNw==",
"avatar_url": "https://avatars.githubusercontent.com/u/409607?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alanz",
"html_url": "https://github.com/alanz",
"followers_url": "https://api.github.com/users/alanz/followers",
"following_url": "https://api.github.com/users/alanz/following{/other_user}",
"gists_url": "https://api.github.com/users/alanz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alanz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alanz/subscriptions",
"organizations_url": "https://api.github.com/users/alanz/orgs",
"repos_url": "https://api.github.com/users/alanz/repos",
"events_url": "https://api.github.com/users/alanz/events{/privacy}",
"received_events_url": "https://api.github.com/users/alanz/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-09-21T10:38:18Z",
"user": {
"login": "keeganpoppen",
"id": 179742,
"node_id": "MDQ6VXNlcjE3OTc0Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/179742?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/keeganpoppen",
"html_url": "https://github.com/keeganpoppen",
"followers_url": "https://api.github.com/users/keeganpoppen/followers",
"following_url": "https://api.github.com/users/keeganpoppen/following{/other_user}",
"gists_url": "https://api.github.com/users/keeganpoppen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/keeganpoppen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/keeganpoppen/subscriptions",
"organizations_url": "https://api.github.com/users/keeganpoppen/orgs",
"repos_url": "https://api.github.com/users/keeganpoppen/repos",
"events_url": "https://api.github.com/users/keeganpoppen/events{/privacy}",
"received_events_url": "https://api.github.com/users/keeganpoppen/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-09-25T10:49:11Z",
"user": {
"login": "kanarok",
"id": 11598337,
"node_id": "MDQ6VXNlcjExNTk4MzM3",
"avatar_url": "https://avatars.githubusercontent.com/u/11598337?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kanarok",
"html_url": "https://github.com/kanarok",
"followers_url": "https://api.github.com/users/kanarok/followers",
"following_url": "https://api.github.com/users/kanarok/following{/other_user}",
"gists_url": "https://api.github.com/users/kanarok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kanarok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kanarok/subscriptions",
"organizations_url": "https://api.github.com/users/kanarok/orgs",
"repos_url": "https://api.github.com/users/kanarok/repos",
"events_url": "https://api.github.com/users/kanarok/events{/privacy}",
"received_events_url": "https://api.github.com/users/kanarok/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-01T13:53:09Z",
"user": {
"login": "no-identd",
"id": 1437795,
"node_id": "MDQ6VXNlcjE0Mzc3OTU=",
"avatar_url": "https://avatars.githubusercontent.com/u/1437795?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/no-identd",
"html_url": "https://github.com/no-identd",
"followers_url": "https://api.github.com/users/no-identd/followers",
"following_url": "https://api.github.com/users/no-identd/following{/other_user}",
"gists_url": "https://api.github.com/users/no-identd/gists{/gist_id}",
"starred_url": "https://api.github.com/users/no-identd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/no-identd/subscriptions",
"organizations_url": "https://api.github.com/users/no-identd/orgs",
"repos_url": "https://api.github.com/users/no-identd/repos",
"events_url": "https://api.github.com/users/no-identd/events{/privacy}",
"received_events_url": "https://api.github.com/users/no-identd/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-05T16:46:25Z",
"user": {
"login": "mtnygard",
"id": 116714,
"node_id": "MDQ6VXNlcjExNjcxNA==",
"avatar_url": "https://avatars.githubusercontent.com/u/116714?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mtnygard",
"html_url": "https://github.com/mtnygard",
"followers_url": "https://api.github.com/users/mtnygard/followers",
"following_url": "https://api.github.com/users/mtnygard/following{/other_user}",
"gists_url": "https://api.github.com/users/mtnygard/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mtnygard/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mtnygard/subscriptions",
"organizations_url": "https://api.github.com/users/mtnygard/orgs",
"repos_url": "https://api.github.com/users/mtnygard/repos",
"events_url": "https://api.github.com/users/mtnygard/events{/privacy}",
"received_events_url": "https://api.github.com/users/mtnygard/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-05T19:04:05Z",
"user": {
"login": "leorog",
"id": 5731508,
"node_id": "MDQ6VXNlcjU3MzE1MDg=",
"avatar_url": "https://avatars.githubusercontent.com/u/5731508?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/leorog",
"html_url": "https://github.com/leorog",
"followers_url": "https://api.github.com/users/leorog/followers",
"following_url": "https://api.github.com/users/leorog/following{/other_user}",
"gists_url": "https://api.github.com/users/leorog/gists{/gist_id}",
"starred_url": "https://api.github.com/users/leorog/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/leorog/subscriptions",
"organizations_url": "https://api.github.com/users/leorog/orgs",
"repos_url": "https://api.github.com/users/leorog/repos",
"events_url": "https://api.github.com/users/leorog/events{/privacy}",
"received_events_url": "https://api.github.com/users/leorog/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-05T20:58:58Z",
"user": {
"login": "adamnemecek",
"id": 182415,
"node_id": "MDQ6VXNlcjE4MjQxNQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/182415?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/adamnemecek",
"html_url": "https://github.com/adamnemecek",
"followers_url": "https://api.github.com/users/adamnemecek/followers",
"following_url": "https://api.github.com/users/adamnemecek/following{/other_user}",
"gists_url": "https://api.github.com/users/adamnemecek/gists{/gist_id}",
"starred_url": "https://api.github.com/users/adamnemecek/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/adamnemecek/subscriptions",
"organizations_url": "https://api.github.com/users/adamnemecek/orgs",
"repos_url": "https://api.github.com/users/adamnemecek/repos",
"events_url": "https://api.github.com/users/adamnemecek/events{/privacy}",
"received_events_url": "https://api.github.com/users/adamnemecek/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-05T21:27:32Z",
"user": {
"login": "buko",
"id": 12692585,
"node_id": "MDQ6VXNlcjEyNjkyNTg1",
"avatar_url": "https://avatars.githubusercontent.com/u/12692585?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/buko",
"html_url": "https://github.com/buko",
"followers_url": "https://api.github.com/users/buko/followers",
"following_url": "https://api.github.com/users/buko/following{/other_user}",
"gists_url": "https://api.github.com/users/buko/gists{/gist_id}",
"starred_url": "https://api.github.com/users/buko/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/buko/subscriptions",
"organizations_url": "https://api.github.com/users/buko/orgs",
"repos_url": "https://api.github.com/users/buko/repos",
"events_url": "https://api.github.com/users/buko/events{/privacy}",
"received_events_url": "https://api.github.com/users/buko/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-05T21:40:24Z",
"user": {
"login": "crudbug",
"id": 1286818,
"node_id": "MDQ6VXNlcjEyODY4MTg=",
"avatar_url": "https://avatars.githubusercontent.com/u/1286818?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/crudbug",
"html_url": "https://github.com/crudbug",
"followers_url": "https://api.github.com/users/crudbug/followers",
"following_url": "https://api.github.com/users/crudbug/following{/other_user}",
"gists_url": "https://api.github.com/users/crudbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/crudbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/crudbug/subscriptions",
"organizations_url": "https://api.github.com/users/crudbug/orgs",
"repos_url": "https://api.github.com/users/crudbug/repos",
"events_url": "https://api.github.com/users/crudbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/crudbug/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T01:07:55Z",
"user": {
"login": "msantos",
"id": 158059,
"node_id": "MDQ6VXNlcjE1ODA1OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/158059?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/msantos",
"html_url": "https://github.com/msantos",
"followers_url": "https://api.github.com/users/msantos/followers",
"following_url": "https://api.github.com/users/msantos/following{/other_user}",
"gists_url": "https://api.github.com/users/msantos/gists{/gist_id}",
"starred_url": "https://api.github.com/users/msantos/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/msantos/subscriptions",
"organizations_url": "https://api.github.com/users/msantos/orgs",
"repos_url": "https://api.github.com/users/msantos/repos",
"events_url": "https://api.github.com/users/msantos/events{/privacy}",
"received_events_url": "https://api.github.com/users/msantos/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T03:25:19Z",
"user": {
"login": "thanhtoan1196",
"id": 16433547,
"node_id": "MDQ6VXNlcjE2NDMzNTQ3",
"avatar_url": "https://avatars.githubusercontent.com/u/16433547?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/thanhtoan1196",
"html_url": "https://github.com/thanhtoan1196",
"followers_url": "https://api.github.com/users/thanhtoan1196/followers",
"following_url": "https://api.github.com/users/thanhtoan1196/following{/other_user}",
"gists_url": "https://api.github.com/users/thanhtoan1196/gists{/gist_id}",
"starred_url": "https://api.github.com/users/thanhtoan1196/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/thanhtoan1196/subscriptions",
"organizations_url": "https://api.github.com/users/thanhtoan1196/orgs",
"repos_url": "https://api.github.com/users/thanhtoan1196/repos",
"events_url": "https://api.github.com/users/thanhtoan1196/events{/privacy}",
"received_events_url": "https://api.github.com/users/thanhtoan1196/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T04:42:29Z",
"user": {
"login": "harshrc",
"id": 8365041,
"node_id": "MDQ6VXNlcjgzNjUwNDE=",
"avatar_url": "https://avatars.githubusercontent.com/u/8365041?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/harshrc",
"html_url": "https://github.com/harshrc",
"followers_url": "https://api.github.com/users/harshrc/followers",
"following_url": "https://api.github.com/users/harshrc/following{/other_user}",
"gists_url": "https://api.github.com/users/harshrc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/harshrc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/harshrc/subscriptions",
"organizations_url": "https://api.github.com/users/harshrc/orgs",
"repos_url": "https://api.github.com/users/harshrc/repos",
"events_url": "https://api.github.com/users/harshrc/events{/privacy}",
"received_events_url": "https://api.github.com/users/harshrc/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T08:29:24Z",
"user": {
"login": "cstorey",
"id": 743059,
"node_id": "MDQ6VXNlcjc0MzA1OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/743059?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cstorey",
"html_url": "https://github.com/cstorey",
"followers_url": "https://api.github.com/users/cstorey/followers",
"following_url": "https://api.github.com/users/cstorey/following{/other_user}",
"gists_url": "https://api.github.com/users/cstorey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cstorey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cstorey/subscriptions",
"organizations_url": "https://api.github.com/users/cstorey/orgs",
"repos_url": "https://api.github.com/users/cstorey/repos",
"events_url": "https://api.github.com/users/cstorey/events{/privacy}",
"received_events_url": "https://api.github.com/users/cstorey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T16:28:29Z",
"user": {
"login": "birlorg",
"id": 13758531,
"node_id": "MDQ6VXNlcjEzNzU4NTMx",
"avatar_url": "https://avatars.githubusercontent.com/u/13758531?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/birlorg",
"html_url": "https://github.com/birlorg",
"followers_url": "https://api.github.com/users/birlorg/followers",
"following_url": "https://api.github.com/users/birlorg/following{/other_user}",
"gists_url": "https://api.github.com/users/birlorg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/birlorg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/birlorg/subscriptions",
"organizations_url": "https://api.github.com/users/birlorg/orgs",
"repos_url": "https://api.github.com/users/birlorg/repos",
"events_url": "https://api.github.com/users/birlorg/events{/privacy}",
"received_events_url": "https://api.github.com/users/birlorg/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T19:12:04Z",
"user": {
"login": "iskedk",
"id": 204707,
"node_id": "MDQ6VXNlcjIwNDcwNw==",
"avatar_url": "https://avatars.githubusercontent.com/u/204707?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/iskedk",
"html_url": "https://github.com/iskedk",
"followers_url": "https://api.github.com/users/iskedk/followers",
"following_url": "https://api.github.com/users/iskedk/following{/other_user}",
"gists_url": "https://api.github.com/users/iskedk/gists{/gist_id}",
"starred_url": "https://api.github.com/users/iskedk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/iskedk/subscriptions",
"organizations_url": "https://api.github.com/users/iskedk/orgs",
"repos_url": "https://api.github.com/users/iskedk/repos",
"events_url": "https://api.github.com/users/iskedk/events{/privacy}",
"received_events_url": "https://api.github.com/users/iskedk/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T19:59:05Z",
"user": {
"login": "graydon",
"id": 14097,
"node_id": "MDQ6VXNlcjE0MDk3",
"avatar_url": "https://avatars.githubusercontent.com/u/14097?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/graydon",
"html_url": "https://github.com/graydon",
"followers_url": "https://api.github.com/users/graydon/followers",
"following_url": "https://api.github.com/users/graydon/following{/other_user}",
"gists_url": "https://api.github.com/users/graydon/gists{/gist_id}",
"starred_url": "https://api.github.com/users/graydon/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/graydon/subscriptions",
"organizations_url": "https://api.github.com/users/graydon/orgs",
"repos_url": "https://api.github.com/users/graydon/repos",
"events_url": "https://api.github.com/users/graydon/events{/privacy}",
"received_events_url": "https://api.github.com/users/graydon/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T20:49:04Z",
"user": {
"login": "randombit",
"id": 469092,
"node_id": "MDQ6VXNlcjQ2OTA5Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/469092?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/randombit",
"html_url": "https://github.com/randombit",
"followers_url": "https://api.github.com/users/randombit/followers",
"following_url": "https://api.github.com/users/randombit/following{/other_user}",
"gists_url": "https://api.github.com/users/randombit/gists{/gist_id}",
"starred_url": "https://api.github.com/users/randombit/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/randombit/subscriptions",
"organizations_url": "https://api.github.com/users/randombit/orgs",
"repos_url": "https://api.github.com/users/randombit/repos",
"events_url": "https://api.github.com/users/randombit/events{/privacy}",
"received_events_url": "https://api.github.com/users/randombit/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T21:18:06Z",
"user": {
"login": "dd10-e",
"id": 6233039,
"node_id": "MDQ6VXNlcjYyMzMwMzk=",
"avatar_url": "https://avatars.githubusercontent.com/u/6233039?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dd10-e",
"html_url": "https://github.com/dd10-e",
"followers_url": "https://api.github.com/users/dd10-e/followers",
"following_url": "https://api.github.com/users/dd10-e/following{/other_user}",
"gists_url": "https://api.github.com/users/dd10-e/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dd10-e/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dd10-e/subscriptions",
"organizations_url": "https://api.github.com/users/dd10-e/orgs",
"repos_url": "https://api.github.com/users/dd10-e/repos",
"events_url": "https://api.github.com/users/dd10-e/events{/privacy}",
"received_events_url": "https://api.github.com/users/dd10-e/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-07T02:25:37Z",
"user": {
"login": "qinhanlei",
"id": 1567080,
"node_id": "MDQ6VXNlcjE1NjcwODA=",
"avatar_url": "https://avatars.githubusercontent.com/u/1567080?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/qinhanlei",
"html_url": "https://github.com/qinhanlei",
"followers_url": "https://api.github.com/users/qinhanlei/followers",
"following_url": "https://api.github.com/users/qinhanlei/following{/other_user}",
"gists_url": "https://api.github.com/users/qinhanlei/gists{/gist_id}",
"starred_url": "https://api.github.com/users/qinhanlei/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/qinhanlei/subscriptions",
"organizations_url": "https://api.github.com/users/qinhanlei/orgs",
"repos_url": "https://api.github.com/users/qinhanlei/repos",
"events_url": "https://api.github.com/users/qinhanlei/events{/privacy}",
"received_events_url": "https://api.github.com/users/qinhanlei/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-07T14:11:50Z",
"user": {
"login": "codeslinger",
"id": 884,
"node_id": "MDQ6VXNlcjg4NA==",
"avatar_url": "https://avatars.githubusercontent.com/u/884?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/codeslinger",
"html_url": "https://github.com/codeslinger",
"followers_url": "https://api.github.com/users/codeslinger/followers",
"following_url": "https://api.github.com/users/codeslinger/following{/other_user}",
"gists_url": "https://api.github.com/users/codeslinger/gists{/gist_id}",
"starred_url": "https://api.github.com/users/codeslinger/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/codeslinger/subscriptions",
"organizations_url": "https://api.github.com/users/codeslinger/orgs",
"repos_url": "https://api.github.com/users/codeslinger/repos",
"events_url": "https://api.github.com/users/codeslinger/events{/privacy}",
"received_events_url": "https://api.github.com/users/codeslinger/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-07T16:12:57Z",
"user": {
"login": "0xYUANTI",
"id": 322460,
"node_id": "MDQ6VXNlcjMyMjQ2MA==",
"avatar_url": "https://avatars.githubusercontent.com/u/322460?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/0xYUANTI",
"html_url": "https://github.com/0xYUANTI",
"followers_url": "https://api.github.com/users/0xYUANTI/followers",
"following_url": "https://api.github.com/users/0xYUANTI/following{/other_user}",
"gists_url": "https://api.github.com/users/0xYUANTI/gists{/gist_id}",
"starred_url": "https://api.github.com/users/0xYUANTI/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/0xYUANTI/subscriptions",
"organizations_url": "https://api.github.com/users/0xYUANTI/orgs",
"repos_url": "https://api.github.com/users/0xYUANTI/repos",
"events_url": "https://api.github.com/users/0xYUANTI/events{/privacy}",
"received_events_url": "https://api.github.com/users/0xYUANTI/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-07T18:17:20Z",
"user": {
"login": "cyrildewit",
"id": 16477999,
"node_id": "MDQ6VXNlcjE2NDc3OTk5",
"avatar_url": "https://avatars.githubusercontent.com/u/16477999?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cyrildewit",
"html_url": "https://github.com/cyrildewit",
"followers_url": "https://api.github.com/users/cyrildewit/followers",
"following_url": "https://api.github.com/users/cyrildewit/following{/other_user}",
"gists_url": "https://api.github.com/users/cyrildewit/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cyrildewit/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cyrildewit/subscriptions",
"organizations_url": "https://api.github.com/users/cyrildewit/orgs",
"repos_url": "https://api.github.com/users/cyrildewit/repos",
"events_url": "https://api.github.com/users/cyrildewit/events{/privacy}",
"received_events_url": "https://api.github.com/users/cyrildewit/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-08T11:32:35Z",
"user": {
"login": "Latrasis",
"id": 4656227,
"node_id": "MDQ6VXNlcjQ2NTYyMjc=",
"avatar_url": "https://avatars.githubusercontent.com/u/4656227?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Latrasis",
"html_url": "https://github.com/Latrasis",
"followers_url": "https://api.github.com/users/Latrasis/followers",
"following_url": "https://api.github.com/users/Latrasis/following{/other_user}",
"gists_url": "https://api.github.com/users/Latrasis/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Latrasis/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Latrasis/subscriptions",
"organizations_url": "https://api.github.com/users/Latrasis/orgs",
"repos_url": "https://api.github.com/users/Latrasis/repos",
"events_url": "https://api.github.com/users/Latrasis/events{/privacy}",
"received_events_url": "https://api.github.com/users/Latrasis/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-08T13:09:31Z",
"user": {
"login": "tkersey",
"id": 217,
"node_id": "MDQ6VXNlcjIxNw==",
"avatar_url": "https://avatars.githubusercontent.com/u/217?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tkersey",
"html_url": "https://github.com/tkersey",
"followers_url": "https://api.github.com/users/tkersey/followers",
"following_url": "https://api.github.com/users/tkersey/following{/other_user}",
"gists_url": "https://api.github.com/users/tkersey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tkersey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tkersey/subscriptions",
"organizations_url": "https://api.github.com/users/tkersey/orgs",
"repos_url": "https://api.github.com/users/tkersey/repos",
"events_url": "https://api.github.com/users/tkersey/events{/privacy}",
"received_events_url": "https://api.github.com/users/tkersey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-08T14:50:00Z",
"user": {
"login": "f0rki",
"id": 617306,
"node_id": "MDQ6VXNlcjYxNzMwNg==",
"avatar_url": "https://avatars.githubusercontent.com/u/617306?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/f0rki",
"html_url": "https://github.com/f0rki",
"followers_url": "https://api.github.com/users/f0rki/followers",
"following_url": "https://api.github.com/users/f0rki/following{/other_user}",
"gists_url": "https://api.github.com/users/f0rki/gists{/gist_id}",
"starred_url": "https://api.github.com/users/f0rki/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/f0rki/subscriptions",
"organizations_url": "https://api.github.com/users/f0rki/orgs",
"repos_url": "https://api.github.com/users/f0rki/repos",
"events_url": "https://api.github.com/users/f0rki/events{/privacy}",
"received_events_url": "https://api.github.com/users/f0rki/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-24T16:12:12Z",
"user": {
"login": "Tomsketh",
"id": 44442536,
"node_id": "MDQ6VXNlcjQ0NDQyNTM2",
"avatar_url": "https://avatars.githubusercontent.com/u/44442536?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Tomsketh",
"html_url": "https://github.com/Tomsketh",
"followers_url": "https://api.github.com/users/Tomsketh/followers",
"following_url": "https://api.github.com/users/Tomsketh/following{/other_user}",
"gists_url": "https://api.github.com/users/Tomsketh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Tomsketh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Tomsketh/subscriptions",
"organizations_url": "https://api.github.com/users/Tomsketh/orgs",
"repos_url": "https://api.github.com/users/Tomsketh/repos",
"events_url": "https://api.github.com/users/Tomsketh/events{/privacy}",
"received_events_url": "https://api.github.com/users/Tomsketh/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-31T19:34:51Z",
"user": {
"login": "patternspandemic",
"id": 15645854,
"node_id": "MDQ6VXNlcjE1NjQ1ODU0",
"avatar_url": "https://avatars.githubusercontent.com/u/15645854?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/patternspandemic",
"html_url": "https://github.com/patternspandemic",
"followers_url": "https://api.github.com/users/patternspandemic/followers",
"following_url": "https://api.github.com/users/patternspandemic/following{/other_user}",
"gists_url": "https://api.github.com/users/patternspandemic/gists{/gist_id}",
"starred_url": "https://api.github.com/users/patternspandemic/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/patternspandemic/subscriptions",
"organizations_url": "https://api.github.com/users/patternspandemic/orgs",
"repos_url": "https://api.github.com/users/patternspandemic/repos",
"events_url": "https://api.github.com/users/patternspandemic/events{/privacy}",
"received_events_url": "https://api.github.com/users/patternspandemic/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-05T21:06:34Z",
"user": {
"login": "rbrewer123",
"id": 743058,
"node_id": "MDQ6VXNlcjc0MzA1OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/743058?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rbrewer123",
"html_url": "https://github.com/rbrewer123",
"followers_url": "https://api.github.com/users/rbrewer123/followers",
"following_url": "https://api.github.com/users/rbrewer123/following{/other_user}",
"gists_url": "https://api.github.com/users/rbrewer123/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rbrewer123/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rbrewer123/subscriptions",
"organizations_url": "https://api.github.com/users/rbrewer123/orgs",
"repos_url": "https://api.github.com/users/rbrewer123/repos",
"events_url": "https://api.github.com/users/rbrewer123/events{/privacy}",
"received_events_url": "https://api.github.com/users/rbrewer123/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-08T09:05:14Z",
"user": {
"login": "ligurio",
"id": 1151557,
"node_id": "MDQ6VXNlcjExNTE1NTc=",
"avatar_url": "https://avatars.githubusercontent.com/u/1151557?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ligurio",
"html_url": "https://github.com/ligurio",
"followers_url": "https://api.github.com/users/ligurio/followers",
"following_url": "https://api.github.com/users/ligurio/following{/other_user}",
"gists_url": "https://api.github.com/users/ligurio/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ligurio/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ligurio/subscriptions",
"organizations_url": "https://api.github.com/users/ligurio/orgs",
"repos_url": "https://api.github.com/users/ligurio/repos",
"events_url": "https://api.github.com/users/ligurio/events{/privacy}",
"received_events_url": "https://api.github.com/users/ligurio/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-12T17:33:41Z",
"user": {
"login": "PyroLagus",
"id": 4579165,
"node_id": "MDQ6VXNlcjQ1NzkxNjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/4579165?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PyroLagus",
"html_url": "https://github.com/PyroLagus",
"followers_url": "https://api.github.com/users/PyroLagus/followers",
"following_url": "https://api.github.com/users/PyroLagus/following{/other_user}",
"gists_url": "https://api.github.com/users/PyroLagus/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PyroLagus/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PyroLagus/subscriptions",
"organizations_url": "https://api.github.com/users/PyroLagus/orgs",
"repos_url": "https://api.github.com/users/PyroLagus/repos",
"events_url": "https://api.github.com/users/PyroLagus/events{/privacy}",
"received_events_url": "https://api.github.com/users/PyroLagus/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-20T12:10:24Z",
"user": {
"login": "hiway",
"id": 23116,
"node_id": "MDQ6VXNlcjIzMTE2",
"avatar_url": "https://avatars.githubusercontent.com/u/23116?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hiway",
"html_url": "https://github.com/hiway",
"followers_url": "https://api.github.com/users/hiway/followers",
"following_url": "https://api.github.com/users/hiway/following{/other_user}",
"gists_url": "https://api.github.com/users/hiway/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hiway/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hiway/subscriptions",
"organizations_url": "https://api.github.com/users/hiway/orgs",
"repos_url": "https://api.github.com/users/hiway/repos",
"events_url": "https://api.github.com/users/hiway/events{/privacy}",
"received_events_url": "https://api.github.com/users/hiway/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-26T02:37:26Z",
"user": {
"login": "scivey",
"id": 4977409,
"node_id": "MDQ6VXNlcjQ5Nzc0MDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/4977409?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scivey",
"html_url": "https://github.com/scivey",
"followers_url": "https://api.github.com/users/scivey/followers",
"following_url": "https://api.github.com/users/scivey/following{/other_user}",
"gists_url": "https://api.github.com/users/scivey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scivey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scivey/subscriptions",
"organizations_url": "https://api.github.com/users/scivey/orgs",
"repos_url": "https://api.github.com/users/scivey/repos",
"events_url": "https://api.github.com/users/scivey/events{/privacy}",
"received_events_url": "https://api.github.com/users/scivey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-29T23:01:13Z",
"user": {
"login": "shanev",
"id": 17361,
"node_id": "MDQ6VXNlcjE3MzYx",
"avatar_url": "https://avatars.githubusercontent.com/u/17361?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shanev",
"html_url": "https://github.com/shanev",
"followers_url": "https://api.github.com/users/shanev/followers",
"following_url": "https://api.github.com/users/shanev/following{/other_user}",
"gists_url": "https://api.github.com/users/shanev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shanev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shanev/subscriptions",
"organizations_url": "https://api.github.com/users/shanev/orgs",
"repos_url": "https://api.github.com/users/shanev/repos",
"events_url": "https://api.github.com/users/shanev/events{/privacy}",
"received_events_url": "https://api.github.com/users/shanev/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-30T00:57:47Z",
"user": {
"login": "mwatts",
"id": 18381,
"node_id": "MDQ6VXNlcjE4Mzgx",
"avatar_url": "https://avatars.githubusercontent.com/u/18381?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mwatts",
"html_url": "https://github.com/mwatts",
"followers_url": "https://api.github.com/users/mwatts/followers",
"following_url": "https://api.github.com/users/mwatts/following{/other_user}",
"gists_url": "https://api.github.com/users/mwatts/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mwatts/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mwatts/subscriptions",
"organizations_url": "https://api.github.com/users/mwatts/orgs",
"repos_url": "https://api.github.com/users/mwatts/repos",
"events_url": "https://api.github.com/users/mwatts/events{/privacy}",
"received_events_url": "https://api.github.com/users/mwatts/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-12-04T02:22:49Z",
"user": {
"login": "RAbraham",
"id": 214189,
"node_id": "MDQ6VXNlcjIxNDE4OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/214189?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/RAbraham",
"html_url": "https://github.com/RAbraham",
"followers_url": "https://api.github.com/users/RAbraham/followers",
"following_url": "https://api.github.com/users/RAbraham/following{/other_user}",
"gists_url": "https://api.github.com/users/RAbraham/gists{/gist_id}",
"starred_url": "https://api.github.com/users/RAbraham/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/RAbraham/subscriptions",
"organizations_url": "https://api.github.com/users/RAbraham/orgs",
"repos_url": "https://api.github.com/users/RAbraham/repos",
"events_url": "https://api.github.com/users/RAbraham/events{/privacy}",
"received_events_url": "https://api.github.com/users/RAbraham/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-12-04T06:01:40Z",
"user": {
"login": "brainmorsel",
"id": 382850,
"node_id": "MDQ6VXNlcjM4Mjg1MA==",
"avatar_url": "https://avatars.githubusercontent.com/u/382850?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/brainmorsel",
"html_url": "https://github.com/brainmorsel",
"followers_url": "https://api.github.com/users/brainmorsel/followers",
"following_url": "https://api.github.com/users/brainmorsel/following{/other_user}",
"gists_url": "https://api.github.com/users/brainmorsel/gists{/gist_id}",
"starred_url": "https://api.github.com/users/brainmorsel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/brainmorsel/subscriptions",
"organizations_url": "https://api.github.com/users/brainmorsel/orgs",
"repos_url": "https://api.github.com/users/brainmorsel/repos",
"events_url": "https://api.github.com/users/brainmorsel/events{/privacy}",
"received_events_url": "https://api.github.com/users/brainmorsel/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-12-07T15:55:50Z",
"user": {
"login": "srdjan",
"id": 61190,
"node_id": "MDQ6VXNlcjYxMTkw",
"avatar_url": "https://avatars.githubusercontent.com/u/61190?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/srdjan",
"html_url": "https://github.com/srdjan",
"followers_url": "https://api.github.com/users/srdjan/followers",
"following_url": "https://api.github.com/users/srdjan/following{/other_user}",
"gists_url": "https://api.github.com/users/srdjan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/srdjan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/srdjan/subscriptions",
"organizations_url": "https://api.github.com/users/srdjan/orgs",
"repos_url": "https://api.github.com/users/srdjan/repos",
"events_url": "https://api.github.com/users/srdjan/events{/privacy}",
"received_events_url": "https://api.github.com/users/srdjan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-12-19T18:09:04Z",
"user": {
"login": "Empowerful",
"id": 45366397,
"node_id": "MDQ6VXNlcjQ1MzY2Mzk3",
"avatar_url": "https://avatars.githubusercontent.com/u/45366397?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Empowerful",
"html_url": "https://github.com/Empowerful",
"followers_url": "https://api.github.com/users/Empowerful/followers",
"following_url": "https://api.github.com/users/Empowerful/following{/other_user}",
"gists_url": "https://api.github.com/users/Empowerful/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Empowerful/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Empowerful/subscriptions",
"organizations_url": "https://api.github.com/users/Empowerful/orgs",
"repos_url": "https://api.github.com/users/Empowerful/repos",
"events_url": "https://api.github.com/users/Empowerful/events{/privacy}",
"received_events_url": "https://api.github.com/users/Empowerful/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-12-28T00:08:24Z",
"user": {
"login": "dalnefre",
"id": 1295117,
"node_id": "MDQ6VXNlcjEyOTUxMTc=",
"avatar_url": "https://avatars.githubusercontent.com/u/1295117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dalnefre",
"html_url": "https://github.com/dalnefre",
"followers_url": "https://api.github.com/users/dalnefre/followers",
"following_url": "https://api.github.com/users/dalnefre/following{/other_user}",
"gists_url": "https://api.github.com/users/dalnefre/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dalnefre/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dalnefre/subscriptions",
"organizations_url": "https://api.github.com/users/dalnefre/orgs",
"repos_url": "https://api.github.com/users/dalnefre/repos",
"events_url": "https://api.github.com/users/dalnefre/events{/privacy}",
"received_events_url": "https://api.github.com/users/dalnefre/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-01-21T21:36:25Z",
"user": {
"login": "maybe-joe",
"id": 3109300,
"node_id": "MDQ6VXNlcjMxMDkzMDA=",
"avatar_url": "https://avatars.githubusercontent.com/u/3109300?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/maybe-joe",
"html_url": "https://github.com/maybe-joe",
"followers_url": "https://api.github.com/users/maybe-joe/followers",
"following_url": "https://api.github.com/users/maybe-joe/following{/other_user}",
"gists_url": "https://api.github.com/users/maybe-joe/gists{/gist_id}",
"starred_url": "https://api.github.com/users/maybe-joe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/maybe-joe/subscriptions",
"organizations_url": "https://api.github.com/users/maybe-joe/orgs",
"repos_url": "https://api.github.com/users/maybe-joe/repos",
"events_url": "https://api.github.com/users/maybe-joe/events{/privacy}",
"received_events_url": "https://api.github.com/users/maybe-joe/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-01-27T18:02:56Z",
"user": {
"login": "Matthewjarredondo",
"id": 39578966,
"node_id": "MDQ6VXNlcjM5NTc4OTY2",
"avatar_url": "https://avatars.githubusercontent.com/u/39578966?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Matthewjarredondo",
"html_url": "https://github.com/Matthewjarredondo",
"followers_url": "https://api.github.com/users/Matthewjarredondo/followers",
"following_url": "https://api.github.com/users/Matthewjarredondo/following{/other_user}",
"gists_url": "https://api.github.com/users/Matthewjarredondo/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Matthewjarredondo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Matthewjarredondo/subscriptions",
"organizations_url": "https://api.github.com/users/Matthewjarredondo/orgs",
"repos_url": "https://api.github.com/users/Matthewjarredondo/repos",
"events_url": "https://api.github.com/users/Matthewjarredondo/events{/privacy}",
"received_events_url": "https://api.github.com/users/Matthewjarredondo/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-01-30T09:35:16Z",
"user": {
"login": "cvic",
"id": 210864,
"node_id": "MDQ6VXNlcjIxMDg2NA==",
"avatar_url": "https://avatars.githubusercontent.com/u/210864?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cvic",
"html_url": "https://github.com/cvic",
"followers_url": "https://api.github.com/users/cvic/followers",
"following_url": "https://api.github.com/users/cvic/following{/other_user}",
"gists_url": "https://api.github.com/users/cvic/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cvic/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cvic/subscriptions",
"organizations_url": "https://api.github.com/users/cvic/orgs",
"repos_url": "https://api.github.com/users/cvic/repos",
"events_url": "https://api.github.com/users/cvic/events{/privacy}",
"received_events_url": "https://api.github.com/users/cvic/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-02-04T17:56:50Z",
"user": {
"login": "NonSecwitter",
"id": 6634609,
"node_id": "MDQ6VXNlcjY2MzQ2MDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/6634609?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NonSecwitter",
"html_url": "https://github.com/NonSecwitter",
"followers_url": "https://api.github.com/users/NonSecwitter/followers",
"following_url": "https://api.github.com/users/NonSecwitter/following{/other_user}",
"gists_url": "https://api.github.com/users/NonSecwitter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NonSecwitter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NonSecwitter/subscriptions",
"organizations_url": "https://api.github.com/users/NonSecwitter/orgs",
"repos_url": "https://api.github.com/users/NonSecwitter/repos",
"events_url": "https://api.github.com/users/NonSecwitter/events{/privacy}",
"received_events_url": "https://api.github.com/users/NonSecwitter/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-02-07T22:13:27Z",
"user": {
"login": "JeffCarpenter",
"id": 178424,
"node_id": "MDQ6VXNlcjE3ODQyNA==",
"avatar_url": "https://avatars.githubusercontent.com/u/178424?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JeffCarpenter",
"html_url": "https://github.com/JeffCarpenter",
"followers_url": "https://api.github.com/users/JeffCarpenter/followers",
"following_url": "https://api.github.com/users/JeffCarpenter/following{/other_user}",
"gists_url": "https://api.github.com/users/JeffCarpenter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JeffCarpenter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JeffCarpenter/subscriptions",
"organizations_url": "https://api.github.com/users/JeffCarpenter/orgs",
"repos_url": "https://api.github.com/users/JeffCarpenter/repos",
"events_url": "https://api.github.com/users/JeffCarpenter/events{/privacy}",
"received_events_url": "https://api.github.com/users/JeffCarpenter/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-02-08T21:39:35Z",
"user": {
"login": "kjproj84",
"id": 41346736,
"node_id": "MDQ6VXNlcjQxMzQ2NzM2",
"avatar_url": "https://avatars.githubusercontent.com/u/41346736?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kjproj84",
"html_url": "https://github.com/kjproj84",
"followers_url": "https://api.github.com/users/kjproj84/followers",
"following_url": "https://api.github.com/users/kjproj84/following{/other_user}",
"gists_url": "https://api.github.com/users/kjproj84/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kjproj84/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kjproj84/subscriptions",
"organizations_url": "https://api.github.com/users/kjproj84/orgs",
"repos_url": "https://api.github.com/users/kjproj84/repos",
"events_url": "https://api.github.com/users/kjproj84/events{/privacy}",
"received_events_url": "https://api.github.com/users/kjproj84/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-02-15T16:44:15Z",
"user": {
"login": "bkfox",
"id": 635987,
"node_id": "MDQ6VXNlcjYzNTk4Nw==",
"avatar_url": "https://avatars.githubusercontent.com/u/635987?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bkfox",
"html_url": "https://github.com/bkfox",
"followers_url": "https://api.github.com/users/bkfox/followers",
"following_url": "https://api.github.com/users/bkfox/following{/other_user}",
"gists_url": "https://api.github.com/users/bkfox/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bkfox/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bkfox/subscriptions",
"organizations_url": "https://api.github.com/users/bkfox/orgs",
"repos_url": "https://api.github.com/users/bkfox/repos",
"events_url": "https://api.github.com/users/bkfox/events{/privacy}",
"received_events_url": "https://api.github.com/users/bkfox/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-02-17T01:17:03Z",
"user": {
"login": "8h2a",
"id": 1588661,
"node_id": "MDQ6VXNlcjE1ODg2NjE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1588661?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/8h2a",
"html_url": "https://github.com/8h2a",
"followers_url": "https://api.github.com/users/8h2a/followers",
"following_url": "https://api.github.com/users/8h2a/following{/other_user}",
"gists_url": "https://api.github.com/users/8h2a/gists{/gist_id}",
"starred_url": "https://api.github.com/users/8h2a/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/8h2a/subscriptions",
"organizations_url": "https://api.github.com/users/8h2a/orgs",
"repos_url": "https://api.github.com/users/8h2a/repos",
"events_url": "https://api.github.com/users/8h2a/events{/privacy}",
"received_events_url": "https://api.github.com/users/8h2a/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-03-05T18:30:48Z",
"user": {
"login": "englishm-llnw",
"id": 18221820,
"node_id": "MDQ6VXNlcjE4MjIxODIw",
"avatar_url": "https://avatars.githubusercontent.com/u/18221820?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/englishm-llnw",
"html_url": "https://github.com/englishm-llnw",
"followers_url": "https://api.github.com/users/englishm-llnw/followers",
"following_url": "https://api.github.com/users/englishm-llnw/following{/other_user}",
"gists_url": "https://api.github.com/users/englishm-llnw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/englishm-llnw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/englishm-llnw/subscriptions",
"organizations_url": "https://api.github.com/users/englishm-llnw/orgs",
"repos_url": "https://api.github.com/users/englishm-llnw/repos",
"events_url": "https://api.github.com/users/englishm-llnw/events{/privacy}",
"received_events_url": "https://api.github.com/users/englishm-llnw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-03-21T15:50:21Z",
"user": {
"login": "cabmorris",
"id": 14362567,
"node_id": "MDQ6VXNlcjE0MzYyNTY3",
"avatar_url": "https://avatars.githubusercontent.com/u/14362567?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cabmorris",
"html_url": "https://github.com/cabmorris",
"followers_url": "https://api.github.com/users/cabmorris/followers",
"following_url": "https://api.github.com/users/cabmorris/following{/other_user}",
"gists_url": "https://api.github.com/users/cabmorris/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cabmorris/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cabmorris/subscriptions",
"organizations_url": "https://api.github.com/users/cabmorris/orgs",
"repos_url": "https://api.github.com/users/cabmorris/repos",
"events_url": "https://api.github.com/users/cabmorris/events{/privacy}",
"received_events_url": "https://api.github.com/users/cabmorris/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-03-25T03:34:21Z",
"user": {
"login": "kpreid",
"id": 779501,
"node_id": "MDQ6VXNlcjc3OTUwMQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/779501?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kpreid",
"html_url": "https://github.com/kpreid",
"followers_url": "https://api.github.com/users/kpreid/followers",
"following_url": "https://api.github.com/users/kpreid/following{/other_user}",
"gists_url": "https://api.github.com/users/kpreid/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kpreid/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kpreid/subscriptions",
"organizations_url": "https://api.github.com/users/kpreid/orgs",
"repos_url": "https://api.github.com/users/kpreid/repos",
"events_url": "https://api.github.com/users/kpreid/events{/privacy}",
"received_events_url": "https://api.github.com/users/kpreid/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-02T02:32:31Z",
"user": {
"login": "mlinksva",
"id": 40415,
"node_id": "MDQ6VXNlcjQwNDE1",
"avatar_url": "https://avatars.githubusercontent.com/u/40415?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mlinksva",
"html_url": "https://github.com/mlinksva",
"followers_url": "https://api.github.com/users/mlinksva/followers",
"following_url": "https://api.github.com/users/mlinksva/following{/other_user}",
"gists_url": "https://api.github.com/users/mlinksva/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mlinksva/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mlinksva/subscriptions",
"organizations_url": "https://api.github.com/users/mlinksva/orgs",
"repos_url": "https://api.github.com/users/mlinksva/repos",
"events_url": "https://api.github.com/users/mlinksva/events{/privacy}",
"received_events_url": "https://api.github.com/users/mlinksva/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": true
}
},
{
"starred_at": "2019-04-02T03:55:53Z",
"user": {
"login": "PtrTeixeira",
"id": 5621029,
"node_id": "MDQ6VXNlcjU2MjEwMjk=",
"avatar_url": "https://avatars.githubusercontent.com/u/5621029?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PtrTeixeira",
"html_url": "https://github.com/PtrTeixeira",
"followers_url": "https://api.github.com/users/PtrTeixeira/followers",
"following_url": "https://api.github.com/users/PtrTeixeira/following{/other_user}",
"gists_url": "https://api.github.com/users/PtrTeixeira/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PtrTeixeira/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PtrTeixeira/subscriptions",
"organizations_url": "https://api.github.com/users/PtrTeixeira/orgs",
"repos_url": "https://api.github.com/users/PtrTeixeira/repos",
"events_url": "https://api.github.com/users/PtrTeixeira/events{/privacy}",
"received_events_url": "https://api.github.com/users/PtrTeixeira/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-02T06:05:09Z",
"user": {
"login": "artob",
"id": 4963,
"node_id": "MDQ6VXNlcjQ5NjM=",
"avatar_url": "https://avatars.githubusercontent.com/u/4963?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/artob",
"html_url": "https://github.com/artob",
"followers_url": "https://api.github.com/users/artob/followers",
"following_url": "https://api.github.com/users/artob/following{/other_user}",
"gists_url": "https://api.github.com/users/artob/gists{/gist_id}",
"starred_url": "https://api.github.com/users/artob/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/artob/subscriptions",
"organizations_url": "https://api.github.com/users/artob/orgs",
"repos_url": "https://api.github.com/users/artob/repos",
"events_url": "https://api.github.com/users/artob/events{/privacy}",
"received_events_url": "https://api.github.com/users/artob/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-10T10:14:02Z",
"user": {
"login": "fivejjs",
"id": 1405491,
"node_id": "MDQ6VXNlcjE0MDU0OTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1405491?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/fivejjs",
"html_url": "https://github.com/fivejjs",
"followers_url": "https://api.github.com/users/fivejjs/followers",
"following_url": "https://api.github.com/users/fivejjs/following{/other_user}",
"gists_url": "https://api.github.com/users/fivejjs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/fivejjs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/fivejjs/subscriptions",
"organizations_url": "https://api.github.com/users/fivejjs/orgs",
"repos_url": "https://api.github.com/users/fivejjs/repos",
"events_url": "https://api.github.com/users/fivejjs/events{/privacy}",
"received_events_url": "https://api.github.com/users/fivejjs/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-23T07:59:06Z",
"user": {
"login": "bugaevc",
"id": 10091584,
"node_id": "MDQ6VXNlcjEwMDkxNTg0",
"avatar_url": "https://avatars.githubusercontent.com/u/10091584?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bugaevc",
"html_url": "https://github.com/bugaevc",
"followers_url": "https://api.github.com/users/bugaevc/followers",
"following_url": "https://api.github.com/users/bugaevc/following{/other_user}",
"gists_url": "https://api.github.com/users/bugaevc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bugaevc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bugaevc/subscriptions",
"organizations_url": "https://api.github.com/users/bugaevc/orgs",
"repos_url": "https://api.github.com/users/bugaevc/repos",
"events_url": "https://api.github.com/users/bugaevc/events{/privacy}",
"received_events_url": "https://api.github.com/users/bugaevc/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-29T09:52:29Z",
"user": {
"login": "kcchu",
"id": 800071,
"node_id": "MDQ6VXNlcjgwMDA3MQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/800071?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kcchu",
"html_url": "https://github.com/kcchu",
"followers_url": "https://api.github.com/users/kcchu/followers",
"following_url": "https://api.github.com/users/kcchu/following{/other_user}",
"gists_url": "https://api.github.com/users/kcchu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kcchu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kcchu/subscriptions",
"organizations_url": "https://api.github.com/users/kcchu/orgs",
"repos_url": "https://api.github.com/users/kcchu/repos",
"events_url": "https://api.github.com/users/kcchu/events{/privacy}",
"received_events_url": "https://api.github.com/users/kcchu/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-30T22:02:36Z",
"user": {
"login": "milosgajdos",
"id": 1392526,
"node_id": "MDQ6VXNlcjEzOTI1MjY=",
"avatar_url": "https://avatars.githubusercontent.com/u/1392526?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/milosgajdos",
"html_url": "https://github.com/milosgajdos",
"followers_url": "https://api.github.com/users/milosgajdos/followers",
"following_url": "https://api.github.com/users/milosgajdos/following{/other_user}",
"gists_url": "https://api.github.com/users/milosgajdos/gists{/gist_id}",
"starred_url": "https://api.github.com/users/milosgajdos/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/milosgajdos/subscriptions",
"organizations_url": "https://api.github.com/users/milosgajdos/orgs",
"repos_url": "https://api.github.com/users/milosgajdos/repos",
"events_url": "https://api.github.com/users/milosgajdos/events{/privacy}",
"received_events_url": "https://api.github.com/users/milosgajdos/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-01T04:18:53Z",
"user": {
"login": "ik5",
"id": 73091,
"node_id": "MDQ6VXNlcjczMDkx",
"avatar_url": "https://avatars.githubusercontent.com/u/73091?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ik5",
"html_url": "https://github.com/ik5",
"followers_url": "https://api.github.com/users/ik5/followers",
"following_url": "https://api.github.com/users/ik5/following{/other_user}",
"gists_url": "https://api.github.com/users/ik5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ik5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ik5/subscriptions",
"organizations_url": "https://api.github.com/users/ik5/orgs",
"repos_url": "https://api.github.com/users/ik5/repos",
"events_url": "https://api.github.com/users/ik5/events{/privacy}",
"received_events_url": "https://api.github.com/users/ik5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-08T05:10:26Z",
"user": {