{"id":1632,"date":"2019-11-11T08:59:16","date_gmt":"2019-11-10T23:59:16","guid":{"rendered":"http:\/\/taki-lab.site\/bocci\/?p=1632"},"modified":"2019-11-11T08:59:19","modified_gmt":"2019-11-10T23:59:19","slug":"%e3%80%90%e3%83%97%e3%83%ad%e3%82%b0%e3%83%a9%e3%83%9f%e3%83%b3%e3%82%b0%e3%80%91%e7%be%8e%e4%ba%ba%e6%99%82%e8%a8%88%e3%81%ae%e3%82%88%e3%81%86%e3%81%aa%e3%82%82%e3%81%aeandroid%e7%b7%a8","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=1632","title":{"rendered":"\u3010\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u3011\u7f8e\u4eba\u6642\u8a08\u306e\u3088\u3046\u306a\u3082\u306e(Android\u7de8)"},"content":{"rendered":"\n<p> Tech commit\u306e\u6311\u6226\u72b6\u8ab2\u984c\u3067\u300c\u7f8e\u4eba\u6642\u8a08\u306e\u3088\u3046\u306a\u3082\u306e\u300d\u304c\u3042\u3063\u305f\u306e\u3067\u3001Android\u30a2\u30d7\u30ea\u3067\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002 <\/p>\n\n\n\n<p><a href=\"http:\/\/taki-lab.site\/meshitero\/app_debug.apk\">http:\/\/taki-lab.site\/meshitero\/app_debug.apk<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/takishita2nd\/meshitero_timer_android\">https:\/\/github.com\/takishita2nd\/meshitero_timer_android<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u30b3\u30fc\u30c9\u89e3\u8aac<\/h2>\n\n\n\n<p>\u307e\u305a\u306f\u30de\u30cb\u30d5\u30a7\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u304b\u3089<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  \n&lt;?xml version=\"1.0\" encoding=\"utf-8\"?>\n&lt;manifest xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    package=\"com.example.meshitero\">\n\n    &lt;application\n        android:allowBackup=\"true\"\n        android:icon=\"@mipmap\/ic_launcher\"\n        android:label=\"@string\/app_name\"\n        android:roundIcon=\"@mipmap\/ic_launcher_round\"\n        android:supportsRtl=\"true\"\n        android:theme=\"@style\/AppTheme\">\n        &lt;activity android:name=\".MainActivity\">\n            &lt;intent-filter>\n                &lt;action android:name=\"android.intent.action.MAIN\" \/>\n\n                &lt;category android:name=\"android.intent.category.LAUNCHER\" \/>\n            &lt;\/intent-filter>\n        &lt;\/activity>\n    &lt;\/application>\n    &lt;uses-permission android:name=\"android.permission.INTERNET\" \/>\n&lt;\/manifest>\n<\/code><\/pre>\n\n\n\n<p> &lt;uses-permission android:name=&#8221;android.permission.INTERNET&#8221; \/> <\/p>\n\n\n\n<p>\u3053\u306e\u4e00\u884c\u3092\u66f8\u304d\u8db3\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3053\u308c\u304c\u7121\u3044\u3068\u3001Android\u30a2\u30d7\u30ea\u306fWeb\u30a2\u30af\u30bb\u30b9\u3067\u304d\u307e\u305b\u3093\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>package com.example.meshitero;\n\nimport android.graphics.Bitmap;\nimport android.graphics.BitmapFactory;\nimport android.os.AsyncTask;\nimport android.util.Log;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.net.HttpURLConnection;\nimport java.net.URL;\n\npublic class DownloadTask extends AsyncTask&lt;String, Void, Bitmap> {\n    private Listener listener = null;\n\n    @Override\n    protected Bitmap doInBackground(String... param) {\n        return downloadImage(param[0]);\n    }\n\n    @Override\n    protected void onProgressUpdate(Void... progress) {\n\n    }\n\n    @Override\n    protected void onPostExecute(Bitmap bmp) {\n        if (listener != null) {\n            listener.onSuccess(bmp);\n        }\n    }\n\n    private Bitmap downloadImage(String address) {\n        Bitmap bmp = null;\n\n        HttpURLConnection urlConnection = null;\n\n        try {\n            URL url = new URL( address );\n\n            \/\/ HttpURLConnection \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u751f\u6210\n            urlConnection = (HttpURLConnection) url.openConnection();\n\n            \/\/ \u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u8a2d\u5b9a\n            urlConnection.setReadTimeout(10000);\n            urlConnection.setConnectTimeout(20000);\n\n            \/\/ \u30ea\u30af\u30a8\u30b9\u30c8\u30e1\u30bd\u30c3\u30c9\n            urlConnection.setRequestMethod(\"GET\");\n\n            \/\/ \u30ea\u30c0\u30a4\u30ec\u30af\u30c8\u3092\u81ea\u52d5\u3067\u8a31\u53ef\u3057\u306a\u3044\u8a2d\u5b9a\n            urlConnection.setInstanceFollowRedirects(false);\n\n            \/\/ \u30d8\u30c3\u30c0\u30fc\u306e\u8a2d\u5b9a(\u8907\u6570\u8a2d\u5b9a\u53ef\u80fd)\n            urlConnection.setRequestProperty(\"Accept-Language\", \"jp\");\n\n            \/\/ \u63a5\u7d9a\n            urlConnection.connect();\n\n            int resp = urlConnection.getResponseCode();\n\n            switch (resp){\n                case HttpURLConnection.HTTP_OK:\n                    try(InputStream is = urlConnection.getInputStream()){\n                        bmp = BitmapFactory.decodeStream(is);\n                        is.close();\n                    } catch(IOException e){\n                        e.printStackTrace();\n                    }\n                    break;\n                case HttpURLConnection.HTTP_UNAUTHORIZED:\n                    break;\n                default:\n                    break;\n            }\n        } catch (Exception e) {\n            Log.d(\"debug\", \"downloadImage error\");\n            e.printStackTrace();\n        } finally {\n            if (urlConnection != null) {\n                urlConnection.disconnect();\n            }\n        }\n\n        return bmp;\n    }\n\n    void setListener(Listener listener) {\n        this.listener = listener;\n    }\n\n    interface Listener {\n        void onSuccess(Bitmap bmp);\n    }\n}<\/code><\/pre>\n\n\n\n<p>Android\u3067Web\u30a2\u30af\u30bb\u30b9\u3059\u308b\u306b\u306f\u3001\u672c\u4f53\u30b9\u30ec\u30c3\u30c9\u3067\u306f\u52d5\u304b\u3059\u3053\u3068\u306f\u3067\u304d\u306a\u3044\u306e\u3067\u3001\u975e\u540c\u671f\u30bf\u30b9\u30af\u3092\u3064\u304b\u3063\u3066\u3001\u3053\u3061\u3089\u3067\u52d5\u304b\u3059\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n\n\n\n<p>AsyncTask\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3092\u5b9f\u88c5\u3057\u305f\u30af\u30e9\u30b9\u3092\u65b0\u898f\u306b\u4f5c\u6210\u3057\u3066\u3001\u3053\u3061\u3089\u306b\u5b9f\u969b\u306b\u753b\u50cf\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u51e6\u7406\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>doInBackground()\u3067\u306f\u3001\u5b9f\u969b\u306b\u884c\u3046\u30bf\u30b9\u30af\u51e6\u7406\u3092\u66f8\u304d\u307e\u3059\u3002\u3053\u3053\u3067\u306f\u5b9f\u969b\u306b\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u51e6\u7406\u3092\u8a18\u8f09\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>onProgressUpdate()\u3067\u306f\u3001\u30bf\u30b9\u30af\u72b6\u614b\u304c\u5909\u308f\u3063\u305f\u3068\u304d\u306b\u5b9f\u884c\u3055\u308c\u308b\u51e6\u7406\u3092\u66f8\u304d\u307e\u3059\u3002\u3053\u3053\u3067\u306f\u7279\u306b\u4f55\u3082\u3057\u3066\u3044\u307e\u305b\u3093\u3002<\/p>\n\n\n\n<p>onPostExecute()\u3067\u306f\u3001\u30bf\u30b9\u30af\u51e6\u7406\u7d42\u4e86\u5f8c\u306b\u5b9f\u884c\u3059\u308b\u51e6\u7406\u3092\u66f8\u304d\u307e\u3059\u3002\u3053\u3053\u3067\u306f\u3001setListener()\u306b\u3066\u8a2d\u5b9a\u3057\u305f\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u51e6\u7406\u3092\u5b9f\u884c\u3055\u305b\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>package com.example.meshitero;\n\nimport androidx.appcompat.app.AppCompatActivity;\n\nimport android.graphics.Bitmap;\nimport android.os.Bundle;\nimport android.util.Log;\nimport android.widget.ImageView;\n\nimport java.text.SimpleDateFormat;\nimport java.util.Calendar;\nimport java.util.Date;\nimport java.util.Timer;\nimport java.util.TimerTask;\n\npublic class MainActivity extends AppCompatActivity {\n    private DownloadTask task = null;\n    private ImageView imageView = null;\n    private Timer timer = null;\n    private String url = \"https:\/\/taki-lab.site\/meshitero\/img\/time_%02d_%02d.jpg\";\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n        imageView = findViewById(R.id.imageView);\n        timer = new Timer();\n        timer.schedule(new MyTimerTask(), 0, 60000);\n    }\n\n    @Override\n    protected void onDestroy() {\n        task.setListener(null);\n        super.onDestroy();\n    }\n\n    private DownloadTask.Listener createListener() {\n        return new DownloadTask.Listener() {\n            @Override\n            public void onSuccess(Bitmap bmp) {\n                imageView.setImageBitmap(bmp);\n            }\n        };\n    }\n\n    private String getTimer() {\n        Calendar cTime = Calendar.getInstance();\n        int min = cTime.get(Calendar.MINUTE);\n        if(min &lt; 30) {\n            min = 0;\n        } else {\n            min = 30;\n        }\n        Log.d(\"debug\",String.format(url, cTime.get(Calendar.HOUR_OF_DAY), min));\n        return String.format(url, cTime.get(Calendar.HOUR_OF_DAY), min);\n    }\n\n    class MyTimerTask extends TimerTask {\n\n        @Override\n        public void run() {\n            task = new DownloadTask();\n            task.setListener(createListener());\n            task.execute(getTimer());\n        }\n    }\n}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?>\n&lt;androidx.constraintlayout.widget.ConstraintLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    xmlns:app=\"http:\/\/schemas.android.com\/apk\/res-auto\"\n    xmlns:tools=\"http:\/\/schemas.android.com\/tools\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    tools:context=\".MainActivity\">\n\n    &lt;ImageView\n        android:id=\"@+id\/imageView\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        app:layout_constraintBottom_toBottomOf=\"parent\"\n        app:layout_constraintEnd_toEndOf=\"parent\"\n        app:layout_constraintStart_toStartOf=\"parent\"\n        app:layout_constraintTop_toTopOf=\"parent\"\n        app:srcCompat=\"@android:color\/background_light\" \/>\n&lt;\/androidx.constraintlayout.widget.ConstraintLayout><\/code><\/pre>\n\n\n\n<p>MainlyActivity\u3067\u306f\u3001\u5185\u90e8\u30af\u30e9\u30b9\u306bTimerTask \u3092\u5b9f\u88c5\u3057\u305fMyTimerTask\u30af\u30e9\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u30bf\u30a4\u30de\u30fc\u51e6\u7406\u306f\u3053\u308c\u304c\u306a\u3044\u3068\u30c0\u30e1\u3089\u3057\u3044\u3002<\/p>\n\n\n\n<p>run()\u306b\u3001\u5b9f\u969b\u306b\u30bf\u30a4\u30de\u30fc\u51e6\u7406\u3067\u5b9f\u884c\u3055\u308c\u308b\u51e6\u7406\u3092\u66f8\u304d\u307e\u3059\u3002\u3053\u3053\u3067\u306f\u3001DownloadTask()\u3092\u5b9f\u884c\u3055\u305b\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>onCreate()\u3067\u306f\u3001timer\u30af\u30e9\u30b9\u3092\u4f7f\u3063\u3066 MyTimerTask \u3092\u30b9\u30b1\u30b8\u30e5\u30fc\u30ea\u30f3\u30b0\u3057\u3066\u3044\u307e\u3059\u3002\u7b2c\u4e8c\u5f15\u6570\u306f\u521d\u56de\u5b9f\u884c\u307e\u3067\u306e\u6642\u9593\u3001\u7b2c\u4e09\u5f15\u6570\u306b\u306f\u3001\u5b9f\u884c\u9593\u9694\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>setListener()\u306bcreateListener()\u30e1\u30bd\u30c3\u30c9\u3092\u6e21\u3059\u3053\u3068\u3067\u3001 MyTimerTask\u306e\u30bf\u30b9\u30af\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u305f\u3042\u3068\u3001 createListener()\u304c\u5b9f\u884c\u3055\u308c\u308b\u3088\u3046\u306b\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3053\u3053\u3067\u306f\u3001ImageView\u306b\u8aad\u307f\u8fbc\u3093\u3060\u753b\u50cf\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u6642\u9593\u53d6\u5f97\u306fCalendar\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002\u3053\u3061\u3089\u306e\u65b9\u304c\u63a8\u5968\u3055\u308c\u305f\u51e6\u7406\u3089\u3057\u3044\u3067\u3059\u3002<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Tech commit\u306e\u6311\u6226\u72b6\u8ab2\u984c\u3067\u300c\u7f8e\u4eba\u6642\u8a08\u306e\u3088\u3046\u306a\u3082\u306e\u300d\u304c\u3042\u3063\u305f\u306e\u3067\u3001Android\u30a2\u30d7\u30ea\u3067\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002 http:\/\/taki-lab.site\/meshitero\/app_debug.apk https:\/\/g &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=1632\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">\u3010\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u3011\u7f8e\u4eba\u6642\u8a08\u306e\u3088\u3046\u306a\u3082\u306e(Android\u7de8)<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"\u3010\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u3011\u7f8e\u4eba\u6642\u8a08\u306e\u3088\u3046\u306a\u3082\u306e(Android\u7de8)\n#TechCommit\n","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[134,3],"tags":[117],"class_list":["post-1632","post","type-post","status-publish","format-standard","hentry","category-android","category-3","tag-android"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-qk","jetpack-related-posts":[{"id":6847,"url":"https:\/\/taki-lab.site\/bocci\/?p=6847","url_meta":{"origin":1632,"position":0},"title":"\u3010UNITY\u3011GOOGLE PLAY\u30b9\u30c8\u30a2\u767b\u9332\u307e\u3067\u306e\u9053\uff08\u305d\u306e3\uff09","author":"taki","date":"2021\u5e749\u670815\u65e5","format":false,"excerpt":"\u305d\u306e2 https:\/\/taki-lab.site\/bocci\/?p=6842 \u6b21\u306e\u30a8\u30e9\u30fc\u306f\u3001 \u30d7\u30e9\u2026","rel":"","context":"\u51fa\u6765\u4e8b","block_context":{"text":"\u51fa\u6765\u4e8b","link":"https:\/\/taki-lab.site\/bocci\/?cat=9"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/09\/Screenshot-2021-09-14-171534.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/09\/Screenshot-2021-09-14-171534.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/09\/Screenshot-2021-09-14-171534.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/09\/Screenshot-2021-09-14-171534.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/09\/Screenshot-2021-09-14-171534.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/09\/Screenshot-2021-09-14-171534.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":6129,"url":"https:\/\/taki-lab.site\/bocci\/?p=6129","url_meta":{"origin":1632,"position":1},"title":"\u3010Unity\u3011Android\u3067\u5916\u90e8\u30d5\u30a1\u30a4\u30eb\u3092\u53d6\u308a\u8fbc\u3080\u51e6\u7406\u3002","author":"taki","date":"2021\u5e745\u670816\u65e5","format":false,"excerpt":"PC\u3067\u306f\u30d5\u30a1\u30a4\u30eb\u30b9\u30c8\u30ea\u30fc\u30e0\u3067\u8aad\u307f\u8fbc\u3080\u3053\u3068\u304c\u51fa\u6765\u305f\u306e\u3067\u3059\u304c\u3001 Android\u3067\u306f\u4f7f\u7528\u3067\u304d\u306a\u3044\u3053\u3068\u304c\u5224\u660e\u2026","rel":"","context":"Unity","block_context":{"text":"Unity","link":"https:\/\/taki-lab.site\/bocci\/?cat=165"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/05\/Screenshot_20210514-121503.png?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/05\/Screenshot_20210514-121503.png?resize=350%2C200 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/05\/Screenshot_20210514-121503.png?resize=525%2C300 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/05\/Screenshot_20210514-121503.png?resize=700%2C400 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/05\/Screenshot_20210514-121503.png?resize=1050%2C600 3x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/05\/Screenshot_20210514-121503.png?resize=1400%2C800 4x"},"classes":[]},{"id":1458,"url":"https:\/\/taki-lab.site\/bocci\/?p=1458","url_meta":{"origin":1632,"position":2},"title":"\u306a\u305cSIM\u30d5\u30ea\u30fc\u30b9\u30de\u30db\u3067\u306f\u7dca\u6025\u901f\u5831\u3092\u53d7\u8a3a\u3067\u304d\u306a\u3044\u306e\u304b\uff1f\u5bfe\u7b56\u306f\uff1f","author":"taki","date":"2019\u5e7410\u670825\u65e5","format":false,"excerpt":"\u81ea\u5206\u306f\u4ee5\u524d\u304b\u3089SIM\u30d5\u30ea\u30fc\u30b9\u30de\u30db\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u306e\u3067\u3001\u305d\u3046\u3044\u3048\u3070\u7dca\u6025\u901f\u5831\u306e\u30a2\u30e9\u30fc\u30e0\u9cf4\u3063\u305f\u3053\u3068\u7121\u3044\u306a\u3041\u3001\u2026","rel":"","context":"\u6280\u8853","block_context":{"text":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/10\/35b3bde730aa0661a4e4a8630092e553_m.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/10\/35b3bde730aa0661a4e4a8630092e553_m.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/10\/35b3bde730aa0661a4e4a8630092e553_m.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/10\/35b3bde730aa0661a4e4a8630092e553_m.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/10\/35b3bde730aa0661a4e4a8630092e553_m.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/10\/35b3bde730aa0661a4e4a8630092e553_m.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":3734,"url":"https:\/\/taki-lab.site\/bocci\/?p=3734","url_meta":{"origin":1632,"position":3},"title":"\u3010\u5b9f\u8cea\u5317\u6d77\u9053\u4e00\u5468\u3011GPS\u306e2\u70b9\u304b\u3089\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3002","author":"taki","date":"2020\u5e747\u670829\u65e5","format":false,"excerpt":"\u5b9f\u8cea\u5317\u6d77\u9053\u4e00\u5468\u30a2\u30d7\u30ea\u3068\u306f\uff1f \u5b9a\u671f\u7684\u306b\u30b9\u30de\u30db\u306eGPS\u306e\u4fe1\u53f7\u3092\u53d6\u5f97\u3057\u3001\u305d\u306e2\u70b9\u9593\u306e\u30c7\u30fc\u30bf\u304b\u3089\u79fb\u52d5\u8ddd\u96e2\u3092\u8a08\u2026","rel":"","context":"Android","block_context":{"text":"Android","link":"https:\/\/taki-lab.site\/bocci\/?cat=134"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot_20200729-093350.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot_20200729-093350.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot_20200729-093350.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot_20200729-093350.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot_20200729-093350.png?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":4544,"url":"https:\/\/taki-lab.site\/bocci\/?p=4544","url_meta":{"origin":1632,"position":4},"title":"Twitter\u306b\u30d5\u30ea\u30fc\u30c8\u3068\u3044\u3046\u6a5f\u80fd\u304c\u8ffd\u52a0\u3055\u308c\u305f\u3089\u3057\u3044\u304c\u3001\u307e\u305a\u306f\u5148\u306b\u3084\u308b\u3053\u3068\u304c\u3042\u308b\u3060\u308d\u3046\u3002\u203b\u8ffd\u8a18\u3042\u308a","author":"taki","date":"2020\u5e7411\u670812\u65e5","format":false,"excerpt":"Twitter\u3082\u30a4\u30f3\u30b9\u30bf\u5316\u304b\u3001\u3068\u63f6\u63c4\u3055\u308c\u3066\u3044\u307e\u3059\u3002 \u3053\u306e\u6a5f\u80fd\u3001\u3069\u3046\u3084\u3089iPhone\u30a2\u30d7\u30ea\u306e\u307f\u306e\u6a5f\u80fd\u3067\u2026","rel":"","context":"\u51fa\u6765\u4e8b","block_context":{"text":"\u51fa\u6765\u4e8b","link":"https:\/\/taki-lab.site\/bocci\/?cat=9"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1628,"url":"https:\/\/taki-lab.site\/bocci\/?p=1628","url_meta":{"origin":1632,"position":5},"title":"\u3010\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u3011\u7f8e\u4eba\u6642\u8a08\u306e\u3088\u3046\u306a\u3082\u306e(Web\u7de8)","author":"taki","date":"2019\u5e7411\u670811\u65e5","format":false,"excerpt":"Tech commit\u306e\u6311\u6226\u72b6\u8ab2\u984c\u3067\u300c\u7f8e\u4eba\u6642\u8a08\u306e\u3088\u3046\u306a\u3082\u306e\u300d\u304c\u3042\u3063\u305f\u306e\u3067\u3001\u307e\u305a\u306fJavascript\u2026","rel":"","context":"Web","block_context":{"text":"Web","link":"https:\/\/taki-lab.site\/bocci\/?cat=6"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/1632","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1632"}],"version-history":[{"count":2,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/1632\/revisions"}],"predecessor-version":[{"id":1634,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/1632\/revisions\/1634"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1632"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1632"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1632"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}