【Android】Retrofitの通信をOkHttpでデバッグする【Kotlin】

wrongwrong163377.hatenablog.com
続きです。

やりたいこと

前回の記事の時点ではRetrofitの通信がどうなっているか把握できないので、上手くいかないときにデバッグするのが困難です。
そこで、OkTTP3を用いて通信のデバッグを行います。
プロジェクトリポジトリは以下(前回の記事のリポジトリに追記しています)。
github.com

やること

今回の記事は前回の記事の内容に追記していく形で書きます。
やることは以下の通りです。

  • Gradleに追記
  • クライアントを宣言してセット
Gradleに追記

以下2つを追加します。バージョンは執筆時点の最新を書いてますが、GitHubのリドミを見て都度修正してください。

//for debug HTTP Codes
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.11.0'

追記後全文。

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.wrongwrong.retrofittest"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    //for Retrofit2
    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'

    //for debug HTTP Codes
    implementation 'com.squareup.okhttp3:okhttp:3.11.0'
    implementation 'com.squareup.okhttp3:logging-interceptor:3.11.0'

    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
クライアントを宣言して追記

以下のように宣言して、クライアントを追加します。
今回はBODYをオプションとして指定していますが、他にも幾つかオプションが有ります。

private val client: OkHttpClient = OkHttpClient
        .Builder()
        .addInterceptor(HttpLoggingInterceptor().setLevel(HttpLoggingInterceptor.Level.BODY))
        .build()

private val retrofit: Retrofit = Retrofit.Builder()
        .client(client) //クライアント追加
        .addConverterFactory(GsonConverterFactory.create(GsonBuilder().serializeNulls().create()))
        .baseUrl("https://api.github.com/users/")
        .build()

追記後全文。

package com.wrongwrong.retrofittest

import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import android.util.Log
import com.google.gson.GsonBuilder
import okhttp3.OkHttpClient
import okhttp3.logging.HttpLoggingInterceptor
import retrofit2.Call
import retrofit2.Callback
import retrofit2.Response
import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
import retrofit2.http.GET
import retrofit2.http.Path
import java.io.IOException

class MainActivity : AppCompatActivity() {
    interface IGetRepos{
        @GET("{id}/repos")
        fun getRepos(@Path("id") userID : String) : Call<List<Repo>>
    }

    private val client: OkHttpClient = OkHttpClient
            .Builder()
            .addInterceptor(HttpLoggingInterceptor().setLevel(HttpLoggingInterceptor.Level.BODY))
            .build()

    private val retrofit: Retrofit = Retrofit.Builder()
            .client(client)
            .addConverterFactory(GsonConverterFactory.create(GsonBuilder().serializeNulls().create()))
            .baseUrl("https://api.github.com/users/")
            .build()
    private val service: IGetRepos = retrofit.create(IGetRepos::class.java)

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        val call = service.getRepos("k163377")
        call.enqueue(object : Callback<List<Repo>> {
            override fun onResponse(call: Call<List<Repo>>?, response: Response<List<Repo>>?) {
                try{
                    var arr: List<Repo>? = response!!.body()
                    Log.d("onResponse", arr!![0].full_name)
                }catch (e: IOException){
                    Log.d("onResponse", "IOException")
                }
            }

            override fun onFailure(call: Call<List<Repo>>?, t: Throwable?) {
                TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
            }
        })
    }
}

結果

LogCatやRunに表示されます。クソ長いですが、まず見るべきは通信先と通信結果です。アクセス結果のステータスが200OKとなっていることが分かります。これは、例えばURLを間違えば404 Not Foundとかも返って来ます。
最後は通信で取得した結果が表示されます。自分(k163377)のリポジトリ一覧を取ってきていますが、取れていることが分かります。

09-08 14:06:35.600 14562-14589/com.wrongwrong.retrofittest D/OkHttp: --> GET https://api.github.com/users/k163377/repos
    --> END GET
09-08 14:06:37.203 14562-14589/com.wrongwrong.retrofittest D/OkHttp: <-- 200 OK https://api.github.com/users/k163377/repos (1602ms)
    Date: Sat, 08 Sep 2018 14:06:37 GMT
    Content-Type: application/json; charset=utf-8
    Transfer-Encoding: chunked
    Server: GitHub.com
    Status: 200 OK
    X-RateLimit-Limit: 60
    X-RateLimit-Remaining: 41
    X-RateLimit-Reset: 1536417011
    Cache-Control: public, max-age=60, s-maxage=60
    Vary: Accept
    ETag: W/"63f9f2828b3e7bfd571d091721704d12"
    X-GitHub-Media-Type: github.v3; format=json
    Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
    Access-Control-Allow-Origin: *
    Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
    X-Frame-Options: deny
09-08 14:06:37.204 14562-14589/com.wrongwrong.retrofittest D/OkHttp: X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin
    Content-Security-Policy: default-src 'none'
    X-Runtime-rack: 0.098233
    Vary: Accept-Encoding
    X-GitHub-Request-Id: CB4B:8075:43A50:5886B:5B93D76D
