-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f35239c
commit ed13a1d
Showing
8 changed files
with
10,506 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Manifest-Version: 1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
data class Owner( | ||
val avatar_url: String?, | ||
val events_url: String?, | ||
val followers_url: String?, | ||
val following_url: String?, | ||
val gists_url: String?, | ||
val gravatar_id: String?, | ||
val html_url: String?, | ||
val id: Int?, | ||
val login: String?, | ||
val node_id: String?, | ||
val organizations_url: String?, | ||
val received_events_url: String?, | ||
val repos_url: String?, | ||
val site_admin: Boolean?, | ||
val starred_url: String?, | ||
val subscriptions_url: String?, | ||
val type: String?, | ||
val url: String? | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
data class R( | ||
val allow_forking: Boolean?, | ||
val archive_url: String?, | ||
val archived: Boolean?, | ||
val assignees_url: String?, | ||
val blobs_url: String?, | ||
val branches_url: String?, | ||
val clone_url: String?, | ||
val collaborators_url: String?, | ||
val comments_url: String?, | ||
val commits_url: String?, | ||
val compare_url: String?, | ||
val contents_url: String?, | ||
val contributors_url: String?, | ||
val created_at: String?, | ||
val default_branch: String?, | ||
val deployments_url: String?, | ||
val description: Any?, | ||
val disabled: Boolean?, | ||
val downloads_url: String?, | ||
val events_url: String?, | ||
val fork: Boolean?, | ||
val forks: Int?, | ||
val forks_count: Int?, | ||
val forks_url: String?, | ||
val full_name: String?, | ||
val git_commits_url: String?, | ||
val git_refs_url: String?, | ||
val git_tags_url: String?, | ||
val git_url: String?, | ||
val has_discussions: Boolean?, | ||
val has_downloads: Boolean?, | ||
val has_issues: Boolean?, | ||
val has_pages: Boolean?, | ||
val has_projects: Boolean?, | ||
val has_wiki: Boolean?, | ||
val homepage: Any?, | ||
val hooks_url: String?, | ||
val html_url: String?, | ||
val id: Int?, | ||
val is_template: Boolean?, | ||
val issue_comment_url: String?, | ||
val issue_events_url: String?, | ||
val issues_url: String?, | ||
val keys_url: String?, | ||
val labels_url: String?, | ||
val language: String?, | ||
val languages_url: String?, | ||
val license: Any?, | ||
val merges_url: String?, | ||
val milestones_url: String?, | ||
val mirror_url: Any?, | ||
val name: String?, | ||
val node_id: String?, | ||
val notifications_url: String?, | ||
val open_issues: Int?, | ||
val open_issues_count: Int?, | ||
val owner: Owner?, | ||
val `private`: Boolean?, | ||
val pulls_url: String?, | ||
val pushed_at: String?, | ||
val releases_url: String?, | ||
val size: Int?, | ||
val ssh_url: String?, | ||
val stargazers_count: Int?, | ||
val stargazers_url: String?, | ||
val statuses_url: String?, | ||
val subscribers_url: String?, | ||
val subscription_url: String?, | ||
val svn_url: String?, | ||
val tags_url: String?, | ||
val teams_url: String?, | ||
val topics: List<Any?>?, | ||
val trees_url: String?, | ||
val updated_at: String?, | ||
val url: String?, | ||
val visibility: String?, | ||
val watchers: Int?, | ||
val watchers_count: Int?, | ||
val web_commit_signoff_required: Boolean? | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>GithubActivity</title> | ||
<script src="skiko.js"></script> | ||
</head> | ||
<body> | ||
<div> | ||
<canvas id="ComposeTarget" width="800" height="600"></canvas> | ||
</div> | ||
<script src="composeApp.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.