09-08 14:06:37.213 14562-14589/com.wrongwrong.retrofittest D/OkHttp: [{"id":134977023,"node_id":"MDEwOlJlcG9zaXRvcnkxMzQ5NzcwMjM=","name":"BWT","full_name":"k163377/BWT","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/BWT","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/BWT","forks_url":"https://api.github.com/repos/k163377/BWT/forks","keys_url":"https://api.github.com/repos/k163377/BWT/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/BWT/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/BWT/teams","hooks_url":"https://api.github.com/repos/k163377/BWT/hooks","issue_events_url":"https://api.github.com/repos/k163377/BWT/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/BWT/events","assignees_url":"https://api.github.com/repos/k163377/BWT/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/BWT/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/BWT/tags","blobs_url":"https://api.github.com/repos/k163377/BWT/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/BWT/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/BWT/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/BWT/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/BWT/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/BWT/languages","stargazers_url":"https://api.github.com/repos/k163377/BWT/stargazers","contributors_url":"https://api.github.com/repos/k163377/BWT/contributors","subscribers_url":"https://api.github.com/repos/k163377/BWT/subscribers","subscription_url":"https://api.github.com/repos/k163377/BWT/subscription","commits_url":"https://api.github.com/repos/k163377/BWT/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/BWT/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/BWT/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/BWT/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/BWT/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/BWT/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/BWT/merges","archive_url":"https://api.github.com/repos/k163377/BWT/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/BWT/downloads","issues_url":"https://api.github.com/repos/k163377/BWT/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/BWT/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/BWT/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/BWT/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/BWT/labels{/name}","releases_url":"https://api.github.com/repos/k163377/BWT/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/BWT/deployments","created_at":"2018-05-26T16:21:38Z","updated_at":"2018-06-24T15:31:57Z","pushed_at":"2018-06-24T15:31:56Z","git_url":"git://github.com/k163377/BWT.git","ssh_url":"git@github.com:k163377/BWT.git","clone_url
    ":"https://github.com/k163377/BWT.git","svn_url":"https://github.com/k163377/BWT","homepage":null,"size":20,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":98112536,"node_id":"MDEwOlJlcG9zaXRvcnk5ODExMjUzNg==","name":"ChangeToNativeActivitySample","full_name":"k163377/ChangeToNativeActivitySample","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/ChangeToNativeActivitySample","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample","forks_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/forks","keys_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/teams","hooks_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/hooks","issue_events_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/events","assignees_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/tags","blobs_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/languages","stargazers_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/stargazers","contributors_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/contributors","subscribers_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/subscribers","subscription_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/subscription","commits_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/issues/comments{/number}","co
    ntents_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/merges","archive_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/downloads","issues_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/labels{/name}","releases_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/ChangeToNativeActivitySample/deployments","created_at":"2017-07-23T16:59:52Z","updated_at":"2017-07-23T17:00:17Z","pushed_at":"2017-07-24T09:10:53Z","git_url":"git://github.com/k163377/ChangeToNativeActivitySample.git","ssh_url":"git@github.com:k163377/ChangeToNativeActivitySample.git","clone_url":"https://github.com/k163377/ChangeToNativeActivitySample.git","svn_url":"https://github.com/k163377/ChangeToNativeActivitySample","homepage":null,"size":130,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":89015014,"node_id":"MDEwOlJlcG9zaXRvcnk4OTAxNTAxNA==","name":"CppTest","full_name":"k163377/CppTest","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/CppTest","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/CppTest","forks_url":"https://api.github.com/repos/k163377/CppTest/forks","keys_url":"https://api.github.com/repos/k163377/CppTest/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/CppTest/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/CppTest/teams","hooks_url":"https://api.github.com/repos/k163377/CppTest/hooks","issue_events_url":"https://api.github.com/repos/k163377/CppTest/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/CppTest/events","assignees_url":"https://api.github.com/repos/k163377/CppTest/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/CppTest/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/CppTest/tags","blobs_url":"https://api.github.com/repos/k163377/CppTest/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/CppTest/git/tags{/sha}","git_refs_url":"https:
09-08 14:06:37.214 14562-14589/com.wrongwrong.retrofittest D/OkHttp: //api.github.com/repos/k163377/CppTest/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/CppTest/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/CppTest/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/CppTest/languages","stargazers_url":"https://api.github.com/repos/k163377/CppTest/stargazers","contributors_url":"https://api.github.com/repos/k163377/CppTest/contributors","subscribers_url":"https://api.github.com/repos/k163377/CppTest/subscribers","subscription_url":"https://api.github.com/repos/k163377/CppTest/subscription","commits_url":"https://api.github.com/repos/k163377/CppTest/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/CppTest/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/CppTest/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/CppTest/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/CppTest/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/CppTest/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/CppTest/merges","archive_url":"https://api.github.com/repos/k163377/CppTest/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/CppTest/downloads","issues_url":"https://api.github.com/repos/k163377/CppTest/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/CppTest/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/CppTest/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/CppTest/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/CppTest/labels{/name}","releases_url":"https://api.github.com/repos/k163377/CppTest/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/CppTest/deployments","created_at":"2017-04-21T19:00:46Z","updated_at":"2017-04-21T19:01:01Z","pushed_at":"2017-04-21T20:02:03Z","git_url":"git://github.com/k163377/CppTest.git","ssh_url":"git@github.com:k163377/CppTest.git","clone_url":"https://github.com/k163377/CppTest.git","svn_url":"https://github.com/k163377/CppTest","homepage":null,"size":125,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":146787431,"node_id":"MDEwOlJlcG9zaXRvcnkxNDY3ODc0MzE=","name":"DxWrongStopSample","full_name":"k163377/DxWrongStopSample","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/DxWrongStopSample","description":"詳細はブログを御覧ください","fork":false,"url":"https://api.github.com/repos/k163377/DxWrongStopSample","forks_url":"https://api.github.com/repos/k163377/DxWrongStopSample/forks","keys_url":"https://api.github.com/repos/k163377/DxWrongStopSample/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/DxWrongStopSample/collaborators{/collaborator}","teams_url":"
    https://api.github.com/repos/k163377/DxWrongStopSample/teams","hooks_url":"https://api.github.com/repos/k163377/DxWrongStopSample/hooks","issue_events_url":"https://api.github.com/repos/k163377/DxWrongStopSample/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/DxWrongStopSample/events","assignees_url":"https://api.github.com/repos/k163377/DxWrongStopSample/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/DxWrongStopSample/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/DxWrongStopSample/tags","blobs_url":"https://api.github.com/repos/k163377/DxWrongStopSample/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/DxWrongStopSample/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/DxWrongStopSample/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/DxWrongStopSample/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/DxWrongStopSample/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/DxWrongStopSample/languages","stargazers_url":"https://api.github.com/repos/k163377/DxWrongStopSample/stargazers","contributors_url":"https://api.github.com/repos/k163377/DxWrongStopSample/contributors","subscribers_url":"https://api.github.com/repos/k163377/DxWrongStopSample/subscribers","subscription_url":"https://api.github.com/repos/k163377/DxWrongStopSample/subscription","commits_url":"https://api.github.com/repos/k163377/DxWrongStopSample/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/DxWrongStopSample/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/DxWrongStopSample/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/DxWrongStopSample/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/DxWrongStopSample/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/DxWrongStopSample/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/DxWrongStopSample/merges","archive_url":"https://api.github.com/repos/k163377/DxWrongStopSample/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/DxWrongStopSample/downloads","issues_url":"https://api.github.com/repos/k163377/DxWrongStopSample/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/DxWrongStopSample/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/DxWrongStopSample/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/DxWrongStopSample/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/DxWrongStopSample/labels{/name}","releases_url":"https://api.github.com/repos/k163377/DxWrongStopSample/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/DxWrongStopSample/deployments","created_at":"2018-08-30T18:03:23Z","updated_at":"2018-08-30T18:22:48Z","pushed_at":"2018-08-30T18:09:42Z","git_url":"git://github.com/k163377/DxWrongStopSample.git","ssh_url":"git@github.com:k163377/DxWrongStopSample.git","clone_url":"https://github.com/k163377/DxWrongStopSample.git","svn_url":"https://github.com/k163377/DxWrongStopSample","homepage":"http://wrongwrong163377.hatenablog.com/entry/2018/08/31/032142","size":14,"stargazers_count":0,"watchers_count":0,"language":"Visual Basic","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":107168067,"node_id":"MDEwOlJlcG9zaXRvcnkxMDcxNjgwNjc=","name":"Experiment","full_name":"k163377/Experiment","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https:
    //api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/Experiment","description":"実験用アプリ","fork":false,"url":"https://api.github.com/repos/k163377/Experiment","forks_url":"https://api.github.com/repos/k163377/Experiment/forks","keys_url":"https://api.github.com/repos/k163377/Experiment/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/Experiment/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/Experiment/teams","hooks_url":"https://api.github.com/repos/k163377/Experiment/hooks","issue_events_url":"https://api.github.com/repos/k163377/Experiment/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/Experiment/events","assignees_url":"https://api.github.com/repos/k163377/Experiment/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/Experiment/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/Experiment/tags","blobs_url":"https://api.github.com/repos/k163377/Experiment/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/Experiment/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/Experiment/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/Experiment/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/Experiment/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/Experiment/languages","stargazers_url":"https://api.github.com/repos/k163377/Experiment/stargazers","contributors_url":"https://api.github.com/repos/k163377/Experiment/contributors","subscribers_url":"https://api.github.com/repos/k163377/Experiment/subscribers","subscription_url":"https://api.github.com/repos/k163377/Experiment/subscription","commits_url":"https://api.github.com/repos/k163377/Experiment/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/Experiment/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/Experiment/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/Experiment/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/Experiment/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/Experiment/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/Experiment/merges","archive_url":"https://api.github.com/repos/k163377/Experiment/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/Experiment/downloads","issues_url":"https://api.github.com/repos/k163377/Experiment/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/Experiment/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/Experiment/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/Experiment/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/Experiment/labels{/name}","releases_url":"https://api.github.com/repos/k163377/Experiment/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/Experiment/deployments","created_at":"2017-10-16T18:36:48Z","updated_at":"2018-07-13T04:21:11Z","pushed_at":"2018-07-13T04:21:10Z","git_url":"git://github.com/k163377/Experiment.git","ssh_url":"git@github.com:k163377/Experiment.git","clone_url":"https://github.com/k163377/Experiment.git","svn_url":"https://github.com/k163377/E
    xperiment","homepage":null,"size":196,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":118458164,"node_id":"MDEwOlJlcG9zaXRvcnkxMTg0NTgxNjQ=","name":"FileCopyUseTaskTest","full_name":"k163377/FileCopyUseTaskTest","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/FileCopyUseTaskTest","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest","forks_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/forks","keys_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/teams","hooks_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/hooks","issue_events_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/events","assignees_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/tags","blobs_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/languages","stargazers_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/stargazers","contributors_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/contributors","subscribers_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/subscribers","subscription_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/subscription","commits_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/merges","archive_url":"https://api.github.com/repos/k163377/File
    CopyUseTaskTest/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/downloads","issues_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/labels{/name}","releases_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/FileCopyUseTaskTest/deployments","created_at":"2018-01-22T13:05:20Z","updated_at":"2018-01-22T13:16:48Z","pushed_at":"2018-01-22T13:16:47Z","git_url":"git://github.com/k163377/FileCopyUseTaskTest.git","ssh_url":"git@github.com:k163377/FileCopyUseTaskTest.git","clone_url":"https://github.com/k163377/FileCopyUseTaskTest.git","svn_url":"https://github.com/k163377/FileCopyUseTaskTest","homepage":null,"size":12,"stargazers_count":0,"watchers_count":0,"language":"Visual Basic","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":101742606,"node_id":"MDEwOlJlcG9zaXRvcnkxMDE3NDI2MDY=","name":"GLES_Test","full_name":"k163377/GLES_Test","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/GLES_Test","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/GLES_Test","forks_url":"https://api.github.com/repos/k163377/GLES_Test/forks","keys_url":"https://api.github.com/repos/k163377/GLES_Test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/GLES_Test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/GLES_Test/teams","hooks_url":"https://api.github.com/repos/k163377/GLES_Test/hooks","issue_events_url":"https://api.github.com/repos/k163377/GLES_Test/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/GLES_Test/events","assignees_url":"https://api.github.com/repos/k163377/GLES_Test/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/GLES_Test/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/GLES_Test/tags","blobs_url":"https://api.github.com/repos/k163377/GLES_Test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/GLES_Test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/GLES_Test/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/GLES_Test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/GLES_Test/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/GLES_Test/languages","stargazers_url":"https://api.github.com/repos/k163377/GLES_Test/stargazers","contributors_url":"https://api.github.com/repos/k163377/G
    LES_Test/contributors","subscribers_url":"https://api.github.com/repos/k163377/GLES_Test/subscribers","subscription_url":"https://api.github.com/repos/k163377/GLES_Test/subscription","commits_url":"https://api.github.com/repos/k163377/GLES_Test/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/GLES_Test/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/GLES_Test/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/GLES_Test/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/GLES_Test/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/GLES_Test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/GLES_Test/merges","archive_url":"https://api.github.com/repos/k163377/GLES_Test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/GLES_Test/downloads","issues_url":"https://api.github.com/repos/k163377/GLES_Test/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/GLES_Test/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/GLES_Test/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/GLES_Test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/GLES_Test/labels{/name}","releases_url":"https://api.github.com/repos/k163377/GLES_Test/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/GLES_Test/deployments","created_at":"2017-08-29T09:15:40Z","updated_at":"2017-08-29T09:15:51Z","pushed_at":"2017-08-29T09:15:50Z","git_url":"git://github.com/k163377/GLES_Test.git","ssh_url":"git@github.com:k163377/GLES_Test.git","clone_url":"https://github.com/k163377/GLES_Test.git","svn_url":"https://github.com/k163377/GLES_Test","homepage":null,"size":126,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":95642144,"node_id":"MDEwOlJlcG9zaXRvcnk5NTY0MjE0NA==","name":"IfModTest","full_name":"k163377/IfModTest","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/IfModTest","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/IfModTest","forks_url":"https://api.github.com/repos/k163377/IfModTest/forks","keys_url":"https://api.github.com/repos/k163377/IfModTest/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/IfModTest/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/IfModTest/teams","hooks_url":"https://api.github.com/repos/k163377/IfModTest/hooks","issue_events_url":"https://api.github.com/repos/k163377/IfModTest/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/IfModTest/events","assignees_url":"https://api.github.com/repos/k163377/IfModTest/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/IfModTest/branches{
    /branch}","tags_url":"https://api.github.com/repos/k163377/IfModTest/tags","blobs_url":"https://api.github.com/repos/k163377/IfModTest/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/IfModTest/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/IfModTest/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/IfModTest/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/IfModTest/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/IfModTest/languages","stargazers_url":"https://api.github.com/repos/k163377/IfModTest/stargazers","contributors_url":"https://api.github.com/repos/k163377/IfModTest/contributors","subscribers_url":"https://api.github.com/repos/k163377/IfModTest/subscribers","subscription_url":"https://api.github.com/repos/k163377/IfModTest/subscription","commits_url":"https://api.github.com/repos/k163377/IfModTest/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/IfModTest/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/IfModTest/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/IfModTest/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/IfModTest/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/IfModTest/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/IfModTest/merges","archive_url":"https://api.github.com/repos/k163377/IfModTest/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/IfModTest/downloads","issues_url":"https://api.github.com/repos/k163377/IfModTest/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/IfModTest/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/IfModTest/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/IfModTest/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/IfModTest/labels{/name}","releases_url":"https://api.github.com/repos/k163377/IfModTest/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/IfModTest/deployments","created_at":"2017-06-28T07:35:13Z","updated_at":"2017-06-28T07:35:28Z","pushed_at":"2017-06-28T08:26:37Z","git_url":"git://github.com/k163377/IfModTest.git","ssh_url":"git@github.com:k163377/IfModTest.git","clone_url":"https://github.com/k163377/IfModTest.git","svn_url":"https://github.com/k163377/IfModTest","homepage":null,"size":2,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":97396241,"node_id":"MDEwOlJlcG9zaXRvcnk5NzM5NjI0MQ==","name":"IfModTest_Java","full_name":"k163377/IfModTest_Java","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/IfModTest_Java","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/IfModTest_
    Java","forks_url":"https://api.github.com/repos/k163377/IfModTest_Java/forks","keys_url":"https://api.github.com/repos/k163377/IfModTest_Java/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/IfModTest_Java/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/IfModTest_Java/teams","hooks_url":"https://api.github.com/repos/k163377/IfModTest_Java/hooks","issue_events_url":"https://api.github.com/repos/k163377/IfModTest_Java/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/IfModTest_Java/events","assignees_url":"https://api.github.com/repos/k163377/IfModTest_Java/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/IfModTest_Java/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/IfModTest_Java/tags","blobs_url":"https://api.github.com/repos/k163377/IfModTest_Java/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/IfModTest_Java/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/IfModTest_Java/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/IfModTest_Java/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/IfModTest_Java/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/IfModTest_Java/languages","stargazers_url":"https://api.github.com/repos/k163377/IfModTest_Java/stargazers","contributors_url":"https://api.github.com/repos/k163377/IfModTest_Java/contributors","subscribers_url":"https://api.github.com/repos/k163377/IfModTest_Java/subscribers","subscription_url":"https://api.github.com/repos/k163377/IfModTest_Java/subscription","commits_url":"https://api.github.com/repos/k163377/IfModTest_Java/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/IfModTest_Java/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/IfModTest_Java/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/IfModTest_Java/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/IfModTest_Java/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/IfModTest_Java/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/IfModTest_Java/merges","archive_url":"https://api.github.com/repos/k163377/IfModTest_Java/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/IfModTest_Java/downloads","issues_url":"https://api.github.com/repos/k163377/IfModTest_Java/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/IfModTest_Java/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/IfModTest_Java/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/IfModTest_Java/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/IfModTest_Java/labels{/name}","releases_url":"https://api.github.com/repos/k163377/IfModTest_Java/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/IfModTest_Java/deployments","created_at":"2017-07-16T16:33:22Z","updated_at":"2017-07-16T16:33:33Z","pushed_at":"2017-07-16T16:33:32Z","git_url":"git://github.com/k163377/IfModTest_Java.git","ssh_url":"git@github.com:k163377/IfModTest_Java.git","clone_url":"https://github.com/k163377/IfModTest_Java.git","svn_url":"https://github.com/k163377/IfModTest_Java","homepage":null,"size":2,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":91204794,"node_id":"MDEwOlJlcG9zaXRvcnk5MTIwNDc5NA==","name":"InverseFizzBuzzTest","full_name":"k163377/InverseFizzBuzzTest","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"
    ","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/InverseFizzBuzzTest","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest","forks_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/forks","keys_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/teams","hooks_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/hooks","issue_events_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/events","assignees_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/tags","blobs_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/languages","stargazers_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/stargazers","contributors_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/contributors","subscribers_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/subscribers","subscription_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/subscription","commits_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/merges","archive_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/downloads","issues_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/labels{/name}","releases_url":"https://api.githu
    b.com/repos/k163377/InverseFizzBuzzTest/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/InverseFizzBuzzTest/deployments","created_at":"2017-05-13T21:51:18Z","updated_at":"2017-05-13T21:51:29Z","pushed_at":"2017-05-13T22:04:17Z","git_url":"git://github.com/k163377/InverseFizzBuzzTest.git","ssh_url":"git@github.com:k163377/InverseFizzBuzzTest.git","clone_url":"https://github.com/k163377/InverseFizzBuzzTest.git","svn_url":"https://github.com/k163377/InverseFizzBuzzTest","homepage":null,"size":4,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":82025115,"node_id":"MDEwOlJlcG9zaXRvcnk4MjAyNTExNQ==","name":"KUE-CHIP2-2byte-multiplication-program","full_name":"k163377/KUE-CHIP2-2byte-multiplication-program","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/KUE-CHIP2-2byte-multiplication-program","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program","forks_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/forks","keys_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/teams","hooks_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/hooks","issue_events_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/events","assignees_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/tags","blobs_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/languages","stargazers_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/stargazers","contributors_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-prog
    ram/contributors","subscribers_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/subscribers","subscription_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/subscription","commits_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/merges","archive_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/downloads","issues_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/labels{/name}","releases_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/KUE-CHIP2-2byte-multiplication-program/deployments","created_at":"2017-02-15T05:50:14Z","updated_at":"2018-04-03T10:12:15Z","pushed_at":"2017-07-02T20:00:53Z","git_url":"git://github.com/k163377/KUE-CHIP2-2byte-multiplication-program.git","ssh_url":"git@github.com:k163377/KUE-CHIP2-2byte-multiplication-program.git","clone_url":"https://github.com/k163377/KUE-CHIP2-2byte-multiplication-program.git","svn_url":"https://github.com/k163377/KUE-CHIP2-2byte-multiplication-program","homepage":null,"size":13,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master"},{"id":88359626,"node_id":"MDEwOlJlcG9zaXRvcnk4ODM1OTYyNg==","name":"LifeSlider","full_name":"k163377/LifeSlider","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/LifeSlider","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/LifeSlider","forks_url":"https://api.github.com/repos/k163377/Lif
    eSlider/forks","keys_url":"https://api.github.com/repos/k163377/LifeSlider/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/LifeSlider/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/LifeSlider/teams","hooks_url":"https://api.github.com/repos/k163377/LifeSlider/hooks","issue_events_url":"https://api.github.com/repos/k163377/LifeSlider/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/LifeSlider/events","assignees_url":"https://api.github.com/repos/k163377/LifeSlider/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/LifeSlider/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/LifeSlider/tags","blobs_url":"https://api.github.com/repos/k163377/LifeSlider/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/LifeSlider/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/LifeSlider/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/LifeSlider/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/LifeSlider/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/LifeSlider/languages","stargazers_url":"https://api.github.com/repos/k163377/LifeSlider/stargazers","contributors_url":"https://api.github.com/repos/k163377/LifeSlider/contributors","subscribers_url":"https://api.github.com/repos/k163377/LifeSlider/subscribers","subscription_url":"https://api.github.com/repos/k163377/LifeSlider/subscription","commits_url":"https://api.github.com/repos/k163377/LifeSlider/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/LifeSlider/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/LifeSlider/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/LifeSlider/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/LifeSlider/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/LifeSlider/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/LifeSlider/merges","archive_url":"https://api.github.com/repos/k163377/LifeSlider/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/LifeSlider/downloads","issues_url":"https://api.github.com/repos/k163377/LifeSlider/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/LifeSlider/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/LifeSlider/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/LifeSlider/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/LifeSlider/labels{/name}","releases_url":"https://api.github.com/repos/k163377/LifeSlider/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/LifeSlider/deployments","created_at":"2017-04-15T16:30:43Z","updated_at":"2017-04-15T16:31:09Z","pushed_at":"2017-05-07T13:47:55Z","git_url":"git://github.com/k163377/LifeSlider.git","ssh_url":"git@github.com:k163377/LifeSlider.git","clone_url":"https://github.com/k163377/LifeSlider.git","svn_url":"https://github.com/k163377/LifeSlider","homepage":null,"size":1472,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":95960045,"node_id":"MDEwOlJlcG9zaXRvcnk5NTk2MDA0NQ==","name":"OpenCV4AndroidSample","full_name":"k163377/OpenCV4AndroidSample","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/followin
    g{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/OpenCV4AndroidSample","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample","forks_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/forks","keys_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/teams","hooks_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/hooks","issue_events_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/events","assignees_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/tags","blobs_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/languages","stargazers_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/stargazers","contributors_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/contributors","subscribers_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/subscribers","subscription_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/subscription","commits_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/merges","archive_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/downloads","issues_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/labels{/name}","releases_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/OpenCV4AndroidSample/deployments","created_at":"2017-07-01T11:24:1
    5Z","updated_at":"2018-02-03T20:03:30Z","pushed_at":"2017-07-01T11:51:20Z","git_url":"git://github.com/k163377/OpenCV4AndroidSample.git","ssh_url":"git@github.com:k163377/OpenCV4AndroidSample.git","clone_url":"https://github.com/k163377/OpenCV4AndroidSample.git","svn_url":"https://github.com/k163377/OpenCV4AndroidSample","homepage":null,"size":158333,"stargazers_count":1,"watchers_count":1,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master"},{"id":131467165,"node_id":"MDEwOlJlcG9zaXRvcnkxMzE0NjcxNjU=","name":"ProgressTest_VB","full_name":"k163377/ProgressTest_VB","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/ProgressTest_VB","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/ProgressTest_VB","forks_url":"https://api.github.com/repos/k163377/ProgressTest_VB/forks","keys_url":"https://api.github.com/repos/k163377/ProgressTest_VB/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/ProgressTest_VB/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/ProgressTest_VB/teams","hooks_url":"https://api.github.com/repos/k163377/ProgressTest_VB/hooks","issue_events_url":"https://api.github.com/repos/k163377/ProgressTest_VB/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/ProgressTest_VB/events","assignees_url":"https://api.github.com/repos/k163377/ProgressTest_VB/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/ProgressTest_VB/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/ProgressTest_VB/tags","blobs_url":"https://api.github.com/repos/k163377/ProgressTest_VB/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/ProgressTest_VB/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/ProgressTest_VB/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/ProgressTest_VB/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/ProgressTest_VB/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/ProgressTest_VB/languages","stargazers_url":"https://api.github.com/repos/k163377/ProgressTest_VB/stargazers","contributors_url":"https://api.github.com/repos/k163377/ProgressTest_VB/contributors","subscribers_url":"https://api.github.com/repos/k163377/ProgressTest_VB/subscribers","subscription_url":"https://api.github.com/repos/k163377/ProgressTest_VB/subscription","commits_url":"https://api.github.com/repos/k163377/ProgressTest_VB/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/ProgressTest_VB/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/ProgressTest_VB/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/ProgressTest_VB/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/ProgressTest_VB/contents/{+path}","compare_url":"https://api.github.
    com/repos/k163377/ProgressTest_VB/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/ProgressTest_VB/merges","archive_url":"https://api.github.com/repos/k163377/ProgressTest_VB/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/ProgressTest_VB/downloads","issues_url":"https://api.github.com/repos/k163377/ProgressTest_VB/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/ProgressTest_VB/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/ProgressTest_VB/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/ProgressTest_VB/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/ProgressTest_VB/labels{/name}","releases_url":"https://api.github.com/repos/k163377/ProgressTest_VB/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/ProgressTest_VB/deployments","created_at":"2018-04-29T04:59:51Z","updated_at":"2018-04-29T05:23:34Z","pushed_at":"2018-04-29T05:23:33Z","git_url":"git://github.com/k163377/ProgressTest_VB.git","ssh_url":"git@github.com:k163377/ProgressTest_VB.git","clone_url":"https://github.com/k163377/ProgressTest_VB.git","svn_url":"https://github.com/k163377/ProgressTest_VB","homepage":null,"size":12,"stargazers_count":0,"watchers_count":0,"language":"Visual Basic","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":141179588,"node_id":"MDEwOlJlcG9zaXRvcnkxNDExNzk1ODg=","name":"RepositoryLangAnalyzer","full_name":"k163377/RepositoryLangAnalyzer","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/RepositoryLangAnalyzer","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer","forks_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/forks","keys_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/teams","hooks_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/hooks","issue_events_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/events","assignees_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/tags","blobs_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/git/refs{/sha}","trees_
    url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/languages","stargazers_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/stargazers","contributors_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/contributors","subscribers_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/subscribers","subscription_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/subscription","commits_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/merges","archive_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/downloads","issues_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/labels{/name}","releases_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/RepositoryLangAnalyzer/deployments","created_at":"2018-07-16T18:45:14Z","updated_at":"2018-09-08T11:24:54Z","pushed_at":"2018-09-08T11:24:53Z","git_url":"git://github.com/k163377/RepositoryLangAnalyzer.git","ssh_url":"git@github.com:k163377/RepositoryLangAnalyzer.git","clone_url":"https://github.com/k163377/RepositoryLangAnalyzer.git","svn_url":"https://github.com/k163377/RepositoryLangAnalyzer","homepage":null,"size":369,"stargazers_count":0,"watchers_count":0,"language":"Kotlin","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":1,"license":null,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"},{"id":144394238,"node_id":"MDEwOlJlcG9zaXRvcnkxNDQzOTQyMzg=","name":"RetrofitSample","full_name":"k163377/RetrofitSample","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/RetrofitSample","description":null,"fork":false,"url":"https:/
    /api.github.com/repos/k163377/RetrofitSample","forks_url":"https://api.github.com/repos/k163377/RetrofitSample/forks","keys_url":"https://api.github.com/repos/k163377/RetrofitSample/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/RetrofitSample/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/RetrofitSample/teams","hooks_url":"https://api.github.com/repos/k163377/RetrofitSample/hooks","issue_events_url":"https://api.github.com/repos/k163377/RetrofitSample/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/RetrofitSample/events","assignees_url":"https://api.github.com/repos/k163377/RetrofitSample/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/RetrofitSample/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/RetrofitSample/tags","blobs_url":"https://api.github.com/repos/k163377/RetrofitSample/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/RetrofitSample/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/RetrofitSample/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/RetrofitSample/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/RetrofitSample/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/RetrofitSample/languages","stargazers_url":"https://api.github.com/repos/k163377/RetrofitSample/stargazers","contributors_url":"https://api.github.com/repos/k163377/RetrofitSample/contributors","subscribers_url":"https://api.github.com/repos/k163377/RetrofitSample/subscribers","subscription_url":"https://api.github.com/repos/k163377/RetrofitSample/subscription","commits_url":"https://api.github.com/repos/k163377/RetrofitSample/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/RetrofitSample/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/RetrofitSample/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/RetrofitSample/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/RetrofitSample/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/RetrofitSample/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/RetrofitSample/merges","archive_url":"https://api.github.com/repos/k163377/RetrofitSample/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/RetrofitSample/downloads","issues_url":"https://api.github.com/repos/k163377/RetrofitSample/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/RetrofitSample/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/RetrofitSample/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/RetrofitSample/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/RetrofitSample/labels{/name}","releases_url":"https://api.github.com/repos/k163377/RetrofitSample/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/RetrofitSample/deployments","created_at":"2018-08-11T14:58:54Z","updated_at":"2018-09-08T12:30:24Z","pushed_at":"2018-09-08T12:30:22Z","git_url":"git://github.com/k163377/RetrofitSample.git","ssh_url":"git@github.com:k163377/RetrofitSample.git","clone_url":"https://github.com/k163377/RetrofitSample.git","svn_url":"https://github.com/k163377/RetrofitSample","homepage":null,"size":133,"stargazers_count":0,"watchers_count":0,"language":"Kotlin","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":84186995,"node_id":"MDEwOlJlcG9zaXRvcnk4NDE4Njk5NQ==","name":"ScriptCalculator","full_name":"k163377/ScriptCalculator","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubuserconte
09-08 14:06:37.215 14562-14589/com.wrongwrong.retrofittest D/OkHttp: nt.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/ScriptCalculator","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/ScriptCalculator","forks_url":"https://api.github.com/repos/k163377/ScriptCalculator/forks","keys_url":"https://api.github.com/repos/k163377/ScriptCalculator/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/ScriptCalculator/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/ScriptCalculator/teams","hooks_url":"https://api.github.com/repos/k163377/ScriptCalculator/hooks","issue_events_url":"https://api.github.com/repos/k163377/ScriptCalculator/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/ScriptCalculator/events","assignees_url":"https://api.github.com/repos/k163377/ScriptCalculator/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/ScriptCalculator/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/ScriptCalculator/tags","blobs_url":"https://api.github.com/repos/k163377/ScriptCalculator/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/ScriptCalculator/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/ScriptCalculator/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/ScriptCalculator/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/ScriptCalculator/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/ScriptCalculator/languages","stargazers_url":"https://api.github.com/repos/k163377/ScriptCalculator/stargazers","contributors_url":"https://api.github.com/repos/k163377/ScriptCalculator/contributors","subscribers_url":"https://api.github.com/repos/k163377/ScriptCalculator/subscribers","subscription_url":"https://api.github.com/repos/k163377/ScriptCalculator/subscription","commits_url":"https://api.github.com/repos/k163377/ScriptCalculator/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/ScriptCalculator/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/ScriptCalculator/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/ScriptCalculator/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/ScriptCalculator/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/ScriptCalculator/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/ScriptCalculator/merges","archive_url":"https://api.github.com/repos/k163377/ScriptCalculator/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/ScriptCalculator/downloads","issues_url":"https://api.github.com/repos/k163377/ScriptCalculator/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/ScriptCalculator/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/ScriptCalculator/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/ScriptCalculator/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/ScriptCalculator/labels{/name}","releases_url":"https://api.github.com/repos/k163377/ScriptCalculator/releases{/id}","deployments_url":
    "https://api.github.com/repos/k163377/ScriptCalculator/deployments","created_at":"2017-03-07T10:35:43Z","updated_at":"2018-08-12T15:33:53Z","pushed_at":"2017-05-09T03:19:48Z","git_url":"git://github.com/k163377/ScriptCalculator.git","ssh_url":"git@github.com:k163377/ScriptCalculator.git","clone_url":"https://github.com/k163377/ScriptCalculator.git","svn_url":"https://github.com/k163377/ScriptCalculator","homepage":null,"size":196,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":1,"license":null,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"},{"id":124381162,"node_id":"MDEwOlJlcG9zaXRvcnkxMjQzODExNjI=","name":"SortTest","full_name":"k163377/SortTest","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/SortTest","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/SortTest","forks_url":"https://api.github.com/repos/k163377/SortTest/forks","keys_url":"https://api.github.com/repos/k163377/SortTest/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/SortTest/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/SortTest/teams","hooks_url":"https://api.github.com/repos/k163377/SortTest/hooks","issue_events_url":"https://api.github.com/repos/k163377/SortTest/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/SortTest/events","assignees_url":"https://api.github.com/repos/k163377/SortTest/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/SortTest/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/SortTest/tags","blobs_url":"https://api.github.com/repos/k163377/SortTest/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/SortTest/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/SortTest/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/SortTest/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/SortTest/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/SortTest/languages","stargazers_url":"https://api.github.com/repos/k163377/SortTest/stargazers","contributors_url":"https://api.github.com/repos/k163377/SortTest/contributors","subscribers_url":"https://api.github.com/repos/k163377/SortTest/subscribers","subscription_url":"https://api.github.com/repos/k163377/SortTest/subscription","commits_url":"https://api.github.com/repos/k163377/SortTest/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/SortTest/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/SortTest/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/SortTest/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/SortTest/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/SortTest/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/SortTest/merges","
    archive_url":"https://api.github.com/repos/k163377/SortTest/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/SortTest/downloads","issues_url":"https://api.github.com/repos/k163377/SortTest/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/SortTest/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/SortTest/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/SortTest/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/SortTest/labels{/name}","releases_url":"https://api.github.com/repos/k163377/SortTest/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/SortTest/deployments","created_at":"2018-03-08T11:21:00Z","updated_at":"2018-03-08T11:21:13Z","pushed_at":"2018-03-08T11:49:30Z","git_url":"git://github.com/k163377/SortTest.git","ssh_url":"git@github.com:k163377/SortTest.git","clone_url":"https://github.com/k163377/SortTest.git","svn_url":"https://github.com/k163377/SortTest","homepage":null,"size":11,"stargazers_count":0,"watchers_count":0,"language":"C#","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":141308503,"node_id":"MDEwOlJlcG9zaXRvcnkxNDEzMDg1MDM=","name":"summer-internship-2018","full_name":"k163377/summer-internship-2018","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/summer-internship-2018","description":"🏖エウレカ サマーインターンシップ 2018","fork":true,"url":"https://api.github.com/repos/k163377/summer-internship-2018","forks_url":"https://api.github.com/repos/k163377/summer-internship-2018/forks","keys_url":"https://api.github.com/repos/k163377/summer-internship-2018/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/summer-internship-2018/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/summer-internship-2018/teams","hooks_url":"https://api.github.com/repos/k163377/summer-internship-2018/hooks","issue_events_url":"https://api.github.com/repos/k163377/summer-internship-2018/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/summer-internship-2018/events","assignees_url":"https://api.github.com/repos/k163377/summer-internship-2018/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/summer-internship-2018/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/summer-internship-2018/tags","blobs_url":"https://api.github.com/repos/k163377/summer-internship-2018/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/summer-internship-2018/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/summer-internship-2018/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/summer-internship-2018/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/summer-internship-2018/statuses/{sha}","languages_url":"https://api.github.com/r
    epos/k163377/summer-internship-2018/languages","stargazers_url":"https://api.github.com/repos/k163377/summer-internship-2018/stargazers","contributors_url":"https://api.github.com/repos/k163377/summer-internship-2018/contributors","subscribers_url":"https://api.github.com/repos/k163377/summer-internship-2018/subscribers","subscription_url":"https://api.github.com/repos/k163377/summer-internship-2018/subscription","commits_url":"https://api.github.com/repos/k163377/summer-internship-2018/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/summer-internship-2018/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/summer-internship-2018/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/summer-internship-2018/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/summer-internship-2018/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/summer-internship-2018/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/summer-internship-2018/merges","archive_url":"https://api.github.com/repos/k163377/summer-internship-2018/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/summer-internship-2018/downloads","issues_url":"https://api.github.com/repos/k163377/summer-internship-2018/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/summer-internship-2018/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/summer-internship-2018/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/summer-internship-2018/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/summer-internship-2018/labels{/name}","releases_url":"https://api.github.com/repos/k163377/summer-internship-2018/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/summer-internship-2018/deployments","created_at":"2018-07-17T15:25:24Z","updated_at":"2018-07-17T15:38:28Z","pushed_at":"2018-07-17T15:38:26Z","git_url":"git://github.com/k163377/summer-internship-2018.git","ssh_url":"git@github.com:k163377/summer-internship-2018.git","clone_url":"https://github.com/k163377/summer-internship-2018.git","svn_url":"https://github.com/k163377/summer-internship-2018","homepage":"https://internship.eure.jp/summer/","size":286,"stargazers_count":0,"watchers_count":0,"language":"Kotlin","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":131474707,"node_id":"MDEwOlJlcG9zaXRvcnkxMzE0NzQ3MDc=","name":"TaskBarProgressTest_VB","full_name":"k163377/TaskBarProgressTest_VB","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/TaskBarProgressTest_VB","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB","forks_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/forks","keys_url":"https://api.g
    ithub.com/repos/k163377/TaskBarProgressTest_VB/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/teams","hooks_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/hooks","issue_events_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/events","assignees_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/tags","blobs_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/languages","stargazers_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/stargazers","contributors_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/contributors","subscribers_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/subscribers","subscription_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/subscription","commits_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/merges","archive_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/downloads","issues_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/labels{/name}","releases_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/releases{/id}","deployments_url":"https://api.github.com/repos/k163377/TaskBarProgressTest_VB/deployments","created_at":"2018-04-29T07:27:49Z","updated_at":"2018-04-29T08:11:35Z","pushed_at":"2018-04-29T08:11:34Z","git_url":"git://github.com/k163377/TaskBarProgressTest_VB.git","ssh_url":"git@github.com:k163377/TaskBarProgressTest_VB.git","clone_url":"https://github.com/k163377/TaskBarProgressTest_VB.git","svn_url":"https://github.com/k163377/TaskBarProgressTest_VB","homepage":null,"size":13,"stargazers_count":0,"watchers_count":0,"language":"Visual Basic","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"},{"id":104005871,"node_id":"MDEwOlJlcG9zaXRvcnkxMDQwMDU4NzE=","name":"To
    yohashiChariMap","full_name":"k163377/ToyohashiChariMap","owner":{"login":"k163377","id":24751011,"node_id":"MDQ6VXNlcjI0NzUxMDEx","avatar_url":"https://avatars0.githubusercontent.com/u/24751011?v=4","gravatar_id":"","url":"https://api.github.com/users/k163377","html_url":"https://github.com/k163377","followers_url":"https://api.github.com/users/k163377/followers","following_url":"https://api.github.com/users/k163377/following{/other_user}","gists_url":"https://api.github.com/users/k163377/gists{/gist_id}","starred_url":"https://api.github.com/users/k163377/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/k163377/subscriptions","organizations_url":"https://api.github.com/users/k163377/orgs","repos_url":"https://api.github.com/users/k163377/repos","events_url":"https://api.github.com/users/k163377/events{/privacy}","received_events_url":"https://api.github.com/users/k163377/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/k163377/ToyohashiChariMap","description":null,"fork":false,"url":"https://api.github.com/repos/k163377/ToyohashiChariMap","forks_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/forks","keys_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/teams","hooks_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/hooks","issue_events_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/issues/events{/number}","events_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/events","assignees_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/assignees{/user}","branches_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/branches{/branch}","tags_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/tags","blobs_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/git/refs{/sha}","trees_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/statuses/{sha}","languages_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/languages","stargazers_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/stargazers","contributors_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/contributors","subscribers_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/subscribers","subscription_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/subscription","commits_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/commits{/sha}","git_commits_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/git/commits{/sha}","comments_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/comments{/number}","issue_comment_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/issues/comments{/number}","contents_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/contents/{+path}","compare_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/merges","archive_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/downloads","issues_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/issues{/number}","pulls_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/pulls{/number}","milestones_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/milestones{/number}","notifications_url":"https://api.github.com/repos/k163377/ToyohashiChariMap/notifications{?