question
dict
answers
list
id
stringlengths
2
5
accepted_answer_id
stringlengths
2
5
popular_answer_id
stringlengths
2
5
{ "accepted_answer_id": null, "answer_count": 1, "body": "M5StackCPlusにプログラムをアップロードができません。\n\nMacからM5Stackが認識されていることは、下記の通り確認済みです。\n\n```\n\n $ system_profiler SPUSBDataType | grep M5\n M5stack:\n \n```\n\n[VCPドライバ](https://ftdichip.com/drivers/vcp-drivers/)は、`Mac OS X10.15 and macOS\n11/12`に対応した1.5.0をMacOS13にインストールしました。\n\n下記の通りデバイスが作成されていることを確認済みです。\n\n```\n\n $ ls /dev/{tty,cu}.* | tr '[0-9]' '*' 130 [] 17:46 ksaito:~\n /dev/cu.Bluetooth-Incoming-Port\n /dev/cu.usbserial-*****F*F*B\n /dev/tty.Bluetooth-Incoming-Port\n /dev/tty.usbserial-*****F*F*B\n \n```\n\n開発環境は、MacOSで、VSCode+PlatformIOを使って簡単なプログラムをビルドしました。\n\nplatformio.iniの2パターンでアップロードしたところ、いずれも失敗しました。 \nMacOS13でプログラムのアップロードが成功している事例があれば、情報いただけないでしょうか。\n\n## パターン1\n\nupload_portに`/dev/cu`を指定する。\n\n```\n\n [env:m5stack-core2]\n platform = espressif32\n board = m5stack-core2\n framework = arduino\n lib_deps = m5stack/M5Stack@^0.4.4\n upload_port = /dev/cu.usbserial-*****F*F*B\n \n```\n\nアップロード結果は、下記の通りで、M5StackCPlusがフリーズしました。\n\n```\n\n esptool.py v4.5.1\n Serial port /dev/cu.usbserial-*****F*F*B\n \n A fatal error occurred: Could not open /dev/cu.usbserial-*****F*F*B, the port doesn't exist\n *** [upload] Error 2\n ======================================= [FAILED] Took 2.08 seconds =======================================\n \n```\n\n## パターン2\n\nupload_portに`/dev/tty`を指定する。\n\n```\n\n [env:m5stack-core2]\n platform = espressif32\n board = m5stack-core2\n framework = arduino\n lib_deps = m5stack/M5Stack@^0.4.4\n upload_port = /dev/cu.usbserial-*****F*F*B\n \n```\n\nアップロード結果は、下記の通り\n\n```\n\n Serial port /dev/tty.usbserial-*****F*F*B\n Connecting.....\n Chip is ESP32-PICO-D4 (revision v1.0)\n Features: WiFi, BT, Dual Core, 240MHz, Embedded Flash, VRef calibration in efuse, Coding Scheme None\n Crystal is 40MHz\n Uploading stub...\n Running stub...\n Stub running...\n Changing baud rate to 460800\n Changed.\n \n A fatal error occurred: Unable to verify flash chip connection (No serial data received.).\n *** [upload] Error 2\n ====================================== [FAILED] Took 12.79 seconds ======================================\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-22T08:59:50.637", "favorite_count": 0, "id": "96012", "last_activity_date": "2023-08-23T01:37:24.273", "last_edit_date": "2023-08-22T09:29:02.423", "last_editor_user_id": "3060", "owner_user_id": "5285", "post_type": "question", "score": 1, "tags": [ "macos", "platformio", "m5stack" ], "title": "macOS 13 で M5StackCPlus にデータのアップロードができない", "view_count": 38 }
[ { "body": "解決しました。\n\n準備したデバイスと違うものを設定してプロジェクトを作成していたことが原因でした。\n\n今回、準備したデバイスは、M5StackC-plus1.1でした。 \n最初の設定と動作するようになった設定は、下記の通りです。\n\n設定 | 最初の設定 | 動作するようになった設定 \n---|---|--- \nNew Project - Board | `M5Stack Core2` | `M5Stack-C (M5Stack)` \nNew Project - Framework | Arduino | Arduino \nplatform.ini - lib_deps | `m5stack/M5Stack@^0.4.4` |\n`m5stack/M5StickCPlus@^0.0.9` \n \n`upload_port`の設定は、不要でPlatformIOのAdd M5Stackで`/dev/tty.*`を選択でアップロードされました。\n\nVCPドライバーがMacOS13で動作していないのかと考えましたが、1.5.0のドライバーで問題なく動作しました。 \nlib_depsは、PlatformIOの設定画面でたくさん表示され、上の方に表示されているM5Stackが共通のライブラリと勘違いしてしまいました。 \n準備したデバイスごとに、ライブラリが準備されているようです。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-23T01:37:24.273", "id": "96018", "last_activity_date": "2023-08-23T01:37:24.273", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "5285", "parent_id": "96012", "post_type": "answer", "score": 1 } ]
96012
null
96018
{ "accepted_answer_id": null, "answer_count": 0, "body": "Unityのnavmeshを利用して経路探索を行う処理を実装しています。 \n下記のNavigationウィンドウのAgentsタブ内にあるRadius項目をScriptから変更することはできのでしょうか? \n[![navmeshのNavigationのWindow](https://i.stack.imgur.com/PhpnG.png)](https://i.stack.imgur.com/PhpnG.png)\n\n迷路を想定しているため、壁はCarveとしており、NavMeshAgentのradiusを変更しても想定した効果は得られず困っています。\n\nよろしくお願いします。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-22T11:16:34.970", "favorite_count": 0, "id": "96013", "last_activity_date": "2023-08-22T11:16:34.970", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59546", "post_type": "question", "score": 0, "tags": [ "unity3d" ], "title": "UnityのNavmeshのAgent Radiusの値をスクリプトから変更したい", "view_count": 9 }
[]
96013
null
null
{ "accepted_answer_id": "96016", "answer_count": 1, "body": "xyパッケージを使ってuplatexでビルドすると以下のような警告がでます。\n\n> The produced DVI file is NOT PORTABLE. Convert it with \n> dvipdfm(x) to the PDF format but do not expect the DVI file itself to be \n> displayed correctly.\n\n実行したソースファイルは以下の通りです。\n\n```\n\n \\documentclass[uplatex, dvipdfmx]{jsarticle}\n \\usepackage[all]{xy}\n \\begin{document}\n \\xymatrix{\n X \\ar[r]^f & Y \\ar[r]^g & Z \n }\n \\end{document}\n \n```\n\n\\documentclass{article}にすると警告は出ないので、xyと日本語環境の何かの相性が悪いようです。 \nPDFは期待通りに出力されますし、エラーではないので無視し続けても構わないのですが、可能なら警告が出ないようにしたいです。どうするのが良いでしょうか?", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-22T14:20:49.130", "favorite_count": 0, "id": "96015", "last_activity_date": "2023-08-22T15:11:55.167", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "47192", "post_type": "question", "score": 3, "tags": [ "latex" ], "title": "xyパッケージを使うと警告がでてしまう", "view_count": 80 }
[ { "body": "エンジンは uplatex を使ってそのあと dvipdfmx を使っていると想定します。警告の内容は「DVI がドライバ依存で dvipdfmx\n専用になっているので注意せよ」ということですが,結論としては「気にしなくて良い」と思います。警告を消す手段はないので,諦める・あるいは・xy\nパッケージ著者に警告を消す手段を要求する(直接メール)等になります。\n\n * uplatex + dvipdfmx という組み合わせを使う限り,問題は起きません。\n * もしも途中の DVI を dviout (Windows) あるいは xdvi (Unix) などのビューアで見ようとすると,あるいは dvips で PostScript に変換しようとすると,不都合が起きるでしょう。しかし,dvipdfmx で PDF にしてしまえば関係ありません。\n\n昔は DVI といえば DeVice-Independent\nすなわちドライバ非依存でしたが,下記の理由により最近は形骸化してしまっています:というのも,ユーザの皆さんが各自で決めた一定の手順(今回ならば\nuplatex + dvipdfmx)で TeX → PDF に変換することが多くなったためです。\n\n* * *\n\n「xyと日本語環境の何かの相性が悪い」というよりは「documentclass に dvipdfmx オプションをつけると xy\nパッケージが警告を出す」ということのようです。例えば\n\n```\n\n \\documentclass{article}\n \n```\n\nでは警告が出ず\n\n```\n\n \\documentclass[dvipdfmx]{article}\n \n```\n\nでは警告が出ます。逆に\n\n```\n\n \\documentclass[uplatex]{jsarticle}\n \n```\n\nでも警告は出ません。\n\nなぜ xy パッケージが警告を出すのかというと,xy パッケージが「dvipdfmx オプションを指定すると,dvipdfmx\nにしか解釈できない調整コード(中身の意味は難しいので割愛するが,例えば PDF に変換した時の線の太さなどの指示)を DVI\nファイルに出力する」といういわゆるドライバ依存の挙動をするからです。graphicx, color, hyperref\nといった有名かつよく使われるパッケージが,ドライバ依存の代表格です。さらに言えば,今の時代(2020年以降)は「何もパッケージを読み込まない普通の\nLaTeX」すらドライバ依存性があります。そんな 2020 年代に xy パッケージ(最終更新は 2013\n年なので割と古い)だけが警告を出すのはうるさく見えるかもしれませんが,気にしないのが得策でしょう。\n\n参考:[Online.tex 2020](https://connpass.com/event/188075/) 講演資料[「最近の LaTeX\nは○○」](https://aminophen.github.io/slide/hytexonline20.pdf)", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-22T15:05:40.450", "id": "96016", "last_activity_date": "2023-08-22T15:11:55.167", "last_edit_date": "2023-08-22T15:11:55.167", "last_editor_user_id": "27160", "owner_user_id": "27160", "parent_id": "96015", "post_type": "answer", "score": 4 } ]
96015
96016
96016
{ "accepted_answer_id": "96029", "answer_count": 2, "body": "C#でUDP Clientを使って通信を行おうとしています。 \ndevice Aに以下のようなポート設定でSendすると、レスポンスとしてlocalport=47808,\ndestport=57575で返ってきていたため、udpのRecieveできるのですが、device Bでは固定でlocalport=47808,\ndestport=47808で返ってきます。 \nこの場合、device Bからのレスポンスを受け取る方法はあるのでしょうか?\n\nともに送信は成功しているのですが、device Bからの受信のみ失敗(timeout)してしまいます。\n\n送信 : host --->(57575)---(47808)---> device A \n受信 : host <\\---(57575)---(47808)<\\--- device A\n\n送信 : host --->(57575)---(47808)---> device B \n受信 : host <\\---(47808)---(47808)<\\--- device B\n\n```\n\n var localport = 57575;\n var destport = 47808;\n var destIpAddr = \"192.168.0.1\";\n \n using (var udp= new UdpClient(localport))\n {\n udp.Send(sendBytes, len, destIpAddr, destPort);\n System.Net.IPEndPoint endPoint = null;\n var recvBytes = udp.Receive(ref endPoint);\n }\n \n```", "comment_count": 4, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-23T00:59:24.887", "favorite_count": 0, "id": "96017", "last_activity_date": "2023-08-24T15:18:38.130", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "12388", "post_type": "question", "score": 1, "tags": [ "c#", "udp" ], "title": "UDP ClientでSend時の指定ポート以外でレスポンスを受け取ることはできるのか?", "view_count": 160 }
[ { "body": "sayuri さんがコメントしてらっしゃいますが device A に対して 47808 ポートから送信したら 47808 に返してくれる気もします。 \nそうでない場合は、どちらでも受信できるように作ることも出来ます。\n\n```\n\n const int localPort1 = 57575;\n const int localPort2 = 47808;\n \n static byte[] SendRecv(string destIpAddr, int destPort, \n byte[] sendBytes, int len) {\n byte[] recvBytes;\n using (var udp1 = new UdpClient(localPort1))\n using (var udp2 = new UdpClient(localPort2)) {\n // Connect するかどうかは要件しだい\n udp1.Connect(destIpAddr, destPort);\n udp2.Connect(destIpAddr, destPort);\n var t1 = udp1.ReceiveAsync();\n var t2 = udp2.ReceiveAsync();\n udp1.Send(sendBytes, len);\n var index = Task.WaitAny(t1, t2);\n if (index == 0) {\n Console.WriteLine($\"{localPort1} から受信しました。\");\n recvBytes = t1.Result.Buffer;\n CancelIo(udp2, t2);\n } else {\n Console.WriteLine($\"{localPort2} から受信しました。\");\n recvBytes = t2.Result.Buffer;\n CancelIo(udp1, t1);\n }\n }\n return recvBytes;\n }\n \n // 非同期 IO のキャンセル\n static void CancelIo(UdpClient udp, Task task) {\n CancelIo(udp.Client.Handle);\n try {\n task.Wait();\n } catch (AggregateException ex) \n when (ex.InnerException is SocketException) {\n var port = ((IPEndPoint)udp.Client.LocalEndPoint).Port;\n Console.WriteLine($\"{port} の受信をキャンセルしました。\");\n }\n }\n \n [DllImport(\"kernel32.dll\")]\n [return: MarshalAs(UnmanagedType.Bool)]\n static extern bool CancelIo(IntPtr hFile);\n \n```", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-24T00:05:27.073", "id": "96029", "last_activity_date": "2023-08-24T00:05:27.073", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "50741", "parent_id": "96017", "post_type": "answer", "score": 3 }, { "body": "> 諸事情がありlocalport=47808は使えない環境なのです\n\nそうであれば\n\n> 受信 : host <\\---(47808)---(47808)<\\--- device B\n\nの受信は諦めてください。47808にbindしない限り、47808宛のメッセージを受信することはできません。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-24T15:18:38.130", "id": "96036", "last_activity_date": "2023-08-24T15:18:38.130", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "4236", "parent_id": "96017", "post_type": "answer", "score": 1 } ]
96017
96029
96029
{ "accepted_answer_id": null, "answer_count": 0, "body": "初歩的な質問で恐縮です。 \nUnityで自作したVRをQuest2にビルドして、PCに繋がなくても単体でプレイするにはどうすればよいのでしょうか。 \n自分で調べた限りでは「 **SIDEQUEST** 」というものを利用すれば可能とあったのですが、それは正規の方法なのでしょうか。 \nよろしくお願いします。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-23T06:30:47.107", "favorite_count": 0, "id": "96019", "last_activity_date": "2023-08-23T06:30:47.107", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59349", "post_type": "question", "score": 0, "tags": [ "unity3d", "unity2d" ], "title": "Unityで自作したVRをQuest2単体で実行できるようにしたい", "view_count": 18 }
[]
96019
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "Lambdaで下記のV3のコードに変更しましたが正常に動作しません。 \nご教示いただければ幸いです。\n\nエラー内容は下記となります。\n\n```\n\n 2023-08-31T01:31:53.751Z undefined ERROR Uncaught Exception {\n \"errorType\": \"ReferenceError\",\n \"errorMessage\": \"require is not defined in ES module scope, you can use import instead\",\n \"stack\": [\n \"ReferenceError: require is not defined in ES module scope, you can use import instead\",\n \" at file:///var/task/index.mjs:2:14\",\n \" at ModuleJob.run (node:internal/modules/esm/module_job:194:25)\"\n ]\n }\n \n```\n\n**V2**\n\n```\n\n // AWSのSDKを使う宣言\n const aws_sdk = require('aws-sdk');\n // S3を使う宣言\n const s3 = new aws_sdk.S3();\n const bucket = 'abcd-test01-system';\n // フォルダが階層の場合は\"/\"で連結 例:folder1/folder2/folder3/\n // 最後は\"/\"で終了する\n const key = 'calendar/';\n \n exports.handler = async function(event, context) {\n \n console.log(JSON.stringify(event))\n \n // オペレーション時間の取得\n // objectNameはAmazon Connectで指定した値を受け取ります。\n // 拡張子も含めて指定 例:operation-time.txt\n // s3にGetObject関数でアクセスするのでこの権限をLambdaに付与する必要がある。 \n const data = await s3.getObject({Bucket: bucket,Key: key + event.Details.Parameters.objectName}).promise();\n const operationTime = data.Body.toString();\n var lines = operationTime.split('\\n');\n \n // コメント削除及び、余分な空白削除\n lines = lines.map( line => {\n return line.replace(/#[\\s\\S]*$/g, '').replace(/\\s+$/g, '');\n });\n \n // 無効(空白)行の削除\n lines = lines.filter( line => {\n return line != '';\n });\n \n // 時間内かどうかのチェック\n const IsOperationTime = CheckInTime(lines);\n \n return { IsOperationTime: IsOperationTime };\n }\n \n function CheckInTime(lines) {\n // 現在時間\n const now = new Date();\n const month = now.getMonth() + 1;\n const day = now.getDate();\n \n // 祝日指定の抽出\n const holidays = lines.filter(line => {\n return line.split(',')[0].split('/').length == 2;\n });\n \n // 祝日チェック\n let flg = true; \n holidays.forEach( line => {\n const tmp = line.split(',');\n const date = tmp[0].split('/');\n if(date.length == 2){\n if(month == date[0] && day == date[1]){\n flg = false;\n }\n }\n })\n return flg;\n }\n \n```\n\n**V3**\n\n```\n\n // AWSのSDKを使う宣言\n const {S3} = require('@aws-sdk/client-s3');\n // S3を使う宣言\n const s3Client = new S3({});\n const bucket = 'abcd-test01-system';\n // フォルダが階層の場合は\"/\"で連結 例:folder1/folder2/folder3/\n // 最後は\"/\"で終了する\n const key = 'calendar/';\n \n exports.handler = async function(event, context) {\n \n console.log(JSON.stringify(event))\n \n // オペレーション時間の取得\n // objectNameはAmazon Connectで指定した値を受け取ります。\n // 拡張子も含めて指定 例:operation-time.txt\n // s3にGetObject関数でアクセスするのでこの権限をLambdaに付与する必要がある。 \n const data = await s3Client.getObject({Bucket: bucket,Key: key + event.Details.Parameters.objectName}).promise();\n const operationTime = data.Body.toString();\n var lines = operationTime.split('\\n');\n \n // コメント削除及び、余分な空白削除\n lines = lines.map( line => {\n return line.replace(/#[\\s\\S]*$/g, '').replace(/\\s+$/g, '');\n });\n \n // 無効(空白)行の削除\n lines = lines.filter( line => {\n return line != '';\n });\n \n // 時間内かどうかのチェック\n const IsOperationTime = CheckInTime(lines);\n \n return { IsOperationTime: IsOperationTime };\n }\n \n function CheckInTime(lines) {\n // 現在時間\n const now = new Date();\n const month = now.getMonth() + 1;\n const day = now.getDate();\n \n // 祝日指定の抽出\n const holidays = lines.filter(line => {\n return line.split(',')[0].split('/').length == 2;\n });\n \n // 祝日チェック\n let flg = true; \n holidays.forEach( line => {\n const tmp = line.split(',');\n const date = tmp[0].split('/');\n if(date.length == 2){\n if(month == date[0] && day == date[1]){\n flg = false;\n }\n }\n })\n return flg;\n }\n \n```", "comment_count": 3, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-23T07:06:57.100", "favorite_count": 0, "id": "96020", "last_activity_date": "2023-08-31T03:00:09.917", "last_edit_date": "2023-08-31T03:00:09.917", "last_editor_user_id": "3060", "owner_user_id": "55460", "post_type": "question", "score": 0, "tags": [ "javascript", "aws-lambda", "rx-javascript" ], "title": "Lambda SDK for JavaScriptのV3移行に伴いコードを変更したが正常に動作しない", "view_count": 169 }
[]
96020
null
null
{ "accepted_answer_id": null, "answer_count": 1, "body": "Qiita にAPIを使って投稿したいのですがうまくいきません。 \nどなたか御教授をお願いできませんでしょうか?\n\n```\n\n <?php\n class QiitaApiV2 {\n \n public $QiitaToken ;\n public $BASE ;\n \n function __construct($P=FALSE){\n $this->QiitaToken = '????????????????????????????????????????' ;\n $this->BASE = 'https://qiita.com' ;\n }\n \n function CallApi($json){\n $url = $this->BASE . '/api/v2/items' ;\n \n $ch = curl_init() ;\n \n $headers = [\n 'Authorization: Bearer '. $this->QiitaToken,\n 'Content-type: application/json',\n ] ;\n \n curl_setopt($ch,CURLOPT_URL,$url) ;\n curl_setopt($ch,CURLOPT_CUSTOMREQUEST,'POST') ;\n curl_setopt($ch,CURLOPT_POST,true) ;\n curl_setopt($ch,CURLOPT_POSTFIELDS,json_encode($json)) ;\n curl_setopt($ch,CURLOPT_HTTPHEADER,$headers) ;\n curl_setopt($ch, CURLOPT_HEADER, 1);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);\n \n $payload = curl_exec($ch) ;\n \n curl_close($ch) ;\n return $payload ;\n }\n }\n \n if($qiita = new QiitaApiV2()){\n $json = [\n 'body' => '# Example',\n 'coediting' => false ,\n 'private' => false,\n 'tags' => [\n [\n 'name' => 'PHP',\n 'versions' => ['8.2.1']\n ]\n ],\n 'title' => 'Example title',\n 'tweet' => false,\n // 'organization_url_name' => 'qiita-inc', //エラーの原因箇所\n 'slide' => false ,\n 'id' => false ,\n ] ;\n echo $qiita->CallApi($json) ;\n }\n \n```\n\n実行結果\n\n```\n\n HTTP/2 404\n date: Wed, 23 Aug 2023 07:51:25 GMT\n content-type: application/json\n server: nginx\n rate-limit: 1000\n rate-remaining: 992\n rate-reset: 1692780154\n vary: Origin\n x-request-id: eb08ef99-008a-47f5-9668-517577209071\n x-runtime: 0.131084\n strict-transport-security: max-age=2592000\n \n {\"message\":\"Not found\",\"type\":\"not_found\"}\n \n```\n\n参考URL(<https://qiita.com/api/v2/docs>)", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-23T07:57:32.613", "favorite_count": 0, "id": "96021", "last_activity_date": "2023-08-23T08:18:29.447", "last_edit_date": "2023-08-23T08:14:34.587", "last_editor_user_id": "59393", "owner_user_id": "59393", "post_type": "question", "score": 0, "tags": [ "php" ], "title": "Qiitaへの投稿をPHPからAPIで実行すると not_found エラーになってしまう", "view_count": 50 }
[ { "body": "organization_url_name の例として引用されている 'qiita-inc' をそのまま指定するとエラーになります。\n\n```\n\n organization_url_name\n 記事のOrganization の url_name を表します。\n Example: \"qiita-inc\"\n Type: string, null\n \n```\n\n必須の項目ではないので指定をコメントアウトすればエラーがでなくなりました。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-23T08:18:29.447", "id": "96024", "last_activity_date": "2023-08-23T08:18:29.447", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59393", "parent_id": "96021", "post_type": "answer", "score": 0 } ]
96021
null
96024
{ "accepted_answer_id": null, "answer_count": 1, "body": "現在、Jetson\nNanoにwebカメラを接続してリアルタイムで顔認識をすることを目標としています。OSはLinuxです。顔認識にはOpenCVを利用してPythonでコードを記述し、プログラムをターミナル上で実行して顔認識を行いたいのですがうまくいきませんでした。以下が実行したコードとなります。\n\n```\n\n # coding: utf-8\n import subprocess\n import cv2\n \n # GStreamerコマンド\n command = (\n \"gst-launch-1.0 nvarguscamerasrc ! \"\n \"video/x-raw(memory:NVMM),width=1280,height=720,framerate=60/90,format=NV12 ! \"\n \"nvvidconv ! video/x-raw,width=640,height=480 ! \"\n \"nvvidconv ! nvegltransform ! nveglglessink -e\"\n )\n \n # カメラ起動\n camera_process = subprocess.Popen(command, shell=True, stdin=subprocess.PIPE)\n \n # OpenCVを使用してカメラからの映像をキャプチャ\n cap = cv2.VideoCapture(\"nvcamerasrc ! video/x-raw(memory:NVMM),width=640,height=480,format=NV12,framerate=30/1 ! nvvidconv flip-method=0 ! video/x-raw,width=640,height=480,format=BGRx ! videoconvert ! video/x-raw,format=BGR ! appsink\", cv2.CAP_GSTREAMER)\n \n # 顔認識のためのHaarcascades分類器をロード\n face_cascade = cv2.CascadeClassifier(cv2.data.haarcascades + \"haarcascade_frontalface_default.xml\")\n \n while True:\n ret, frame = cap.read() # フレームをキャプチャ\n \n if not ret:\n break\n \n gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) # グレースケールに変換\n faces = face_cascade.detectMultiScale(gray, scaleFactor=1.1, minNeighbors=5, minSize=(30, 30)) # 顔を検出\n \n # 検出された顔に矩形を描画\n for (x, y, w, h) in faces:\n cv2.rectangle(frame, (x, y), (x + w, y + h), (255, 0, 0), 2)\n \n # 画面に表示\n cv2.imshow('Face Detection', frame)\n \n if cv2.waitKey(1) & 0xFF == ord('q'): # 'q'キーでループを抜ける\n break\n \n # 終了処理\n cap.release()\n cv2.destroyAllWindows()\n camera_process.kill() # GStreamerプロセスを終了\n \n```\n\n構想としては、webカメラを起動するコマンド(6行目辺りからのcommandの中身)をsubprocessを利用して実行後、OpenCVを使用してカメラからの映像をキャプチャして顔認識を行う流れを予定していたのですが、ターミナルで実行後、6行目のcommand\n= の部分に構文エラーがあるとエラーメッセージが出てしまいました。\n\nそこで教えていただきたいのは、\n\n 1. 6行目の構文エラーの解決方法と、GStreamerの使い方はこれで合っているのか\n 2. このプログラムでリアルタイムの顔認識は実現できるか\n 3. 1,2に問題がないにもかかわらず実行できない場合、どのような問題が考えられるか、またその対処法\n 4. 上記のコード以外でリアルタイムの顔認識を行う手順\n\nについて教えてください。\n\npython初心者ですので、できるだけかみ砕いた説明をよろしくお願いいたします。 \nつたない文章申し訳ありません。", "comment_count": 2, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-23T07:58:01.390", "favorite_count": 0, "id": "96022", "last_activity_date": "2023-08-23T09:12:15.217", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59553", "post_type": "question", "score": 0, "tags": [ "python", "linux", "opencv", "subprocess" ], "title": "Jetson Nanoでlinux環境のもとOpenCVを使ってPythonで顔認識をする方法を教えてください。", "view_count": 96 }
[ { "body": "気になった点を挙げると…\n\n * `command` に代入しているコマンドですが、実際には一行で実行されるはずなので手っ取り早くは定義も一行にしてみる\n * `!` を含むので、ダブルクォートではなくシングルクォートで括ってみる\n * もし配列として定義しているつもりであれば、要素の区切りに`,` が必要\n\n修正例:\n\n```\n\n command = (\n 'gst-launch-1.0 nvarguscamerasrc ! ',\n 'video/x-raw(memory:NVMM),width=1280,height=720,framerate=60/90,format=NV12 ! ',\n 'nvvidconv ! video/x-raw,width=640,height=480 ! ',\n 'nvvidconv ! nvegltransform ! nveglglessink -e'\n )\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-23T09:12:15.217", "id": "96026", "last_activity_date": "2023-08-23T09:12:15.217", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "3060", "parent_id": "96022", "post_type": "answer", "score": 1 } ]
96022
null
96026
{ "accepted_answer_id": null, "answer_count": 0, "body": "Googleフォームの送信時に、sendEmailメソッドを使用して特定のメールアドレスに通知メールを送信するようにしています。 \n現在はフォーム(およびスクリプト)の作成者Aのメールアドレスから通知されているのですが、送信元のアドレスを変更することは可能でしょうか。 \n送信元アドレスをfromオプションを使用して設定はできましたが、フォーム送信者以外を設定したところ\"ReferenceError: options is\nnot defined\"が発生してしまいます。 \n(フォーム送信アカウントのアドレス・エイリアスを指定できる...?)\n\nオーナーの変更は試したのですがうまくいかず、フォーム実行者と関係のないメールアドレスから通知を送る方法についてご教示いただければと思います。\n\nスクリプトは以下になります。\n\n```\n\n function sendform(e){\n var items = e.response.getItemResponses();\n var msg = '';\n for (var i = 0; i < items.length; i++) {\n var item = items[i];\n var q = item.getItem().getTitle();\n var a = item.getResponse();\n msg += q + ':' + a + '\\n\\n';\n }\n const options = { from: '送信元メールアドレス' };\n GmailApp.sendEmail('送信先メールアドレス', 'メール件名', msg, options);\n }\n \n```", "comment_count": 4, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-23T09:42:11.303", "favorite_count": 0, "id": "96027", "last_activity_date": "2023-08-23T09:42:11.303", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59558", "post_type": "question", "score": 0, "tags": [ "google-apps-script", "form", "gmail-api" ], "title": "sendEmailメソッドの送信元アドレス指定方法について", "view_count": 67 }
[]
96027
null
null
{ "accepted_answer_id": null, "answer_count": 1, "body": "ros noeticでSLAMをするためにcartographerを使用したかったのでコンパイルを行ったが下記のようなエラーが出る.\n\n```\n\n ## ubuntu@ubuntu:~/ros1_ws$ catkin build\n \n ## Profile: default\n Extending: [cached] /opt/ros/noetic:/home/ubuntu/ydlidar_ros2_ws/install/ydlidar_ros2_driver\n Workspace: /home/ubuntu/ros1_ws\n \n ## Build Space: [exists] /home/ubuntu/ros1_ws/build\n Devel Space: [exists] /home/ubuntu/ros1_ws/devel\n Install Space: [unused] /home/ubuntu/ros1_ws/install\n Log Space: [exists] /home/ubuntu/ros1_ws/logs\n Source Space: [exists] /home/ubuntu/ros1_ws/src\n DESTDIR: [unused] None\n \n ## Devel Space Layout: linked\n Install Space Layout: None\n \n ## Additional CMake Args: None\n Additional Make Args: None\n Additional catkin Make Args: None\n Internal Make Job Server: True\n Cache Job Environments: False\n \n ## Buildlisted Packages: None\n Skiplisted Packages: None\n \n ## Workspace configuration appears valid.\n \n [build] Found 4 packages in 0.0 seconds.\n \n [build] Package table is up to date.\n \n Starting >>> cartographer\n \n Starting >>> cartographer_ros_msgs\n \n Finished <<< cartographer_ros_msgs [ 7.4 seconds ]\n \n Finished <<< cartographer [ 28.5 seconds ]\n \n Starting >>> cartographer_ros\n \n ---\n \n Errors << cartographer_ros:make /home/ubuntu/ros1_ws/logs/cartographer_ros/build.make.001.log\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/ros_map_writing_points_processor.h:25,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:37:\n /home/ubuntu/ros1_ws/devel/include/cartographer/mapping/proto/probability_grid_range_data_inserter_options_2d.pb.h:68:7: error: redefinition of ‘class cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D’\n 68 | class ProbabilityGridRangeDataInserterOptions2D : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:cartographer.mapping.proto.ProbabilityGridRangeDataInserterOptions2D) */ {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/range_data_inserter_options.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/submaps_options_2d.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/local_trajectory_builder_options_2d.pb.h:35,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/trajectory_builder_options.pb.h:35,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h:23,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/probability_grid_range_data_inserter_options_2d.pb.h:68:7: note: previous definition of ‘class cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D’\n 68 | class ProbabilityGridRangeDataInserterOptions2D : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:cartographer.mapping.proto.ProbabilityGridRangeDataInserterOptions2D) */ {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/ros_map_writing_points_processor.h:25,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:37:\n /home/ubuntu/ros1_ws/devel/include/cartographer/mapping/proto/probability_grid_range_data_inserter_options_2d.pb.h:195:13: error: redefinition of ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::clear_hit_probability()’\n 195 | inline void ProbabilityGridRangeDataInserterOptions2D::clear_hit_probability() {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/range_data_inserter_options.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/submaps_options_2d.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/local_trajectory_builder_options_2d.pb.h:35,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/trajectory_builder_options.pb.h:35,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h:23,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/probability_grid_range_data_inserter_options_2d.pb.h:195:13: note: ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::clear_hit_probability()’ previously defined here\n 195 | inline void ProbabilityGridRangeDataInserterOptions2D::clear_hit_probability() {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/ros_map_writing_points_processor.h:25,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:37:\n /home/ubuntu/ros1_ws/devel/include/cartographer/mapping/proto/probability_grid_range_data_inserter_options_2d.pb.h:198:15: error: redefinition of ‘double cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::hit_probability() const’\n 198 | inline double ProbabilityGridRangeDataInserterOptions2D::hit_probability() const {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/range_data_inserter_options.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/submaps_options_2d.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/local_trajectory_builder_options_2d.pb.h:35,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/trajectory_builder_options.pb.h:35,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h:23,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/probability_grid_range_data_inserter_options_2d.pb.h:198:15: note: ‘double cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::hit_probability() const’ previously defined here\n 198 | inline double ProbabilityGridRangeDataInserterOptions2D::hit_probability() const {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/ros_map_writing_points_processor.h:25,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:37:\n /home/ubuntu/ros1_ws/devel/include/cartographer/mapping/proto/probability_grid_range_data_inserter_options_2d.pb.h:202:13: error: redefinition of ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::set_hit_probability(double)’\n 202 | inline void ProbabilityGridRangeDataInserterOptions2D::set_hit_probability(double value) {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/range_data_inserter_options.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/submaps_options_2d.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/local_trajectory_builder_options_2d.pb.h:35,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/trajectory_builder_options.pb.h:35,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h:23,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/probability_grid_range_data_inserter_options_2d.pb.h:202:13: note: ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::set_hit_probability(double)’ previously defined here\n 202 | inline void ProbabilityGridRangeDataInserterOptions2D::set_hit_probability(double value) {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/ros_map_writing_points_processor.h:25,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:37:\n /home/ubuntu/ros1_ws/devel/include/cartographer/mapping/proto/probability_grid_range_data_inserter_options_2d.pb.h:209:13: error: redefinition of ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::clear_miss_probability()’\n 209 | inline void ProbabilityGridRangeDataInserterOptions2D::clear_miss_probability() {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/range_data_inserter_options.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/submaps_options_2d.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/local_trajectory_builder_options_2d.pb.h:35,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/trajectory_builder_options.pb.h:35,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h:23,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/probability_grid_range_data_inserter_options_2d.pb.h:209:13: note: ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::clear_miss_probability()’ previously defined here\n 209 | inline void ProbabilityGridRangeDataInserterOptions2D::clear_miss_probability() {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/ros_map_writing_points_processor.h:25,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:37:\n /home/ubuntu/ros1_ws/devel/include/cartographer/mapping/proto/probability_grid_range_data_inserter_options_2d.pb.h:212:15: error: redefinition of ‘double cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::miss_probability() const’\n 212 | inline double ProbabilityGridRangeDataInserterOptions2D::miss_probability() const {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/range_data_inserter_options.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/submaps_options_2d.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/local_trajectory_builder_options_2d.pb.h:35,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/trajectory_builder_options.pb.h:35,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h:23,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/probability_grid_range_data_inserter_options_2d.pb.h:212:15: note: ‘double cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::miss_probability() const’ previously defined here\n 212 | inline double ProbabilityGridRangeDataInserterOptions2D::miss_probability() const {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/ros_map_writing_points_processor.h:25,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:37:\n /home/ubuntu/ros1_ws/devel/include/cartographer/mapping/proto/probability_grid_range_data_inserter_options_2d.pb.h:216:13: error: redefinition of ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::set_miss_probability(double)’\n 216 | inline void ProbabilityGridRangeDataInserterOptions2D::set_miss_probability(double value) {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/range_data_inserter_options.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/submaps_options_2d.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/local_trajectory_builder_options_2d.pb.h:35,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/trajectory_builder_options.pb.h:35,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h:23,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/probability_grid_range_data_inserter_options_2d.pb.h:216:13: note: ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::set_miss_probability(double)’ previously defined here\n 216 | inline void ProbabilityGridRangeDataInserterOptions2D::set_miss_probability(double value) {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/ros_map_writing_points_processor.h:25,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:37:\n /home/ubuntu/ros1_ws/devel/include/cartographer/mapping/proto/probability_grid_range_data_inserter_options_2d.pb.h:223:13: error: redefinition of ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::clear_insert_free_space()’\n 223 | inline void ProbabilityGridRangeDataInserterOptions2D::clear_insert_free_space() {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/range_data_inserter_options.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/submaps_options_2d.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/local_trajectory_builder_options_2d.pb.h:35,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/trajectory_builder_options.pb.h:35,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h:23,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/probability_grid_range_data_inserter_options_2d.pb.h:223:13: note: ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::clear_insert_free_space()’ previously defined here\n 223 | inline void ProbabilityGridRangeDataInserterOptions2D::clear_insert_free_space() {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/ros_map_writing_points_processor.h:25,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:37:\n /home/ubuntu/ros1_ws/devel/include/cartographer/mapping/proto/probability_grid_range_data_inserter_options_2d.pb.h:226:13: error: redefinition of ‘bool cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::insert_free_space() const’\n 226 | inline bool ProbabilityGridRangeDataInserterOptions2D::insert_free_space() const {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/range_data_inserter_options.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/submaps_options_2d.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/local_trajectory_builder_options_2d.pb.h:35,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/trajectory_builder_options.pb.h:35,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h:23,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/probability_grid_range_data_inserter_options_2d.pb.h:226:13: note: ‘bool cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::insert_free_space() const’ previously defined here\n 226 | inline bool ProbabilityGridRangeDataInserterOptions2D::insert_free_space() const {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/ros_map_writing_points_processor.h:25,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:37:\n /home/ubuntu/ros1_ws/devel/include/cartographer/mapping/proto/probability_grid_range_data_inserter_options_2d.pb.h:230:13: error: redefinition of ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::set_insert_free_space(bool)’\n 230 | inline void ProbabilityGridRangeDataInserterOptions2D::set_insert_free_space(bool value) {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/range_data_inserter_options.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/submaps_options_2d.pb.h:34,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/local_trajectory_builder_options_2d.pb.h:35,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/trajectory_builder_options.pb.h:35,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h:23,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/mapping/proto/2d/probability_grid_range_data_inserter_options_2d.pb.h:230:13: note: ‘void cartographer::mapping::proto::ProbabilityGridRangeDataInserterOptions2D::set_insert_free_space(bool)’ previously defined here\n 230 | inline void ProbabilityGridRangeDataInserterOptions2D::set_insert_free_space(bool value) {\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.h:31,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:17:\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/map_builder_bridge.h:94:57: error: ‘TrajectoryState’ is not a member of ‘cartographer::mapping::PoseGraphInterface’\n 94 | ::cartographer::mapping::PoseGraphInterface::TrajectoryState>\n | ^~~~~~~~~~~~~~~\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/map_builder_bridge.h:94:57: error: ‘TrajectoryState’ is not a member of ‘cartographer::mapping::PoseGraphInterface’\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/map_builder_bridge.h:94:72: error: template argument 2 is invalid\n 94 | ::cartographer::mapping::PoseGraphInterface::TrajectoryState>\n | ^\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/map_builder_bridge.h:94:72: error: template argument 4 is invalid\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:17:\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.h:176:54: error: ‘TrajectoryState’ is not a member of ‘cartographer::mapping::PoseGraphInterface’\n 176 | cartographer::mapping::PoseGraphInterface::TrajectoryState>&\n | ^~~~~~~~~~~~~~~\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.h:176:54: error: ‘TrajectoryState’ is not a member of ‘cartographer::mapping::PoseGraphInterface’\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.h:176:69: error: template argument 1 is invalid\n 176 | cartographer::mapping::PoseGraphInterface::TrajectoryState>&\n | ^\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.h:176:69: error: template argument 2 is invalid\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.h:176:69: error: template argument 3 is invalid\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:57:50: error: ‘TrajectoryState’ in ‘class cartographer::mapping::PoseGraphInterface’ does not name a type\n 57 | ::cartographer::mapping::PoseGraphInterface::TrajectoryState;\n | ^~~~~~~~~~~~~~~\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:77:43: error: ‘TrajectoryState’ does not name a type; did you mean ‘TrajectoryOptions’?\n 77 | std::string TrajectoryStateToString(const TrajectoryState trajectory_state) {\n | ^~~~~~~~~~~~~~~\n | TrajectoryOptions\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc: In function ‘std::string cartographer_ros::{anonymous}::TrajectoryStateToString(int)’:\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:79:10: error: ‘TrajectoryState’ has not been declared\n 79 | case TrajectoryState::ACTIVE:\n | ^~~~~~~~~~~~~~~\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:81:10: error: ‘TrajectoryState’ has not been declared\n 81 | case TrajectoryState::FINISHED:\n | ^~~~~~~~~~~~~~~\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:83:10: error: ‘TrajectoryState’ has not been declared\n 83 | case TrajectoryState::FROZEN:\n | ^~~~~~~~~~~~~~~\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:85:10: error: ‘TrajectoryState’ has not been declared\n 85 | case TrajectoryState::DELETED:\n | ^~~~~~~~~~~~~~~\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc: In constructor ‘cartographer_ros::Node::Node(const cartographer_ros::NodeOptions&, std::unique_ptrcartographer::mapping::MapBuilderInterface, tf2_ros::Buffer*, bool)’:\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:98:75: error: no matching function for call to ‘tf2_ros::TransformBroadcaster::TransformBroadcaster()’\n 98 | map_builder_bridge_(node_options_, std::move(map_builder), tf_buffer) {\n | ^\n In file included from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.h:52,\n from /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:17:\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/tf2_ros/transform_broadcaster.h:53:3: note: candidate: ‘template<class NodeT, class AllocatorT> tf2_ros::TransformBroadcaster::TransformBroadcaster(NodeT&&, const rclcpp::QoS&, const rclcpp::PublisherOptionsWithAllocator<AllocatorT>&)’\n 53 | TransformBroadcaster(\n | ^~~~~~~~~~~~~~~~~~~~\n /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/tf2_ros/transform_broadcaster.h:53:3: note: template argument deduction/substitution failed:\n /home/ubuntu/ros1_ws/src/cartographer_ros/cartographer_ros/cartographer_ros/node.cc:98:75: note: candidate expects 3 arguments, 0 provided\n 98 | map_builder_bridge_(node_options_, std::move(map_builder), tf_buffer) {\n | ^\n \n 中略\n In file included from /usr/include/eigen3/Eigen/Core:457,\n from /usr/include/eigen3/Eigen/Geometry:11,\n from /opt/ros/foxy/lib/aarch64-linux-gnu/urdfdom_headers/cmake/../../../../include/cartographer/io/submap_painter.h:20,\n from /h~~\n \n .................................................................................................\n Failed << cartographer_ros:make [ Exited with code 2 ]\n \n Failed <<< cartographer_ros [ 1 minute and 9.0 seconds ]\n \n Abandoned <<< cartographer_rviz [ Unrelated job failed ]\n \n [build] Summary: 2 of 4 packages succeeded.\n \n [build] Ignored: None.\n \n [build] Warnings: None.\n \n [build] Abandoned: 1 packages were abandoned.\n \n [build] Failed: 1 packages failed.\n \n [build] Runtime: 1 minute and 37.7 seconds total.\n \n```\n\n環境 \nraspberry pi 4 model B 8GB \nUbuntu 20.04 server (20.04)をdesktop化 \nROS (Noetic) \nで行っています.", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-23T11:27:13.863", "favorite_count": 0, "id": "96028", "last_activity_date": "2023-08-24T00:56:10.630", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "53702", "post_type": "question", "score": 0, "tags": [ "ubuntu", "raspberry-pi" ], "title": "cartographerをcatkin buildしようとするとエラーが出る.", "view_count": 43 }
[ { "body": "Ubuntu 20.04 を使用しているようですが、システム要件では Ubuntu **22.04** となっています。\n\n> ### [System\n> requirements](https://docs.ros.org/en/rolling/Installation/Alternatives/Ubuntu-\n> Development-Setup.html#system-requirements)\n>\n> The current Debian-based target platforms for Rolling Ridley are:\n>\n> * Tier 1: Ubuntu Linux - Jammy (22.04) 64-bit\n> * Tier 3: Debian Linux - Bullseye (11) 64-bit\n>", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-24T00:56:10.630", "id": "96030", "last_activity_date": "2023-08-24T00:56:10.630", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "3060", "parent_id": "96028", "post_type": "answer", "score": 0 } ]
96028
null
96030
{ "accepted_answer_id": null, "answer_count": 1, "body": "Django でレコードの悲観ロックを実現しようと with transaction.atomic()\n内で、select_for_update()を実行しましたが、レコードがロックされないです。 \nコードは以下です\n\n```\n\n @api_view(['GET', 'POST', 'PUT'])\n def Test(request):\n \n with transaction.atomic(using=\"test\"):\n target_user = AdminUser.objects.select_for_update().get(id=\"test_user\")\n target_user.name = \"name\"\n target_user.save()\n \n return Response({}, status=status.HTTP_200_OK)\n \n```\n\nこれらが実行されるときは、以下のようなsqlコマンドが実行されると思っていました\n\n```\n\n BEGIN\n SELECT ***** FOR UPDATE\n COMMIT\n \n```\n\nしかし実際は、以下のような実行ログとなりました\n\n```\n\n SELECT ***** FOR UPDATE\n COMMIT\n \n```\n\nバージョンに関して \nDjango 3.2.12 \nPython 3.6.15 \nMysql 5.7.41\n\n何かしらの設定が抜けているなどあればご指摘いただきたいです。 \nよろしくお願いいたします。\n\n* * *\n\nデータベースエンジンにmysqlを利用しているのですが、django.db.backends.mysql には\nBEGINを実行するコマンドがなく、django.db.backends.sqlite3 にはありました", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-24T04:53:10.167", "favorite_count": 0, "id": "96031", "last_activity_date": "2023-08-25T01:12:25.910", "last_edit_date": "2023-08-24T08:13:45.450", "last_editor_user_id": "59566", "owner_user_id": "59566", "post_type": "question", "score": 0, "tags": [ "python", "mysql", "django" ], "title": "Django:transaction.atomic によるトランザクション管理でBEGINコマンドが実行されず、select_for_update() でレコードのロックができない", "view_count": 67 }
[ { "body": "以下のコードでトランザクションのカーソルにアクセスでき、sqlが実行できたのでBEGINしました。\n\n```\n\n from django.db import transaction, connections\n \n with transaction.atomic(using=\"test\"):\n connections[\"test\"].cursor().execute(\"BEGIN\")\n \n```\n\ntransaction.atomic() がどのようにトランザクションを開始しているかライブラリを読むと\ndjango.db.transaction.get_connection で django.db.connectionsを呼び出しているのを確認。 \nconnections[using]でデータベースエンジンごとのDatabaseWrapperオブジェクトからcursorを使っているようだったので、自前のViewでもconnections[using]を使うと同じトランザクション内でsqlが実行できた。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-24T08:06:00.533", "id": "96034", "last_activity_date": "2023-08-25T01:12:25.910", "last_edit_date": "2023-08-25T01:12:25.910", "last_editor_user_id": "3060", "owner_user_id": "59566", "parent_id": "96031", "post_type": "answer", "score": 0 } ]
96031
null
96034
{ "accepted_answer_id": null, "answer_count": 0, "body": "# 現環境\n\neBPFの環境構築を以下のページを参考にして、動かしています。\n\n[ubuntu 20.04.3 LTS\nでeBPFをインストール](https://qiita.com/hayama17/items/d06d11c47f1803cc9e1d)\n\n```\n\n uname -a\n Linux *** 5.4.0-156-generic #173-Ubuntu SMP Tue Jul 11 07:25:22 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux\n \n```\n\n# 困っていること\n\n参照したページに掲載のコードを以下の通り実行するとエラーが出てきます。 \n少し変えて動かしたり、他のコードを動かしても同じようなエラーが出てしまいます。\n\n**実行結果:**\n\n```\n\n $ sudo -E python3 hello_world.py\n bpf: Argument list too long. Program too large (0 insns), at most 4096 insns\n \n Traceback (most recent call last):\n File \"hello_world.py\", line 18, in <module>\n b.attach_kprobe(event=b.get_syscall_fnname(\"clone\"), fn_name=\"hello\")\n File \"/usr/lib/python3/dist-packages/bcc-0.28.0+173282d3-py3.8.egg/bcc/__init__.py\", line 851, in attach_kprobe\n File \"/usr/lib/python3/dist-packages/bcc-0.28.0+173282d3-py3.8.egg/bcc/__init__.py\", line 526, in load_func\n Exception: Failed to load BPF program b'hello': Argument list too long\n \n```\n\nエラーの内容も以下の通りで意味不明なので、どうすればいいのかわかりません。 \nよろしくお願いいたします。\n\n```\n\n Argument list too long. Program too large (0 insns), at most 4096 insns\n \n```\n\n**実行したコード:**\n\n```\n\n #!/usr/bin/python\n #\n # This is a Hello World example that formats output as fields.\n \n from bcc import BPF\n from bcc.utils import printb\n \n # define BPF program\n prog = \"\"\"\n int hello(void *ctx) {\n bpf_trace_printk(\"Hello, World!\\\\n\");\n return 0;\n }\n \"\"\"\n \n # load BPF program\n b = BPF(text=prog)\n b.attach_kprobe(event=b.get_syscall_fnname(\"clone\"), fn_name=\"hello\")\n \n # header\n print(\"%-18s %-16s %-6s %s\" % (\"TIME(s)\", \"COMM\", \"PID\", \"MESSAGE\"))\n \n # format output\n while 1:\n try:\n (task, pid, cpu, flags, ts, msg) = b.trace_fields()\n except ValueError:\n continue\n except KeyboardInterrupt:\n exit()\n printb(b\"%-18.9f %-16s %-6d %s\" % (ts, task, pid, msg))\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-24T05:40:27.357", "favorite_count": 0, "id": "96032", "last_activity_date": "2023-08-24T07:56:02.290", "last_edit_date": "2023-08-24T07:56:02.290", "last_editor_user_id": "3060", "owner_user_id": "58699", "post_type": "question", "score": 1, "tags": [ "python", "linux", "c", "security" ], "title": "eBPFのサンプルコード実行時に Argument list too long", "view_count": 87 }
[]
96032
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "皆さんはGoogle広告を利用されていますか?\n\n私はAdsを利用して世界に向けて広告を打っています。 \n発展途上国などを中心に、クリック単価が安い国に向けて広告を表示しています。\n\nここが本題ですが、Google広告に掲載すると、大量にスパム登録があるような気がしています。 \n皆さんはそんな経験を感じたことはありませんか? \n一見、ユーザーが大量に登録してくれて嬉しいようですが、実態のないスパム登録であると感じています。 \n登録してくれるユーザーのほとんどが@gmail.comアカウントであるのが気になります。 \nまた、本人確認の2段階認証を行いユーザーが多く、登録することだけに目的があるようにさえ感じます。\n\nGoogle広告経由で訪れるスパム登録は存在すると思いますか? \n憶測や意見ではなく事実に基づいた回答、持論を聞かせていただけませんか?", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-24T18:31:10.833", "favorite_count": 0, "id": "96038", "last_activity_date": "2023-08-30T14:46:26.737", "last_edit_date": "2023-08-30T14:46:26.737", "last_editor_user_id": "22725", "owner_user_id": "22725", "post_type": "question", "score": 0, "tags": [ "webapi", "google-analytics" ], "title": "Google Adsに掲載するとスパム登録が大量に来るような気がしますが、、", "view_count": 138 }
[]
96038
null
null
{ "accepted_answer_id": null, "answer_count": 1, "body": "OAuth2.0において、認可サーバーから発行された認可コードをサーバー間で共有し、認可サーバーからの発行先と異なるサーバーからリソースへアクセスすることは仕様上許容される操作なのでしょうか。\n\n推奨されないであろうということはわかるのですが、RFC6749などを確認する限り、サードパーティーアプリケーションは単一のサーバーであるということが定義されていないため、仕様上は問題ないのではないかと考えています。 \n<https://openid-foundation-japan.github.io/rfc6749.ja.html#client-types> \nもし、こちらについてご存知の方がいらっしゃいましたら、ご教示いただけると幸いです。\n\n*実装イメージ\n\n[![画像の説明をここに入力](https://i.stack.imgur.com/H9uqm.png)](https://i.stack.imgur.com/H9uqm.png)", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-25T01:28:21.190", "favorite_count": 0, "id": "96039", "last_activity_date": "2023-08-25T10:04:40.787", "last_edit_date": "2023-08-25T10:04:40.787", "last_editor_user_id": "59570", "owner_user_id": "59570", "post_type": "question", "score": 1, "tags": [ "security", "oauth" ], "title": "oauth2.0 利用時の認可コードはサーバー間で共有しても良い?", "view_count": 85 }
[ { "body": "認可コードは1回使うと無効化されるので共有することはできません。 \n[4.1.2. 認可レスポンス](https://openid-foundation-\njapan.github.io/rfc6749.ja.html#code-authz-resp)\n\n> もし認可コードが2回以上使用された場合は, 認可サーバーはリクエストを拒否しなければならず (MUST)\n\n[アクセストークン](https://openid-foundation-\njapan.github.io/rfc6749.ja.html#anchor8)を共有したい、という話であれば可能でしょう。 \nただし[クライアント認証](https://openid-foundation-\njapan.github.io/rfc6749.ja.html#client-\nauthentication)において図中のサーバー1,2がともに同一クライアントであるとみなされる必要があります。\n\n(サーバー1, 2\nが各々独自にリソースサーバーへアクセスするのではなく、Gatewayサーバー的なものを経由するようにしてアクセスを1本化するのが一般的かと思います。)", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-25T09:48:36.927", "id": "96043", "last_activity_date": "2023-08-25T09:48:36.927", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "2808", "parent_id": "96039", "post_type": "answer", "score": 3 } ]
96039
null
96043
{ "accepted_answer_id": null, "answer_count": 2, "body": "[![画像の説明をここに入力](https://i.stack.imgur.com/1Qun2.png)](https://i.stack.imgur.com/1Qun2.png)以前Stack\noverflowで説明不足だと言われたのでもう思っていることやりたいこと全部話します。\n\n<https://github.com/thunyoubun/TTS-VTuberAI-Anime>\n\n上記リポジトリを作動させたいのですが今2つのことで困っています。\n\nまずターミナルでcd リポジトリ名にdocker run 次にdocker compose\nupで作動させたいのですが引数が必要とログで言われておりREADMEには\n\n> To run Voicevox: `docker-compose up -d` To stop running the containers: \n> `docker-compose down` Don't forget to shut it down to reclaim your ram.\n> This should only after you have stopped the containers and are done using\n> the program. `wsl --shutdown`\n\nと書かれていますがやはり引数が必要なのかdocker-compose up\n-dで作動させるとターミナルの%が消えてターミナル自体使えなくなります。(動かなくなる) \nでDocker compose.ymlには\n\n```\n\n version: \"3\"\n \n services:\n voicevox:\n image: voicevox/voicevox_engine:nvidia-ubuntu20.04-latest\n ports:\n - \"50021:50021\"\n deploy:\n resources:\n reservations:\n devices:\n - driver: nvidia\n count: all\n capabilities: [gpu]\n \n```\n\nと書かれています。この場合引数はportsの50021:50021かなと思ってますがどうでしょうか?違うのなら引数を教えて欲しいです。\n\nもう一つは実は過去に一度再起動して友達にどうやったのかは知りませんが(聞いたが本人自体覚えてなかった。)ターミナルでdockerが動いたのですがその時にCPUアーキテクチャが違うとログで言われました。CPUアーキテクチャのx86-64マシンが必要ならしいのですが変更方法がわかりません。Docker\nplatfromでできるらしいのですがDockerの公式ページを見てもよくわからなかったんですよ。なのでDocker\nplatfromでCPUアーキテクチャの変更方法を教えて欲しいです。私が持っているパソコンはMacbookです。で私自体プログラミング歴が短いのでできるだけわかりやすくお願いします。他にも試したことで聞きたいことがあればなんでも答えます。", "comment_count": 2, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-25T09:18:09.007", "favorite_count": 0, "id": "96042", "last_activity_date": "2023-08-26T10:21:33.810", "last_edit_date": "2023-08-26T10:21:33.810", "last_editor_user_id": "59380", "owner_user_id": "59380", "post_type": "question", "score": -1, "tags": [ "docker", "docker-compose" ], "title": "このリポジトリの作動方法を教えて欲しいです。", "view_count": 189 }
[ { "body": "<https://github.com/thunyoubun/TTS-VTuberAI-\nAnime/blob/4e1ae54ac2f33151306edd9b7451b8ac11570af5/docker-compose.yml#L5>\nを見ると <https://hub.docker.com/r/voicevox/voicevox_engine> が提供する Docker image\nのひとつを使っているのが分かります。しかしこの image は image 名に書かれているように NVIDIA 製の GPU\nが搭載されているコンピューター上でないと動きません。最近の MacBook には NVIDIA GPU\nは搭載されていないので、このままだと動かすことはできません。具体的には 2015 年からの MacBook には搭載されていません。\n\nvoicevox/voicevox_engine には CPU 版の image\nもあるのでそちらを使うように書き換えれば動くかもしれませんが、動作確認までは行っていないので分かりません。", "comment_count": 4, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-25T15:16:28.097", "id": "96044", "last_activity_date": "2023-08-25T15:16:28.097", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "19110", "parent_id": "96042", "post_type": "answer", "score": 2 }, { "body": "該当の Docker イメージは (nekketsuuu さんの回答の通り) GPU が必要、とは別の話を補足として。\n\n* * *\n\n\"CPU アーキテクチャが合わない\" の部分については、質問者さんの過去の質問を見ると **M1 Mac** のようなので、amd64\nのイメージはうまく動かないと思われます。\n\n`voicevox/voicevox_engine` の `OS/ARCH` で `linux/arm64` を選択するか、以下のように Docker\n実行時に `platform` オプションを使用する方法があるようです。\n\n**参考:** \n[M1搭載MacのDockerでMySQLを動かしてみる](https://gihyo.jp/dev/serial/01/mysql-road-\nconstruction-news/0167)\n\n(たまたま MySQL を動かす例ですが、重要なのは `platfrom` 指定の部分です)\n\n> M1向けのDocker for\n> Macでは、linux/amd64向けのコンテナを動かすことができるので、platformオプションを使用して実行してみましょう。\n```\n\n> % docker run --platform linux/x86_64 -p 3307:3306 -e\n> MYSQL_ROOT_PASSWORD=password-d mysql:latest\n> \n```\n\n> Docker Composeは、Dockerと合わせて開発環境の中でよく使われる事が多いと思います。Docker\n> Composeで指定するときは以下のような形で追加します。\n```\n\n> version: '3'\n> services:\n> mysql:\n> image: mysql:latest\n> platform: linux/amd64\n> environment:\n> MYSQL_ROOT_PASSWORD: password\n> ports:\n> - 127.0.0.1:3308:3306\n> \n```", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-26T06:36:04.177", "id": "96046", "last_activity_date": "2023-08-26T06:36:04.177", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "3060", "parent_id": "96042", "post_type": "answer", "score": 1 } ]
96042
null
96044
{ "accepted_answer_id": null, "answer_count": 0, "body": "<http://php.adamharvey.name/manual/ja/class.cairo.php>\n\n<https://pecl.php.net/package/cairo>\n\nPHPから cairo を利用したいのですがpeclに公開されているのはバージョン5のままサポートが止まっていて \n現行のバージョン8ではコンパイルが通りません。\n\nFFI での利用も難しそうです。\n\n何らかの方法で、PHP8 で cairo を組み込む方法を御存知の方はいらっしゃいませんでしょうか?\n\n追記:\n\n<https://github.com/swen100/php-cairo>\n\nこちらを見つけてビルドしてみましたが、\n\n```\n\n /usr/local/src/cairo/php-cairo-php8/src/pattern.c:23:10: fatal error: ext/eos_datastructures/php_eos_datastructures_api.h: No such file or directory\n 23 | #include <ext/eos_datastructures/php_eos_datastructures_api.h>\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n compilation terminated.\n \n```\n\nやはりエラーになってしまいました。", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-25T17:00:00.953", "favorite_count": 0, "id": "96045", "last_activity_date": "2023-08-25T17:20:35.437", "last_edit_date": "2023-08-25T17:20:35.437", "last_editor_user_id": "59393", "owner_user_id": "59393", "post_type": "question", "score": 1, "tags": [ "php" ], "title": "PHP8 で cairo 機能拡張をインストールしたい", "view_count": 31 }
[]
96045
null
null
{ "accepted_answer_id": "96049", "answer_count": 1, "body": "初めてEKSに触っています。\n\n## やったこと:\n\n * [Amazon EKS の開始方法 – AWS Management Console と AWS CLI \n](https://docs.aws.amazon.com/ja_jp/eks/latest/userguide/getting-started-\nconsole.html)\n\n * [サンプルアプリケーションをデプロイする](https://docs.aws.amazon.com/ja_jp/eks/latest/userguide/sample-deployment.html)\n\n上記ドキュメント通りに進め(たつもりですが)、PodにシェルでアクセスしServerへcurlを実行するところまで行いました。 \ncloudformation, yaml等はドキュメントのまま実施。 \nFargateで行いたかったので、名前空間`eks-sample-app`を含むFargateプロファイルを作成。 \nこのとき、curlがservice名だとうまくいかなかったので、Endpointで行なってみています。\n\n```\n\n $ kubectl get pods -n eks-sample-app\n NAME READY STATUS RESTARTS AGE\n eks-sample-linux-deployment-5b568bf897-4fh8g 1/1 Running 0 5m8s\n \n```\n\n```\n\n $ kubectl -n eks-sample-app describe service eks-sample-linux-service\n Name: eks-sample-linux-service\n Namespace: eks-sample-app\n Labels: app=eks-sample-linux-app\n Annotations: <none>\n Selector: app=eks-sample-linux-app\n Type: ClusterIP\n IP Family Policy: SingleStack\n IP Families: IPv4\n IP: 10.100.161.222\n IPs: 10.100.161.222\n Port: <unset> 80/TCP\n TargetPort: 80/TCP\n Endpoints: 192.168.204.16:80\n Session Affinity: None\n Events: <none>\n \n```\n\n```\n\n $ kubectl exec -it eks-sample-linux-deployment-5b568bf897-4fh8g -n eks-sample-app -- /bin/bash\n root@eks-sample-linux-deployment-5b568bf897-4fh8g:/# curl eks-sample-linux-service\n curl: (6) Could not resolve host: eks-sample-linux-service\n root@eks-sample-linux-deployment-5b568bf897-4fh8g:/# curl 192.168.204.16:80\n <!DOCTYPE html>\n <html>\n <head>\n <title>Welcome to nginx!</title>\n <style>\n ・・・・・・\n \n```\n\n```\n\n $ kubectl get all -n kube-system\n NAME READY STATUS RESTARTS AGE\n pod/coredns-8496bbc677-fztvq 0/1 Pending 0 19h\n pod/coredns-8496bbc677-xzxtd 0/1 Pending 0 19h\n \n NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE\n service/kube-dns ClusterIP 10.100.0.10 <none> 53/UDP,53/TCP 19h\n \n NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE\n daemonset.apps/aws-node 0 0 0 0 0 <none> 19h\n daemonset.apps/kube-proxy 0 0 0 0 0 <none> 19h\n \n NAME READY UP-TO-DATE AVAILABLE AGE\n deployment.apps/coredns 0/2 2 0 19h\n \n NAME DESIRED CURRENT READY AGE\n replicaset.apps/coredns-8496bbc677 2 2 0 19h\n \n```\n\nそもそも、この設定が足りないなどあればご教授お願いいたします。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-26T06:56:21.317", "favorite_count": 0, "id": "96047", "last_activity_date": "2023-08-26T13:40:58.363", "last_edit_date": "2023-08-26T13:40:58.363", "last_editor_user_id": "58384", "owner_user_id": "58384", "post_type": "question", "score": 1, "tags": [ "kubernetes", "amazon-eks" ], "title": "AWS EKSにてPodからのcurlをservice名で実行できない", "view_count": 51 }
[ { "body": "> Fargateで行いたかったので、名前空間eks-sample-appを含むFargateプロファイルを作成。 \n> 関係あるかわかりませんが、このとき、なぜかcurlがservice名だとうまくいかなかったので、Endpointで行なってみています。\n\nAWS Load Balancer Controller以前にFargateでのKubernetes環境が正しく構築できていません。具体的には\n\n>\n```\n\n> pod/coredns-8496bbc677-fztvq 0/1 Pending 0\n> 19h\n> pod/coredns-8496bbc677-xzxtd 0/1 Pending 0\n> 19h\n> \n```\n\nCoreDNSが正常動作できていません。これについては[Amazon EKS を使用した AWS Fargate\nの使用開始](https://docs.aws.amazon.com/ja_jp/eks/latest/userguide/fargate-getting-\nstarted.html)に\n\n> ## CoreDNS の更新\n\nがありますが、これを実行できていないのではないでしょうか?", "comment_count": 3, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-26T08:21:57.910", "id": "96049", "last_activity_date": "2023-08-26T08:21:57.910", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "4236", "parent_id": "96047", "post_type": "answer", "score": 0 } ]
96047
96049
96049
{ "accepted_answer_id": null, "answer_count": 0, "body": "xilinxの論理合成ツールbasexで \n合成結果をネットリストで見るにはどうしたらいいですか。また論理式の圧縮結果はどこにあるのですか。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-26T13:17:29.273", "favorite_count": 0, "id": "96050", "last_activity_date": "2023-08-26T13:17:29.273", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59584", "post_type": "question", "score": 0, "tags": [ "verilog" ], "title": "ネットリストの見方", "view_count": 47 }
[]
96050
null
null
{ "accepted_answer_id": null, "answer_count": 1, "body": "swiftuiを使ってiOS用のアプリを作成しているのですが、不明な点がありましたら教えてください。あるスクロールビューに表示されている画像をドラッグして別のスクロールビューに移動したいのですが、現在の問題は、画像をドラッグして移動すると、画像がスクロールビューの外に出ると表示されず、移動できないことです。別のスクロールビューに移動してください。この問題の解決方法を教えていただければ幸いです。\n\n```\n\n import SwiftUI\n \n struct ContentView: View {\n @State private var pageOffsets: [CGSize] = Array(repeating: .zero, count: 50)\n @State private var pageGridColumns: [Int] = Array(repeating: 0, count: 50)\n let grids = Array(repeating: GridItem(.fixed(80)), count: 4)\n \n var body: some View {\n LazyVStack {\n ScrollView() {\n LazyHStack {\n LazyVGrid(columns: grids) {\n ForEach((1...50), id: \\.self) { num in\n Page(str: String(num))\n .cornerRadius(8)\n .frame(height: 60)\n .offset(pageOffsets[num - 1])\n .gesture(\n DragGesture()\n .onChanged { value in\n pageOffsets[num - 1] = value.translation\n }\n .onEnded { value in\n let columnIndex = Int(round(value.translation.width / 80))\n let newOffset = CGSize(width: CGFloat(columnIndex) * 80, height: 0)\n withAnimation {\n pageOffsets[num - 1] = newOffset\n pageGridColumns[num - 1] = columnIndex\n }\n }\n )\n .onAppear {\n pageGridColumns[num - 1] = (num - 1) % 4\n }\n }\n }\n }\n }\n ScrollView() {\n LazyHStack {\n LazyVGrid(columns: grids) {\n ForEach((1...50), id: \\.self) { num in\n Page(str: String(num))\n .cornerRadius(8)\n .frame(height: 60)\n .offset(pageOffsets[num - 1])\n .gesture(\n DragGesture()\n .onChanged { value in\n pageOffsets[num - 1] = value.translation\n }\n .onEnded { value in\n let columnIndex = Int(round(value.translation.width / 80))\n let newOffset = CGSize(width: CGFloat(columnIndex) * 80, height: 0)\n withAnimation {\n pageOffsets[num - 1] = newOffset\n pageGridColumns[num - 1] = columnIndex\n }\n }\n )\n .onAppear {\n pageGridColumns[num - 1] = (num - 1) % 4\n }\n }\n }\n }\n }\n }\n }\n }\n \n struct Page: View {\n let colors: [Color] = [.green, .blue, .pink, .orange, .purple]\n let str: String\n \n var body: some View {\n ZStack {\n colors.randomElement()\n Text(str)\n .font(.title)\n .foregroundColor(.white)\n }\n }\n }\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-26T16:52:11.780", "favorite_count": 0, "id": "96053", "last_activity_date": "2023-09-01T16:49:11.127", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59585", "post_type": "question", "score": 1, "tags": [ "swift", "ios", "swiftui" ], "title": "スクロールビュー間で画像を移動する方法", "view_count": 48 }
[ { "body": "SwiftUIのdraggable, dropDestinationを使うとgestureを気にせずに実装することができます。\n\n<https://zenn.dev/zunda_pixel/articles/7dd3a47b0a3998>\n\nYouTubeに1つのScrollViewですが同じような要件のものがあります。これを参考にすればいけると思います。\n\n<https://www.youtube.com/watch?v=UFiOCcm6zTo>\n\n長いですが、一応動くコードも置いておきます。\n\n```\n\n import SwiftUI\n import CoreTransferable\n \n struct ContentView: View {\n @State private var topPageItems: [PageItem] = (0..<20).map { i in\n .init(str: String(i))\n }\n \n @State private var bottomPageItems: [PageItem] = (0..<20).map { i in\n .init(str: String(i))\n }\n \n @State private var draggingItem: PageItem?\n let columns = Array(repeating: GridItem(spacing: 10), count: 3)\n \n var body: some View {\n VStack {\n ScrollView(.vertical) {\n \n LazyVGrid(columns: columns, spacing: 10) {\n ForEach(self.topPageItems) { pageItem in\n PageView(page: pageItem)\n .id(pageItem.id)\n .draggable(pageItem) {\n PageView(page: pageItem)\n .id(pageItem.id)\n .frame(width: 100, height: 50)\n .onAppear {\n self.draggingItem = pageItem\n }\n }\n .dropDestination(for: PageItem.self) { items, location in\n self.draggingItem = nil\n return false\n } isTargeted: { status in\n guard let draggingItem, status, draggingItem.id != pageItem.id else { return }\n if let sourceIndex = self.topPageItems.firstIndex(where: { $0.id == draggingItem.id }) {\n let destinationIndex = self.topPageItems.firstIndex { $0.id == pageItem.id }\n guard let destinationIndex else { return }\n \n withAnimation(.bouncy) {\n let sourceItem = self.topPageItems.remove(at: sourceIndex)\n self.topPageItems.insert(sourceItem, at: destinationIndex)\n }\n } else if let sourceIndex = self.bottomPageItems.firstIndex(where: { $0.id == draggingItem.id }) {\n let destinationIndex = self.topPageItems.firstIndex { $0.id == pageItem.id }\n guard let destinationIndex else { return }\n \n withAnimation(.bouncy) {\n let sourceItem = self.bottomPageItems.remove(at: sourceIndex)\n self.topPageItems.insert(sourceItem, at: destinationIndex)\n }\n }\n }\n }\n }\n .padding(15)\n }\n \n ScrollView(.vertical) {\n LazyVGrid(columns: columns, spacing: 10) {\n ForEach(self.bottomPageItems) { pageItem in\n PageView(page: pageItem)\n .id(pageItem.id)\n .draggable(pageItem) {\n PageView(page: pageItem)\n .id(pageItem.id)\n .frame(width: 100, height: 50)\n .onAppear {\n self.draggingItem = pageItem\n }\n }\n .dropDestination(for: PageItem.self) { items, location in\n self.draggingItem = nil\n return false\n } isTargeted: { status in\n guard let draggingItem, status, draggingItem.id != pageItem.id else { return }\n if let sourceIndex = self.bottomPageItems.firstIndex(where: { $0.id == draggingItem.id }) {\n let destinationIndex = self.bottomPageItems.firstIndex { $0.id == pageItem.id }\n guard let destinationIndex else { return }\n \n withAnimation(.bouncy) {\n let sourceItem = self.bottomPageItems.remove(at: sourceIndex)\n self.bottomPageItems.insert(sourceItem, at: destinationIndex)\n }\n } else if let sourceIndex = self.topPageItems.firstIndex(where: { $0.id == draggingItem.id }) {\n let destinationIndex = self.bottomPageItems.firstIndex { $0.id == pageItem.id }\n guard let destinationIndex else { return }\n \n withAnimation(.bouncy) {\n let sourceItem = self.topPageItems.remove(at: sourceIndex)\n self.bottomPageItems.insert(sourceItem, at: destinationIndex)\n }\n }\n }\n }\n }\n .padding(15)\n }\n }\n }\n }\n \n #Preview {\n ContentView()\n }\n \n \n import UniformTypeIdentifiers\n \n struct PageItem: Identifiable, Codable, Transferable {\n let id: UUID\n let str: String\n let color: Color\n \n init(str: String) {\n self.id = UUID()\n self.str = str\n let allColors: [Color] = [.green, .blue, .pink, .orange, .purple]\n self.color = allColors.randomElement()!\n }\n \n static var transferRepresentation: some TransferRepresentation {\n CodableRepresentation(for: PageItem.self, contentType: .content)\n }\n }\n \n struct PageView: View {\n let page: PageItem\n \n var body: some View {\n ZStack {\n page.color\n Text(page.str)\n .font(.title)\n .foregroundColor(.white)\n }\n }\n }\n \n extension Color: Codable {\n enum CodingKeys: String, CodingKey {\n case red\n case green\n case blue\n case opacity\n }\n \n public func encode(to encoder: Encoder) throws {\n var red: CGFloat = 0\n var green: CGFloat = 0\n var blue: CGFloat = 0\n var opacity: CGFloat = 0\n \n var container = encoder.container(keyedBy: CodingKeys.self)\n UIColor(self).getRed(&red, green: &green, blue: &blue, alpha: &opacity)\n try container.encode(red, forKey: .red)\n try container.encode(green, forKey: .green)\n try container.encode(blue, forKey: .blue)\n try container.encode(opacity, forKey: .opacity)\n }\n \n public init(from decoder: Decoder) throws {\n let container = try decoder.container(keyedBy: CodingKeys.self)\n let red = try container.decode(Double.self, forKey: .red)\n let green = try container.decode(Double.self, forKey: .green)\n let blue = try container.decode(Double.self, forKey: .blue)\n let opacity = try container.decode(Double.self, forKey: .opacity)\n self.init(red: red, green: green, blue: blue, opacity: opacity)\n }\n }\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-01T16:25:25.403", "id": "96099", "last_activity_date": "2023-09-01T16:49:11.127", "last_edit_date": "2023-09-01T16:49:11.127", "last_editor_user_id": "40856", "owner_user_id": "40856", "parent_id": "96053", "post_type": "answer", "score": 1 } ]
96053
null
96099
{ "accepted_answer_id": null, "answer_count": 0, "body": "blueman パッケージのインストールに失敗します。原因は何でしょうか?\n\n使用しているOSはLinux Mint 21.2です。\n\n```\n\n $ sudo apt-get install blueman\n パッケージリストを読み込んでいます... 完了\n 依存関係ツリーを作成しています... 完了 \n 状態情報を読み取っています... 完了 \n インストールすることができないパッケージがありました。おそらく、あり得\n ない状況を要求したか、(不安定版ディストリビューションを使用しているの\n であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n 動されていないことが考えられます。\n 以下の情報がこの問題を解決するために役立つかもしれません:\n \n 以下のパッケージには満たせない依存関係があります:\n blueman : 依存: python3 (< 3.11) しかし、3.11.4-5+b1 はインストールされようとしています\n E: 問題を解決することができません。壊れた変更禁止パッケージがあります。\n \n```", "comment_count": 3, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-26T22:37:01.907", "favorite_count": 0, "id": "96054", "last_activity_date": "2023-08-28T05:14:56.063", "last_edit_date": "2023-08-28T05:14:56.063", "last_editor_user_id": "3060", "owner_user_id": "59586", "post_type": "question", "score": 1, "tags": [ "linux", "ubuntu" ], "title": "Linux Mint で blueman パッケージのインストールに失敗する", "view_count": 151 }
[]
96054
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "おみくじアプリをDart(Flutter)で作成しようとしたところ、画面1のように構文?が表示されておみくじの結果が表示されません。\n\nこのコードで組んでみたものの、結果は一切表示されず 画面2のように時折赤い画面が表示されます。 \nList内に入力した文字列をランダムに抽出するにはどうすれば良いのでしょうか?\n\n**画面1** \n[![画像の説明をここに入力](https://i.stack.imgur.com/z8mWA.png)](https://i.stack.imgur.com/z8mWA.png)\n\n**画面2** \n[![画像の説明をここに入力](https://i.stack.imgur.com/367Xl.png)](https://i.stack.imgur.com/367Xl.png)\n\n**現状のコード:**\n\n```\n\n import 'dart:math';\n \n import 'package:flutter/material.dart';\n \n \n void main() {\n runApp(const MyApp());\n }\n \n class MyApp extends StatelessWidget {\n const MyApp({super.key});\n \n @override\n Widget build(BuildContext context) {\n return MaterialApp(\n home: FortunePage(),\n );\n }\n }\n \n class FortunePage extends StatefulWidget {\n const FortunePage({super.key});\n \n @override\n State<FortunePage> createState() => _FortunePageState();\n }\n \n class _FortunePageState extends State<FortunePage> {\n \n List<String> omikujis =['大吉','吉','中吉','小吉','末吉','凶','大凶'];\n \n List<String> results = ['大吉','吉','中吉','小吉','末吉','凶','大凶'];\n \n \n void drawOmikujis(String drawOmikujis){\n omikujis = drawOmikujis as List<String>;\n you_Result();\n setState(() {});\n \n }\n \n void you_Result(){\n final randomResult = Random().nextInt(6);\n \n results = randomResultToOmikuji(randomNumber) as List<String>;\n \n }\n \n String randomResultToOmikuji(int randomNumber){\n switch (randomNumber) {\n case 0:\n return '大吉';\n case 1:\n return '吉';\n case 2:\n return '中吉';\n case 3:\n return '小吉';\n case 4:\n return '末吉';\n case 5:\n return '凶';\n case 6:\n return '大凶';\n default:\n return 'おみくじを引いてください';\n }\n }\n \n \n \n @override\n Widget build(BuildContext context) {\n return Scaffold(\n appBar: AppBar(\n \n title: Text('ギャラクシー占い'),\n backgroundColor: Colors.lightGreen,\n ),\n body: Center(\n child: Column(\n mainAxisAlignment: MainAxisAlignment.center,\n children: [\n Text(\n randomNumberToResult.toString(),\n \n style: const TextStyle(\n fontSize: 32,\n ),\n ),\n SizedBox(height: 48,),\n ElevatedButton(\n onPressed: () {\n print(randomNumberToResult);\n },\n child: Text('おみくじを引く'),\n ),\n ],\n ),\n ),\n );\n }\n }\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-27T00:26:52.607", "favorite_count": 0, "id": "96055", "last_activity_date": "2023-08-27T05:45:51.913", "last_edit_date": "2023-08-27T05:45:51.913", "last_editor_user_id": "3060", "owner_user_id": "54140", "post_type": "question", "score": 0, "tags": [ "flutter", "dart" ], "title": "おみくじアプリをDartで作成しているがおみくじの結果が表示されない", "view_count": 68 }
[]
96055
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "goでストラテジーパターンを用いてある処理のふるまいを変更していました。 \nすべての具体的なストラテジーに対して、付加的な処理を入れる場合と入れない場合が出てきたので、デコレーターパターンを用いて対応を検討しました。chatgptに質問すると、下記のように、インターフェースを埋め込むことで対応できることがわかりました。この場合、デコレーター構造体側でストラテジーの大元のインターフェースのメソッドをすべて実装しないとデコレーターがストラテジーインターフェースを満たしてくれませんでした。ほとんど委譲しかしないメソッドを定義しないとならないのですが(下記の例で言うと、Refundのようなメソッドが大量にあるイメージです。)、これは仕方のないことでしょうか。\n\nほかにgoらしいスマートなやり方があれば教えていただきたいです。よろしくお願いいたします。\n\n```\n\n package main\n \n import \"fmt\"\n \n // 支払い方法のストラテジー\n type PaymentStrategy interface {\n Pay(amount float64) string\n Refund(amount float64) string\n }\n \n // クレジットカード支払い\n type CreditCardStrategy struct{}\n \n func (c *CreditCardStrategy) Pay(amount float64) string {\n return fmt.Sprintf(\"クレジットカードで %.2f 円支払いました\", amount)\n }\n \n func (c *CreditCardStrategy) Refund(amount float64) string {\n return fmt.Sprintf(\"クレジットカードで %.2f 円返金しました\", amount)\n }\n \n // 手数料デコレーター\n type FeeDecorator struct {\n strategy PaymentStrategy\n fee float64\n }\n \n func (d *FeeDecorator) Pay(amount float64) string {\n totalAmount := amount + d.fee\n return fmt.Sprintf(\"%s(手数料 %.2f 円込み)\", d.strategy.Pay(totalAmount), d.fee)\n }\n \n func (d *FeeDecorator) Refund(amount float64) string {\n // 手数料デコレーターはRefundメソッドに手数料を加える必要はないため、そのまま委譲する\n return d.strategy.Refund(amount)\n }\n \n func main() {\n creditCard := &CreditCardStrategy{}\n creditCardWithFee := &FeeDecorator{strategy: creditCard, fee: 2.0}\n \n fmt.Println(creditCardWithFee.Pay(100.0))\n fmt.Println(creditCardWithFee.Refund(50.0))\n }\n \n \n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-27T11:55:46.327", "favorite_count": 0, "id": "96056", "last_activity_date": "2023-08-27T11:55:46.327", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59594", "post_type": "question", "score": 4, "tags": [ "go" ], "title": "goでのデコレーターとストラテジーの実装について", "view_count": 58 }
[]
96056
null
null
{ "accepted_answer_id": "96064", "answer_count": 1, "body": "以下のRustのコードにて、s1は一般的に何と呼ばれますか? \nJavaなどでは\"参照\"と呼ばれると思います。\n\n```\n\n fn main() {\n let s1 = String::from(\"hello, world\");\n println!(\"msg: {}\", s1);\n }\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T06:14:11.310", "favorite_count": 0, "id": "96057", "last_activity_date": "2023-08-29T01:02:23.620", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "38053", "post_type": "question", "score": 1, "tags": [ "rust" ], "title": "Rustにおけるオブジェクトのインスタンスを指すナントカの呼び名は?", "view_count": 182 }
[ { "body": "Rustの公式ガイド(英語版)で使われている用語に基づいて回答しますね。\n\n> 以下のRustのコードにて、s1は一般的に何と呼ばれますか?\n\nこのあたりの文章ですと、 \n<https://doc.rust-lang.org/book/ch02-00-guessing-game-tutorial.html#storing-\nvalues-with-variables>\n\n`String::from(\"hello, world\")`は\n\n * `String`の値、`String`値 (a String value)\n * `String`のインスタンス (an instance of String)\n\n`s1`は\n\n * 変数 (a variable)\n * `String`のインスタンスに束縛された変数 (a variable bound to an instance of String)\n * (変数という言葉を省略して)`String`の値\n\nのように呼ばれています。\n\n私個人の感覚ですと、Rustでインスタンスと呼ぶことは少なくて、値と呼ぶことが圧倒的に多い印象です。\n\n> Javaなどでは\"参照\"と呼ばれると思います。\n\nJavaではオブジェクトには暗黙的な参照(ポインター)を通してアクセスし、プリミティブ型の値は直接持ちます。ですから、質問のコードでは「参照」と呼んで問題ありません。しかし、Rustには「暗黙的」な参照はなく、デフォルトは値持ちになります。もし、参照が必要なときは以下のように明示的に作ります。\n\n```\n\n let s1 = String::from(\"hello, world\");\n let r1 = &s1; // 不変参照を作る\n \n let mut s2 = String::from(\"hello, world\");\n let r2 = &mut s2; // 可変参照を作る\n \n```\n\n上の例ですと、`&s1`は\n\n * `s1`の不変参照 (an immutable reference to `s1`)\n * `String`の値を指す不変参照 (an immutable reference to a `String` value)\n\n`&mut s2`は\n\n * `s2`の可変参照 (a mutable reference to `s2`)\n * `String`の値を指す可変参照 (a mutable reference to a `String` value)\n\n`r1`と`r2`は厳密には「〜〜の不変参照/可変参照に束縛された変数」と呼ぶのが正しいでしょうが、いちいち変数と言わずに、単に「〜〜の不変参照/可変参照」と呼んでもいいと思います。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T13:09:08.317", "id": "96064", "last_activity_date": "2023-08-29T01:02:23.620", "last_edit_date": "2023-08-29T01:02:23.620", "last_editor_user_id": "14101", "owner_user_id": "14101", "parent_id": "96057", "post_type": "answer", "score": 3 } ]
96057
96064
96064
{ "accepted_answer_id": null, "answer_count": 1, "body": "iOS純正の「ファイル」アプリ内に格納したデータを任意の外部アプリから間接的に(ファイルアプリを開かず)消すことって出来るんでしょうか?という質問になります。ご存じの方がいらっしゃいましたら、助言いただけますと幸いです。\n\n【参考】 \n一般的にiOSはアプリ間連携はシビアなので、実施不可ではと考えていたのですが、参考情報としてサードパーティ製のファイルアプリ(例えば[Readdle社のdocuments](https://readdle.com/ja/documents))からデータを削除すると、iOS純正のファイルアプリからもデータが削除される事象を確認しており、もしかすると実現可能なのではと考えております。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T07:44:33.943", "favorite_count": 0, "id": "96058", "last_activity_date": "2023-08-30T18:49:37.807", "last_edit_date": "2023-08-29T08:15:17.700", "last_editor_user_id": "3060", "owner_user_id": "59602", "post_type": "question", "score": 2, "tags": [ "swift", "ios", "filesystems" ], "title": "iOS純正の「ファイル」アプリ内のデータを外部のアプリから削除する方法", "view_count": 99 }
[ { "body": "Document-based appですね。\n\n<https://developer.apple.com/jp/document-based-apps/>\n\nDocument-based\nappを作ってUIDocumentBrowserControllerを使うとFile.appと同等のアプリケーションが実現できます。UIDocumentBrowserControllerを使うのでプログラムから完全に自由にアクセスできるわけではありません。\n\nちなみに、File.appも同様ですが、扱えるファイルはアプリがDocument Directoryを公開しているものだけです。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-30T18:49:37.807", "id": "96084", "last_activity_date": "2023-08-30T18:49:37.807", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "5519", "parent_id": "96058", "post_type": "answer", "score": 3 } ]
96058
null
96084
{ "accepted_answer_id": null, "answer_count": 0, "body": "pythonのtabula-pyにてPDFファイルを解析すると下記エラーが表示されます。\n\n```\n\n page_tables = tabula.read_pdf(pdffile, pages=\"all\", silent=True)\n \n```\n\n```\n\n Exception in thread \"main\" java.lang.IllegalArgumentException: lines must be orthogonal, vertical and horizontal\n at technology.tabula.Ruling.intersectionPoint(Ruling.java:214)\n at technology.tabula.Ruling.findIntersections(Ruling.java:378)\n at technology.tabula.extractors.SpreadsheetExtractionAlgorithm.findCells(SpreadsheetExtractionAlgorithm.java:134)\n at technology.tabula.extractors.SpreadsheetExtractionAlgorithm.extract(SpreadsheetExtractionAlgorithm.java:63)\n at technology.tabula.extractors.SpreadsheetExtractionAlgorithm.extract(SpreadsheetExtractionAlgorithm.java:41)\n at technology.tabula.CommandLineApp$TableExtractor.extractTablesSpreadsheet(CommandLineApp.java:452)\n at technology.tabula.CommandLineApp$TableExtractor.extractTables(CommandLineApp.java:410)\n at technology.tabula.CommandLineApp.extractFile(CommandLineApp.java:180)\n at technology.tabula.CommandLineApp.extractFileTables(CommandLineApp.java:124)\n at technology.tabula.CommandLineApp.extractTables(CommandLineApp.java:106)\n at technology.tabula.CommandLineApp.main(CommandLineApp.java:76)\n \n```\n\nエラーの原因と対処方法を教えていただけないでしょうか。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T07:57:50.827", "favorite_count": 0, "id": "96059", "last_activity_date": "2023-08-28T07:57:50.827", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59486", "post_type": "question", "score": 0, "tags": [ "python" ], "title": "tabula-pyのlines must be orthogonal, vertical and horizontalに関して", "view_count": 23 }
[]
96059
null
null
{ "accepted_answer_id": null, "answer_count": 1, "body": "# 問題点\n\nVMware上で動かしているDebian10において、TCP接続クライアントが動作しません。\n\nTCPソケットサーバーは既存のもので、動作確認済みです。 \n1400番ポートを使用することにしています。\n\nWindows上で、以下のソースコードは完全に動作しています。\n\n## Debian上での動作\n\nDebian上で、当該ソースコードを実行すると、`s = self.sock.send(msg)`\nを実行した時点で、サーバーからRST終了させられてしまいます。(パケットキャプチャで確認)\n\nこの原因が分かりません。\n\n## ソースコード\n\n```\n\n import logging\n import ipaddress\n from ipaddress import AddressValueError\n from queue import Queue\n import socket\n from socket import AF_INET, SOCK_STREAM\n \n import threading\n import time\n \n logging.basicConfig(level=logging.INFO, format=\" %(asctime)s - %(levelname)s - %(message)s \")\n \n class SocketClientError(Exception):\n pass\n \n class SocketClient():\n def __init__(self,host,port):\n self.host, self.port = None, None\n self.is_recv_thread = False\n self.recv_queue = Queue()\n \n try:\n ipchk = ipaddress.IPv4Address(host)\n \n if ipchk.is_multicast:\n msg = \"マルチキャストアドレスは使用できません。\"\n logging.exception(msg)\n raise SocketClientError(msg)\n if ipchk.is_private:\n pass\n if ipchk.is_global:\n pass\n if ipchk.is_link_local:\n pass\n \n except AddressValueError as e:\n raise e\n \n if not isinstance(port,int):\n msg = \"portは整数値を指定してください。\"\n logging.exception(msg)\n raise SocketClientError(msg)\n else:\n if port < 1:\n msg = \"portは0より上の整数値を指定してください。\"\n logging.exception(msg)\n raise SocketClientError(msg)\n self.sock = socket.socket(AF_INET,SOCK_STREAM)\n self.sock.settimeout(1)\n \n self.host = host\n self.port = port\n \n logging.info(\"socket生成\")\n \n def connect(self):\n if not all(\n [self.host,self.port]\n ):\n msg = '接続先が正しく定義されていません。host:{},port:{}'.format(self.host,self.port)\n raise SocketClientError(msg)\n try:\n self.sock.connect_ex((self.host,self.port))\n logging.info(\"socket connect\")\n except ConnectionRefusedError as e:\n msg = 'ソケットの接続を拒否された。接続先の指定が間違っているか、サーバーが停止している可能性があります。'\n logging.exception(msg)\n raise SocketClientError(msg)\n \n try:\n recv_thread = threading.Thread(target=recv,args=(self.sock,self.recv_queue))\n recv_thread.start()\n self.is_recv_thread = True\n logging.info(\"socket receiver start!!\")\n except Exception as e:\n logging.exception(e)\n raise SocketClientError(e)\n \n def send(self,msg):\n if any(\n [\n isinstance(msg, bytes),\n isinstance(msg, str),\n ]\n ):\n is_bytes = isinstance(msg, bytes)\n if not is_bytes:\n msg = msg.encode()\n \n s = self.sock.send(msg)\n if s == 0:\n msg = \"送信できていません。socketが破棄されている可能性があります。\"\n logging.exception(msg)\n raise SocketClientError(msg)\n else:\n logging.info(\"socket send :{}\".format(msg))\n else:\n msg = '送信データがバイト列、文字列のどちらかではありません。'\n logging.exception(msg)\n raise SocketClientError(msg)\n \n def recv(sock, recv_queue):\n while True:\n try:\n data = sock.recv(1024)\n logging.info(\"socket recv :{}\".format(data))\n if data == b\"\":\n continue\n else:\n recv_queue.put(data.decode())\n except ConnectionResetError:\n break\n except TimeoutError:\n time.sleep(0.5)\n continue\n sock.shutdown(socket.SHUT_RDWR)\n sock.close()\n return\n \n class command_terminal():\n def __init__(self, instScoket):\n self.instScoket = instScoket\n self.recv_queue = instScoket.recv_queue\n \n print('**** test ctr11 tcp socket command terminal ***')\n \n while(True):\n send_cmd = input(\"command > \")\n send_cmd += \"\\r\"\n logging.info(\"send:{}\".format(send_cmd))\n self.instScoket.send(send_cmd)\n \n time.sleep(0.3)\n \n while not self.recv_queue.empty():\n recv_data =self.recv_queue.get()\n logging.info(\"recv data:{}\".format(recv_data))\n \n \n if __name__ == '__main__':\n \n host = '192.168.1.3'\n port = 1400\n instScoket = SocketClient(host,port)\n instScoket.connect()\n \n time.sleep(1)\n \n command_terminal(instScoket)\n \n```", "comment_count": 4, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T08:03:04.410", "favorite_count": 0, "id": "96060", "last_activity_date": "2023-08-28T22:55:00.923", "last_edit_date": "2023-08-28T08:34:21.390", "last_editor_user_id": "3060", "owner_user_id": "32891", "post_type": "question", "score": 1, "tags": [ "python", "python3", "socket", "debian" ], "title": "Debian 10上でのPythonによるTCP接続がRST終了してしまう", "view_count": 96 }
[ { "body": "> サーバー、クライアントともにVM上で動作しており、loopbackアドレスで通信しています。\n\n>\n```\n\n> host = '192.168.1.3'\n> port = 1400\n> instScoket = SocketClient(host,port)\n> \n```\n\n`192.168.1.3`はループバックアドレスではありません。ループバックアドレス`127.0.0.1`を使用するか、Firewallルールを見直す必要があるかもしれません。\n\n* * *\n\n一般に、ネットワーク処理には時間がかかるため、ソケットにはブロッキングモードと非ブロッキングモードが存在します。\n\n * ブロッキングモードは処理が完了するまで待ってから次に進みます。失敗したらエラーが返されます。\n * 非ブロッキングモードは処理が開始できた時点で次に進みます。処理が完了したかどうか、成功したかどうかは別途調べる必要があります。\n\nしかし、質問のコードにはモード設定をする処理がなくどちらのモードを想定しているのか読み取れません。ブロッキングモードであれば次の行に進んだ時点で処理は完了しているわけですから`time.sleep(1)`のような時間調整は必要ありません。かといって非ブロッキングモードでは処理が成功しているとは限りませんので、完了確認が必要ですがそのようなコードも見当たりません。\n\n> connectionは成功しており、sendされたデータも、パケットキャプチャでは確認できています。\n\nと書かれていますが、`instScoket.connect()`は本当に成功しているのでしょうか?\nパケットキャプチャレベルで言うと、3ウェイ・ハンドシェイクの`SYN+ACK`は返ってきているのでしょうか?", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T22:55:00.923", "id": "96066", "last_activity_date": "2023-08-28T22:55:00.923", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "4236", "parent_id": "96060", "post_type": "answer", "score": 1 } ]
96060
null
96066
{ "accepted_answer_id": null, "answer_count": 0, "body": "AWS lambda上でSelenium(python)を用いて\n\nhttps://app.squadbeyond.com/\n\nこのサイトをスクレイピングしようとしています。\n\nローカルではうまくいくのですが、AWS上で実行しようとすると、画面が真っ白でHTML要素が表示されません。\n\ntime.sleepやwait系の類は何度も試しているので違います。 \nまた、UA偽装も関係ありませんでした。\n\n何か他にやり方はありますか?", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T08:52:43.083", "favorite_count": 0, "id": "96061", "last_activity_date": "2023-08-28T08:52:43.083", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59603", "post_type": "question", "score": 0, "tags": [ "python", "aws", "selenium", "aws-lambda" ], "title": "AWS lambda+seleniumでHTMLが描画されない", "view_count": 28 }
[]
96061
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "PythonでPlotlyを使って結果を出そうとしています。計算はしてくれるのですが結果の図を表示するブラウザーが開きません。firefoxをアップロードしています。以下のような結果が出ます。\n\n```\n\n /usr/bin/x-www-browser: 12: xdg-settings: not found\n 2023/08/28 18:49:40.242258 cmd_run.go:1055: WARNING: cannot start document portal: dial unix /run/user/1000/bus: connect: no such file or directory\n Please check the plot on your browser.\n I'm here\n \n```", "comment_count": 3, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T10:20:45.720", "favorite_count": 0, "id": "96062", "last_activity_date": "2023-08-28T10:32:54.027", "last_edit_date": "2023-08-28T10:32:54.027", "last_editor_user_id": "3060", "owner_user_id": "59605", "post_type": "question", "score": 0, "tags": [ "python", "plotly-python" ], "title": "PythonのPlotlyでブラウザーが出てこない。", "view_count": 48 }
[]
96062
null
null
{ "accepted_answer_id": "96067", "answer_count": 1, "body": "Google\nColab上から以下のサイトへPythonのrequestsパッケージを利用してhttpsリクエストを発行すると、`UNEXPECTED_EOF_WHILE_READING`\nエラーが発生しました。\n\nアクセスしようとしたサイト: \n<https://demo-kabuka.e-shiten.jp/e_api_v4r3/>\n\nエラーが発生したコードは以下です。\n\n```\n\n import requests\n \n response = requests.get(url='https://demo-kabuka.e-shiten.jp/e_api_v4r3/')\n display(response)\n display(response.content)\n \n```\n\n以下はGoogle Colabでエラーが発生したときの実行結果です。\n\n```\n\n ---------------------------------------------------------------------------\n SSLEOFError Traceback (most recent call last)\n /usr/local/lib/python3.10/dist-packages/urllib3/connectionpool.py in _make_request(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)\n 466 try:\n --> 467 self._validate_conn(conn)\n 468 except (SocketTimeout, BaseSSLError) as e:\n \n 18 frames\n /usr/local/lib/python3.10/dist-packages/urllib3/connectionpool.py in _validate_conn(self, conn)\n 1091 if conn.is_closed:\n -> 1092 conn.connect()\n 1093 \n \n /usr/local/lib/python3.10/dist-packages/urllib3/connection.py in connect(self)\n 641 \n --> 642 sock_and_verified = _ssl_wrap_socket_and_match_hostname(\n 643 sock=sock,\n \n /usr/local/lib/python3.10/dist-packages/urllib3/connection.py in _ssl_wrap_socket_and_match_hostname(sock, cert_reqs, ssl_version, ssl_minimum_version, ssl_maximum_version, cert_file, key_file, key_password, ca_certs, ca_cert_dir, ca_cert_data, assert_hostname, assert_fingerprint, server_hostname, ssl_context, tls_in_tls)\n 782 \n --> 783 ssl_sock = ssl_wrap_socket(\n 784 sock=sock,\n \n /usr/local/lib/python3.10/dist-packages/urllib3/util/ssl_.py in ssl_wrap_socket(sock, keyfile, certfile, cert_reqs, ca_certs, server_hostname, ssl_version, ciphers, ssl_context, ca_cert_dir, key_password, ca_cert_data, tls_in_tls)\n 468 \n --> 469 ssl_sock = _ssl_wrap_socket_impl(sock, context, tls_in_tls, server_hostname)\n 470 return ssl_sock\n \n /usr/local/lib/python3.10/dist-packages/urllib3/util/ssl_.py in _ssl_wrap_socket_impl(sock, ssl_context, tls_in_tls, server_hostname)\n 512 \n --> 513 return ssl_context.wrap_socket(sock, server_hostname=server_hostname)\n \n /usr/lib/python3.10/ssl.py in wrap_socket(self, sock, server_side, do_handshake_on_connect, suppress_ragged_eofs, server_hostname, session)\n 512 # ctx._wrap_socket()\n --> 513 return self.sslsocket_class._create(\n 514 sock=sock,\n \n /usr/lib/python3.10/ssl.py in _create(cls, sock, server_side, do_handshake_on_connect, suppress_ragged_eofs, server_hostname, context, session)\n 1070 raise ValueError(\"do_handshake_on_connect should not be specified for non-blocking sockets\")\n -> 1071 self.do_handshake()\n 1072 except (OSError, ValueError):\n \n /usr/lib/python3.10/ssl.py in do_handshake(self, block)\n 1341 self.settimeout(None)\n -> 1342 self._sslobj.do_handshake()\n 1343 finally:\n \n SSLEOFError: [SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1007)\n \n During handling of the above exception, another exception occurred:\n \n SSLError Traceback (most recent call last)\n /usr/local/lib/python3.10/dist-packages/urllib3/connectionpool.py in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)\n 789 # Make the request on the HTTPConnection object\n --> 790 response = self._make_request(\n 791 conn,\n \n /usr/local/lib/python3.10/dist-packages/urllib3/connectionpool.py in _make_request(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)\n 490 new_e = _wrap_proxy_error(new_e, conn.proxy.scheme)\n --> 491 raise new_e\n 492 \n \n SSLError: [SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1007)\n \n The above exception was the direct cause of the following exception:\n \n MaxRetryError Traceback (most recent call last)\n /usr/local/lib/python3.10/dist-packages/requests/adapters.py in send(self, request, stream, timeout, verify, cert, proxies)\n 485 try:\n --> 486 resp = conn.urlopen(\n 487 method=request.method,\n \n /usr/local/lib/python3.10/dist-packages/urllib3/connectionpool.py in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)\n 843 \n --> 844 retries = retries.increment(\n 845 method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2]\n \n /usr/local/lib/python3.10/dist-packages/urllib3/util/retry.py in increment(self, method, url, response, error, _pool, _stacktrace)\n 514 reason = error or ResponseError(cause)\n --> 515 raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]\n 516 \n \n MaxRetryError: HTTPSConnectionPool(host='demo-kabuka.e-shiten.jp', port=443): Max retries exceeded with url: /e_api_v4r3/ (Caused by SSLError(SSLEOFError(8, '[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1007)')))\n \n During handling of the above exception, another exception occurred:\n \n SSLError Traceback (most recent call last)\n <ipython-input-40-1f9596a04e09> in <cell line: 3>()\n 1 import requests\n 2 \n ----> 3 response = requests.get(url='https://demo-kabuka.e-shiten.jp/e_api_v4r3/')\n 4 display(response)\n 5 display(response.content)\n \n /usr/local/lib/python3.10/dist-packages/requests/api.py in get(url, params, **kwargs)\n 71 \"\"\"\n 72 \n ---> 73 return request(\"get\", url, params=params, **kwargs)\n 74 \n 75 \n \n /usr/local/lib/python3.10/dist-packages/requests/api.py in request(method, url, **kwargs)\n 57 # cases, and look like a memory leak in others.\n 58 with sessions.Session() as session:\n ---> 59 return session.request(method=method, url=url, **kwargs)\n 60 \n 61 \n \n /usr/local/lib/python3.10/dist-packages/requests/sessions.py in request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)\n 587 }\n 588 send_kwargs.update(settings)\n --> 589 resp = self.send(prep, **send_kwargs)\n 590 \n 591 return resp\n \n /usr/local/lib/python3.10/dist-packages/requests/sessions.py in send(self, request, **kwargs)\n 701 \n 702 # Send the request\n --> 703 r = adapter.send(request, **kwargs)\n 704 \n 705 # Total elapsed time of the request (approximately)\n \n /usr/local/lib/python3.10/dist-packages/requests/adapters.py in send(self, request, stream, timeout, verify, cert, proxies)\n 515 if isinstance(e.reason, _SSLError):\n 516 # This branch is for urllib3 v1.22 and later.\n --> 517 raise SSLError(e, request=request)\n 518 \n 519 raise ConnectionError(e, request=request)\n \n SSLError: HTTPSConnectionPool(host='demo-kabuka.e-shiten.jp', port=443): Max retries exceeded with url: /e_api_v4r3/ (Caused by SSLError(SSLEOFError(8, '[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1007)')))\n \n```\n\n一方、Shellのcurlでhttpsリクエストを発行したところ、正しくレスポンスを取得できました。(レスポンスはshift-\njisのため一部文字化けします。)\n\n```\n\n !curl https://demo-kabuka.e-shiten.jp/e_api_v4r3/\n \n```\n\nGoogle Colab以外のパソコンでは、Pythonのrequestsパッケージも正しく動作しているため、Google\nColab固有の問題かと思うのですが、原因を調べる方法など教えていただけないでしょうか?\n\nrequestsパッケージのバージョンは 2.31.0 でした。\n\n```\n\n !pip3 show requests\n \n Name: requests\n Version: 2.31.0\n Summary: Python HTTP for Humans.\n Home-page: https://requests.readthedocs.io\n Author: Kenneth Reitz\n Author-email: me@kennethreitz.org\n License: Apache 2.0\n Location: /usr/local/lib/python3.10/dist-packages\n Requires: certifi, charset-normalizer, idna, urllib3\n Required-by: CacheControl, chromadb, community, earthengine-api, embedchain, fastai, folium, gcsfs, gdown, google-api-core, google-cloud-bigquery, google-cloud-storage, google-colab, gspread, gTTS, jira, kaggle, langchain, langsmith, moviepy, music21, openai, pandas-datareader, panel, pooch, posthog, pymystem3, python-keycloak, requests-oauthlib, requests-toolbelt, spacy, Sphinx, tensorboard, tensorflow-datasets, torchdata, torchtext, torchvision, tweepy, twilio, yfinance, youtube-transcript-api\n \n```", "comment_count": 4, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T10:46:27.963", "favorite_count": 0, "id": "96063", "last_activity_date": "2023-08-28T23:55:19.213", "last_edit_date": "2023-08-28T18:14:12.630", "last_editor_user_id": "3060", "owner_user_id": "35267", "post_type": "question", "score": 0, "tags": [ "python", "python3", "google-colaboratory" ], "title": "Google Colabで特定のサイトへhttpsリクエストを送信すると、UNEXPECTED_EOF_WHILE_READING エラーが発生する", "view_count": 106 }
[ { "body": "エラーメッセージにはもう一つ関連するモジュール`urllib3`があり、そちらの版数が`新しい`ことが原因ですね。 \n以下のように 1.xx系の最終版を指定して置き換えると動作するようになりました。\n\n```\n\n !pip3 install -U urllib3==1.26.16\n \n```\n\n結果はこうなりました。\n\n```\n\n <Response [200]>\n b'<!DOCTYPE HTML>\\n<!--\\n Product:\\n \\tmfds (realtime stock price board application modules).\\n \\n Copyright:\\n \\tCopyright (C) 2000 GOODLOTS CO.,LTD. ALL RIGHT RESERVED.\\n \\n Revision:\\n\\t$Id: mfds_json_api_move.html 1062 2023-02-28 04:45:07Z yoshi $\\n \\n Function:\\n \\tMFDS, json-api HP menu module (v4.0-000).\\n\\n Create:\\n\\t2022.06.08\\n\\tY.Yoshizawa\\n\\n-->\\n<html lang=\"ja\">\\n<head>\\n\\t<meta http-equiv=\"content-type\" content=\"text/html; charset=Shift_JIS\">\\n\\t<meta http-equiv=\"content-style-type\" content=\"text/css\">\\n\\t<meta http-equiv=\"content-script-type\" content=\"text/javascript\">\\n \\t<script\\ttype=\"text/javascript\" src=\"jquery-3.3.1.min.js\"></script>\\n\\t<link rel=\"stylesheet\" type=\"text/css\" href=\"mfds_json_api_sample.css\" />\\n\\t<title>\\x97\\xa7\\x89\\xd4\\x8f\\xd8\\x8c\\x94\\x81E\\x82\\x85\\x8ex\\x93X\\x81E\\x82`\\x82o\\x82h</title>\\n</head>\\n<body style=\"display:none;\">\\n\\t<!-- page title begin. -->\\n\\t<table>\\n\\t<tr>\\n\\t\\t<td><a href=\"mfds_json_api_menu.html\"><img class=\"page_logo\" /></a></td>\\n\\t\\t<td><span class=\"page_title\">\\x97\\xa7\\x89\\xd4\\x8f\\xd8\\x8c\\x94\\x81E\\x82\\x85\\x8ex\\x93X\\x81E\\x82`\\x82o\\x82h\\x90\\xea\\x97p\\x83y\\x81[\\x83W</span></td>\\n\\t</tr>\\n\\t</table>\\n\\t<!-- page title end. -->\\n\\n\\t<!-- page body begin. -->\\n\\t<hr>\\n\\t<br>\\n\\t<br>\\n\\t\\x81@\\x81@\\x81@\\x81@\\x96{\\x83y\\x81[\\x83W\\x82\\xcd\\x88\\xf8\\x82\\xc1\\x89z\\x82\\xb5\\x92v\\x82\\xb5\\x82\\xdc\\x82\\xb5\\x82\\xbd\\x81B<br>\\n\\t<br>\\n\\t\\x81@\\x81@\\x81@\\x81@\\x90V\\x82\\xb5\\x82\\xa2\\x82t\\x82q\\x82k\\x82\\xcd<a href=\"https://www.e-shiten.jp/e_api/\">\\x82\\xb1\\x82\\xbf\\x82\\xe7</a>\\x82\\xc5\\x82\\xb7\\x81B<br>\\n</body>\\n<script>\\n$(function ()\\n{\\n\\t$(\\'.page_logo\\').attr (\\'src\\', \\'logo_web.gif\\');\\n\\t$(\\'body\\').css (\\'display\\', \\'\\');\\n});\\n</script>\\n</html>\\n'\n \n```", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T23:55:19.213", "id": "96067", "last_activity_date": "2023-08-28T23:55:19.213", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "26370", "parent_id": "96063", "post_type": "answer", "score": 2 } ]
96063
96067
96067
{ "accepted_answer_id": null, "answer_count": 0, "body": "以下の本の346ページのAPIを呼び出すWebアプリを学習をしているのですが、コードを実行してもエラーメッセージが出てきて解決方がわからないので教えて欲しいです。 \n仮想環境はAnacondaを使ってPythonをやっています。\n\n[PythonによるAI・機械学習・深層学習アプリのつくり方\n(Amazon)](https://www.amazon.co.jp/dp/4802612796/)\n\n実行しているコード \n<https://github.com/yjyu12/uni-\ntheme/tree/99e98995df940ed58299b6f74b56def258600daa/Theme>\n\nエラーが発生している場所(desk.py)\n\n```\n\n [Running] python -u \"/Users/yamadaakira/Desktop/Theme/tempCodeRunnerFile.py\"\n Traceback (most recent call last):\n File \"/Users/yamadaakira/Desktop/Theme/tempCodeRunnerFile.py\", line 1, in <module>\n models\n NameError: name 'models' is not defined\n \n [Done] exited with code=1 in 0.062 seconds\n \n```\n\nエラーコード(tfidf.py)\n\n```\n\n Intel MKL WARNING: Support of Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) enabled only processors has been deprecated. Intel oneAPI Math Kernel Library 2025.0 will require Intel(R) Advanced Vector Extensions (Intel(R) AVX) instructions.\n Intel MKL WARNING: Support of Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) enabled only processors has been deprecated. Intel oneAPI Math Kernel Library 2025.0 will require Intel(R) Advanced Vector Extensions (Intel(R) AVX) instructions.\n \n Failed initializing MeCab. Please see the README for possible solutions:\n \n https://github.com/SamuraiT/mecab-python3#common-issues\n \n If you are still having trouble, please file an issue here, and include the\n ERROR DETAILS below:\n \n https://github.com/SamuraiT/mecab-python3/issues\n \n issueを英語で書く必要はありません。\n \n ------------------- ERROR DETAILS ------------------------\n arguments: -d /opt/homebrew/lib/mecab/dic/mecab-ipadic-neologd\n error message: [ifs] no such file or directory: /opt/homebrew/lib/mecab/dic/mecab-ipadic-neologd/dicrc\n Traceback (most recent call last):\n File \"/Users/yamadaakira/Desktop/Theme/tfidf.py\", line 7, in <module>\n ----------------------------------------------------------\n tagger = MeCab.Tagger(\n File \"/Users/yamadaakira/opt/anaconda3/envs/mecab/lib/python3.9/site-packages/MeCab/__init__.py\", line 124, in __init__\n super(Tagger, self).__init__(args)\n RuntimeError\n \n [Done] exited with code=1 in 7.969 seconds\n \n```", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-28T15:33:29.120", "favorite_count": 0, "id": "96065", "last_activity_date": "2023-08-28T17:11:07.117", "last_edit_date": "2023-08-28T17:11:07.117", "last_editor_user_id": "3060", "owner_user_id": "59292", "post_type": "question", "score": 0, "tags": [ "python", "anaconda" ], "title": "pythonによるai・機械学習・深層学習アプリのつくり方の教科書についての質問", "view_count": 79 }
[]
96065
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "現在、とある既存サービスのリプレイス進めており、 \nそのサービスではクライアントごとに各管理画面にログインさせる構造となっています。\n\n既存サービスでは、各クライアントはログインIDを保有しておらずパスワードのみで認証しているため、一旦パスワードのみでログインさせ、その後クライアント自身でIDを設定させる構成を検討しています。\n\n既存サービスは約10年前にFuel PHPで開発されており、セキュリティの脆弱性などの観点から、今回Laravel10でリプレイスが決定しました。\n\n開発FWなども異なり以前のソースコードはあまり参考にできそうになく、 \nBreezeを使用してこのような機構が可能かどうか、可能であれば留意点をご教示いただけますと幸いです。\n\nWe are currently in the process of replacing an existing service, \nThe service has a structure that allows each client to log in to each\nmanagement screen.\n\nIn the existing service, each client does not have a login ID, but only a\npassword for authentication, \nWe are considering a structure that allows clients to log in with a password\nonly and then set their own IDs.\n\nThe existing service was developed using Fuel PHP about 10 years ago, \nDue to security vulnerabilities, we have decided to replace it with Laravel\n10.\n\nThe development FW was different, and the previous source code was not very\nuseful, \nWe would appreciate it if you could tell us if such a mechanism is possible\nusing Breeze, and if so, what we need to keep in mind.\n\n開発環境:PHP8.2.0、Laravel10.1、MAMP", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-29T05:28:57.843", "favorite_count": 0, "id": "96069", "last_activity_date": "2023-08-29T05:34:25.573", "last_edit_date": "2023-08-29T05:34:25.573", "last_editor_user_id": "59611", "owner_user_id": "59611", "post_type": "question", "score": 0, "tags": [ "php", "laravel", "mamp" ], "title": "Laravelの”Breeze”でパスワードのみのログイン機能は作れますか|Is it possible to create a password-only login function by customizing Laravel's authentication library Breeze?", "view_count": 49 }
[]
96069
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "スクロールに合わせてfadeInしたいですが、ブラウザが開かれたタイミングでfadeInされてしまいます。\n\nコンソールにエラーはでておりません。 \nfadeInの動きはできているので、問題なく読み込みされてるかと思うのですが \nfadeInのタイミングだけスクロールにあって動きません。 \n初歩的な質問で恐縮ですが、よろしくお願い致します。\n\n```\n\n <div class=\"test\"></div>\n <ul>\n <li class=\"animate__animated fadeInUp animate__fadeInUp\">\n <div class=\"step-number\">STEP1<p>テキストテキストテキスト</p>\n </div>\n </li>\n <li class=\"animate__animated fadeInUp animate__fadeInUp\">\n <div class=\"step-number\">STEP2<p>テキストテキストテキスト</p>\n </div>\n </li>\n <li class=\"animate__animated fadeInUp animate__fadeInUp\">\n <div class=\"step-number\">STEP3<p>テキストテキストテキスト</p>\n </div>\n </li>\n </ul>\n \n .animate__animated{\n opacity: 0;\n }\n \n /*アニメーションしたい要素の上に高さを入れてます*/\n .test{\n height: 50rem;\n width: 5rem;\n background-color: aqua;\n }\n \n $('.animate__animated').waypoint({\n handler: function(direction) {\n if (direction === 'down') {\n $(this.element)\n .addClass('.animate__fadeInUp');\n }\n },\n offset: '50%',\n });\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-29T06:57:20.870", "favorite_count": 0, "id": "96070", "last_activity_date": "2023-08-29T08:06:58.197", "last_edit_date": "2023-08-29T08:06:58.197", "last_editor_user_id": "3060", "owner_user_id": "59156", "post_type": "question", "score": 0, "tags": [ "javascript", "html", "css" ], "title": "スクロールに合わせてfadeInしたいが、ブラウザが開かれたタイミングでfadeInされてしまう", "view_count": 40 }
[]
96070
null
null
{ "accepted_answer_id": "96075", "answer_count": 1, "body": "下記のようなエラーが発生してmsedgedriverを使うことが出来ません。chromedriverをインストールして同じようにしてみたのですが、同じエラーが発生します。driverとedgeのバージョンは同じです。わかる方いらしたら何卒宜しくお願い致します。\n\n**エラーメッセージ:**\n\n```\n\n Traceback (most recent call last):\n File \"C:\\Users\\uc100\\Programing\\Python\\Python311\\Lib\\site-packages\\selenium\\webdriver\\common\\driver_finder.py\", line 38, in get_path\n path = SeleniumManager().driver_location(options) if path is None else path\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"C:\\Users\\uc100\\Programing\\Python\\Python311\\Lib\\site-packages\\selenium\\webdriver\\common\\selenium_manager.py\", line 71, in driver_location\n browser = options.capabilities[\"browserName\"]\n ^^^^^^^^^^^^^^^^^^^^\n AttributeError: 'str' object has no attribute 'capabilities'\n \n During handling of the above exception, another exception occurred:\n \n Traceback (most recent call last):\n File \"c:\\Users\\uc100\\Programing\\Python\\Codingspace\\everything\\seletag1.py\", line 5, in <module>\n driver = webdriver.Edge('./msedgedriver.exe')\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"C:\\Users\\uc100\\Programing\\Python\\Python311\\Lib\\site-packages\\selenium\\webdriver\\edge\\webdriver.py\", line 45, in __init__\n super().__init__(\n File \"C:\\Users\\uc100\\Programing\\Python\\Python311\\Lib\\site-packages\\selenium\\webdriver\\chromium\\webdriver.py\", line 51, in __init__\n self.service.path = DriverFinder.get_path(self.service, options)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"C:\\Users\\uc100\\Programing\\Python\\Python311\\Lib\\site-packages\\selenium\\webdriver\\common\\driver_finder.py\", line 40, in get_path \n msg = f\"Unable to obtain driver for {options.capabilities['browserName']} using Selenium Manager.\"\n ^^^^^^^^^^^^^^^^^^^^\n AttributeError: 'str' object has no attribute 'capabilities'\n \n```\n\n**実行したコード:**\n\n```\n\n from selenium import webdriver\n from selenium.webdriver.common.by import By\n import time\n \n driver = webdriver.Edge('./msedgedriver.exe') \n \n driver.get('https://bing.com')\n \n element = driver.find_element(By.ID,'sb_form_q')\n element.send_keys('WebDriver')\n element.submit()\n \n time.sleep(5)\n driver.quit()\n \n```", "comment_count": 8, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-29T08:31:29.273", "favorite_count": 0, "id": "96072", "last_activity_date": "2023-08-30T05:33:35.457", "last_edit_date": "2023-08-29T08:36:18.930", "last_editor_user_id": "3060", "owner_user_id": "53201", "post_type": "question", "score": 0, "tags": [ "python", "python3", "selenium-webdriver", "microsoft-edge" ], "title": "スクレイピングのためにmsedgedriverを使用したが、エラーが発生する", "view_count": 108 }
[ { "body": "状況をもう少し詳細に説明すると、以下の書き方は selenium 4.0.0 版で非推奨になり、4.10.0 版で廃止されたということです。\n\n```\n\n driver = webdriver.Edge('./msedgedriver.exe') \n \n```\n\nこんなIssueに(ChromeDriverを題材にした)類似の情報があります。 \n[[ Bug]: selenium v4.10.0 removes executable_path from Chrome object\n#12176](https://github.com/SeleniumHQ/selenium/issues/12176) \n[Selenium 4.10.0\nReleased!](https://www.selenium.dev/blog/2023/selenium-4-10-0-released/)\n\n> * Python - removal of several sections of deprecated code.\n> * Most of them were arguments that can be set in the Options classes\n> (browser values) or Service classes (browser driver values).\n> * They have been deprecated since the first Selenium 4 release\n>\n\n[Python - Upgrade to Selenium\n4](https://www.selenium.dev/documentation/webdriver/getting_started/upgrade_to_selenium_4/#python-1)\n\n> executable_path has been deprecated, please pass in a Service object \n> In Selenium 4, you’ll need to set the driver’s executable_path from a\n> Service object to prevent deprecation warnings. (Or don’t set the path and\n> instead make sure that the driver you need is on the System PATH.) \n> Before\n```\n\n> from selenium import webdriver\n> options = webdriver.ChromeOptions()\n> driver = webdriver.Chrome(\n> executable_path=CHROMEDRIVER_PATH,\n> options=options\n> )\n> \n```\n\n>\n> After\n```\n\n> from selenium import webdriver\n> from selenium.webdriver.chrome.service import Service as ChromeService\n> options = webdriver.ChromeOptions()\n> service = ChromeService(executable_path=CHROMEDRIVER_PATH)\n> driver = webdriver.Chrome(service=service, options=options)\n> \n```\n\n質問の場合はパラメータ名'executable_path='の指定も無かったので質問記事のようなエラーになりましたが、該当の行をこんな風に指定していたら:\n\n```\n\n driver = webdriver.Edge(executable_path='./msedgedriver.exe')\n \n```\n\nこんなエラーになったはずです。\n\n```\n\n Traceback (most recent call last):\n File \"c:\\Users\\uc100\\Programing\\Python\\Codingspace\\everything\\seletag1.py\", line 5, in <module>\n driver = webdriver.Edge(executable_path='./msedgedriver.exe')\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n TypeError: WebDriver.__init__() got an unexpected keyword argument 'executable_path'\n \n```\n\nなので上記ChromeDriverの情報と質問の内容を合わせてEdgeDriverに適合させると以下のようになるでしょう。\n\n```\n\n from selenium import webdriver\n from selenium.webdriver.edge.service import Service as EdgeService\n options = webdriver.EdgeOptions()\n service = EdgeService(executable_path='./msedgedriver.exe')\n driver = webdriver.Edge(service=service,options=options)\n \n```\n\nそれから、質問のソースコードはこちらMicrosoftの記事内容を元にしていると思われますが、これに限らずどんな記事でも最新の版数・状況を反映したものとは限らないので広く情報を集めるように注意してください。 \n[Microsoft Edge を自動化する](https://learn.microsoft.com/ja-jp/microsoft-\nedge/webdriver-chromium/?tabs=python#automate-microsoft-edge)\n\nただ、同じ記事の直後の記述では対応しているようなので、ちょっとチグハグですが。 \n[Microsoft Edge WebDriver サービスを管理および構成する](https://learn.microsoft.com/ja-\njp/microsoft-edge/webdriver-chromium/?tabs=python#manage-and-configure-the-\nmicrosoft-edge-webdriver-service) \n[Microsoft Edge オプションを構成する](https://learn.microsoft.com/ja-jp/microsoft-\nedge/webdriver-chromium/?tabs=python#configure-microsoft-edge-options)\n\n他にはコメントでも紹介しましたが、[webdriver-manager -\nPyPI](https://pypi.org/project/webdriver-\nmanager/)を使うとブラウザと対応するWebDriverの版数を簡単に合わせてくれるので便利です。\n\n>\n```\n\n> # selenium 4\n> from selenium import webdriver\n> from selenium.webdriver.edge.service import Service as EdgeService\n> from webdriver_manager.microsoft import EdgeChromiumDriverManager\n> \n> driver =\n> webdriver.Edge(service=EdgeService(EdgeChromiumDriverManager().install()))\n> \n```\n\nそして今の所どのやり方をしても以下のようなエラーメッセージが表示されますが、処理は継続出来るので実際に何か止まってしまったり結果が異常になるような現象に遭遇するまでは取り敢えず無視して使用を続けても良いと思われます。\n\n```\n\n [25012:13632:0830/140503.077:ERROR:chrome_browser_cloud_management_controller.cc(163)] Cloud management controller initialization aborted as CBCM is not enabled.\n [25012:13632:0830/140503.103:ERROR:assistance_home_client.cc(32)] File path C:\\WINDOWS\\SystemTemp\\scoped_dir20584_1571943763\\Default\n \n DevTools listening on ws://127.0.0.1:57583/devtools/browser/4882788b-64b1-48f0-b0db-19befce5bf47\n \n```\n\n気になるならこちら\n[MicrosoftEdge/EdgeWebDriver/Issues](https://github.com/MicrosoftEdge/EdgeWebDriver/issues?q=)\nで報告されたIssuesの中を調べるか、無さそうならその`Issues`に新規に質問してみてください。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-30T05:27:11.000", "id": "96075", "last_activity_date": "2023-08-30T05:33:35.457", "last_edit_date": "2023-08-30T05:33:35.457", "last_editor_user_id": "26370", "owner_user_id": "26370", "parent_id": "96072", "post_type": "answer", "score": 0 } ]
96072
96075
96075
{ "accepted_answer_id": null, "answer_count": 1, "body": "test1をスクロールに合わせて、画面内にでてきたらfadeInさせたいです。 \nブラウザを読み込み、そのままスクロールするだけでしたら問題ないですが、 \nスクロールしたい要素の上にある.accordion-title 詳しくはこちら\nを開いた状態でスクロールすると、開閉により高さが変わり、test1がブラウザに出て来る前にfadein済みになってしまいます。 \ninvalidateOnRefreshの使い方に誤りがあると思うのですが、解決できません。 \nよろしくお願い致します。\n\n```\n\n <section class=\"sotowaku\">\n <h1>テスト</h1>\n <div class=\"container\">\n <div class=\"click accordion-title\">詳しくはこちら</div>\n <div class=\"show\">\n </div>\n </div>\n </section>\n \n <section class=\"apple\"></section>\n \n <section class=\"voice\"> \n <ul class=\"js-trigger1\">\n <li class=\"test1\"></li>\n <li class=\"test2\"></li>\n </ul>\n </section>\n \n \n .sotowaku {\n background-color: #d0e7ff;\n padding: 2.5rem 2rem;\n }\n \n .show {\n height: 225rem;\n display: none;\n }\n \n .apple{\n height: 58rem;\n }\n \n .voice .test1 {\n background-color: blue;\n width: 100%;\n height: 20rem;\n margin: 0 auto;\n }\n \n .voice .test2{\n background-color: red;\n }\n \n \n $('.accordion-title').on('click', function(e) {\n var content = $(this).next();\n content.slideToggle();\n $(this).toggleClass('open');\n \n setTimeout(function () {\n invalidateOnRefresh();\n }, 500);\n });\n \n \n gsap.fromTo(\n \".test1\", \n {\n x: -100, \n autoAlpha: 0, \n },\n {\n x: 0, \n autoAlpha: 1, \n scrollTrigger: {\n trigger: \".js-trigger1\", \n start: \"top 80%\", \n markers: true,\n },\n }\n );\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-30T05:04:17.577", "favorite_count": 0, "id": "96074", "last_activity_date": "2023-08-30T06:38:52.420", "last_edit_date": "2023-08-30T06:27:48.727", "last_editor_user_id": "59156", "owner_user_id": "59156", "post_type": "question", "score": 0, "tags": [ "javascript", "html", "css" ], "title": "アコーディオンの開閉によって変わる高さをgsapに伝えたい", "view_count": 28 }
[ { "body": "自己解決いたしました。 \n使用するプロパティに誤りがありました。 \nScrollTrigger.refresh()にて、できるようになりました。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-30T06:38:52.420", "id": "96077", "last_activity_date": "2023-08-30T06:38:52.420", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59156", "parent_id": "96074", "post_type": "answer", "score": 0 } ]
96074
null
96077
{ "accepted_answer_id": null, "answer_count": 1, "body": "flaskとSQLAlchemyを使っています。\nユーザー情報をデータベースに登録しようとすると、指定したところと別の場所にデータベースのファイルが生成され、データはどこにも保存されていません。\n\napp.pyのコードとディレクトリとデータベース構造、エラー文を添付します。\n\napp.py\n\n```\n\n from flask import Flask\n from flask import render_template\n from flask import request, redirect, url_for\n from flask_sqlalchemy import SQLAlchemy\n \n # create the app\n app = Flask(__name__)\n \n # create the extension\n db = SQLAlchemy()\n # configure the SQLite database, relative to the app instance folder\n app.config[\"SQLALCHEMY_DATABASE_URI\"] = \"sqlite:///project.db\"\n # initialize the app with the extension\n db.init_app(app)\n \n \n # テーブルを定義####################################################\n \n class UserInfo(db.Model):\n __tablename__ = 'user_info'\n UserID = db.Column(db.Integer, primary_key=True)\n User_Name = db.Column(db.String, nullable=False)\n Email = db.Column(db.String, nullable=False)\n Password = db.Column(db.String, nullable=False)\n \n class CommentInfo(db.Model):\n CommentID = db.Column(db.Integer, primary_key=True)\n Comment_Content = db.Column(db.String, nullable=False)\n Comment_Create_Date = db.Column(db.String, nullable=False)\n \n class ThreadInfo(db.Model):\n ThreadID = db.Column(db.Integer, primary_key=True)\n Thread_Name = db.Column(db.String, nullable=False)\n Thread_Content = db.Column(db.String, nullable=False)\n Thread_Create_Date = db.Column(db.String, nullable=False)\n \n \n #Routing##########################################################\n \n @app.route('/')\n def homepage():\n return render_template('homepage.html', \\\n homepage = True, \\\n title = 'homepage.html')\n \n @app.route('/threadpage/')\n def threadpage():\n return render_template('threadpage.html', \\\n threadpage = True, \\\n title = 'threadpage.html')\n \n @app.route('/threadcreate/')\n def threadcreate():\n return render_template('thread_create.html', \\\n thread_create = True, \\\n title = 'thread_create.html')\n \n # ユーザー情報をDBに登録\n @app.route('/userlogin/', methods=['GET', 'POST'])\n def userlogin():\n if request.method == 'POST':\n user_info = UserInfo(\n User_Name = \"a\", #request.form['User_Name'],\n Email = \"b\", #request.form['Email'],\n Password = \"c\", #request.form['Password']\n )\n db.session.add(user_info)\n db.session.commit()\n return redirect('/')#redirect(url_for('user_detail', id=user_info.id))\n else:\n return render_template('user_login.html', \\\n user_login = True, \\\n title = 'user_login.html')\n \n # IDからDBのユーザー情報を取得して表示\n @app.route(\"/user_<int:id>\")\n def user_detail(id):\n user_info = db.get_or_404(UserInfo, id)\n return render_template(\"user_detail.html\", user_info=user_info)\n \n @app.route('/userpage/')\n def userpage():\n return render_template('userpage.html', \\\n userpage = True, \\\n title = 'userpage.html')\n \n \n #おまじない###############################################################\n if __name__ == \"__main__\":\n app.run(debug=True)\n \n```\n\nディレクトリ構造\n\n```\n\n workdir\n blog\n app.py\n instance\n project.db <-これを使いたい\n instance\n project.db <- これが新規作成される、テーブルは作成されず\n \n```\n\nデータベース構造\n\n```\n\n comment_info\n thread_info\n user_info\n UserID\n User_Name\n Email\n Password\n \n```\n\nエラー\n\n```\n\n Traceback (most recent call last):\n File \"C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\sqlalchemy\\engine\\base.py\", line 1965, in _exec_single_context\n self.dialect.do_execute(\n File \"C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\sqlalchemy\\engine\\default.py\", line 921, in do_execute\n cursor.execute(statement, parameters)\n sqlite3.OperationalError: no such table: user_info\n \n The above exception was the direct cause of the following exception:\n \n Traceback (most recent call last):\n File \"C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\flask\\app.py\", line 2190, in wsgi_app\n response = self.full_dispatch_request()\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\flask\\app.py\", line 1486, in full_dispatch_request\n rv = self.handle_user_exception(e)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\flask\\app.py\", line 1484, in full_dispatch_request\n rv = self.dispatch_request()\n ^^^^^^^^^^^^^^^^^^^^^^^\n File \"C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\flask\\app.py\", line 1469, in dispatch_request\n return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) \n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ \n File \"C:\\Users\\user\\sixchan4\\blog\\app.py\", line 69, in userlogin\n db.session.commit()\n File \"C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\sqlalchemy\\orm\\scoping.py\", line 554, in commit\n return self._proxied.commit()\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\sqlalchemy\\orm\\session.py\", line 1923, in commit\n trans.commit(_to_root=True)\n File \"<string>\", line 2, in commit\n File \"C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\sqlalchemy\\orm\\state_changes.py\", line 139, in _go\n ret_value = fn(self, *arg, **kw)\n ^^^^^^^^^^^^^^^^^^^^```\n \n```", "comment_count": 2, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-30T07:10:49.873", "favorite_count": 0, "id": "96078", "last_activity_date": "2023-08-31T01:34:08.257", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59621", "post_type": "question", "score": 1, "tags": [ "python", "flask" ], "title": "flaskでno-such-tableとエラーが出る", "view_count": 45 }
[ { "body": "**自己解決**\n\n従来 \nカレントディレクトリをworkdirにした状態でblog/app.pyを指定して実行していた\n\n解決方法 \nカレントディレクトリをblogにした状態でapp.pyを指定して実行する", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-31T01:34:08.257", "id": "96085", "last_activity_date": "2023-08-31T01:34:08.257", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59621", "parent_id": "96078", "post_type": "answer", "score": 2 } ]
96078
null
96085
{ "accepted_answer_id": null, "answer_count": 0, "body": "スプレッドシートの標準機能では下記③のことができず とても困っています。 \n解決策をアドバイスを頂けたら幸いです。(事情があり急いでいます。)\n\n①google スプレッドシートに保護をかける(特定セルのみ編集可能) \n②保護をかけたスプレッドシートをgoogleclassroomで配付(配付オプション:コピーして配付) \n③ **コピーされたスプレッドシートでも、もとの保護設定を有効にしておきたい**\n\n(詳細追加) \n・保護設定は、スプレッドシート作成者のみが編集可能 \n・Googleclassroomで配付(配付オプション:コピーして配付 するので自動的にコピーが配付されます) \n・配付された側は『「特定のセル」のみ編集(入力)可』 。この保護設定を配付された側が「コピーして利用」しても引き継ぎたいです", "comment_count": 8, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-30T08:42:16.713", "favorite_count": 0, "id": "96079", "last_activity_date": "2023-08-30T12:42:48.730", "last_edit_date": "2023-08-30T12:42:48.730", "last_editor_user_id": "59625", "owner_user_id": "59625", "post_type": "question", "score": 0, "tags": [ "google-apps-script" ], "title": "コピーされたスプレッドシートでも保護設定を引き継ぎたい", "view_count": 61 }
[]
96079
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "unityを会社で勉強するために利用したいと思います。商用利用目的ではありません。UNITY PERSONALを会社のアカウントで使うことは可能ですか?", "comment_count": 2, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-30T11:03:00.663", "favorite_count": 0, "id": "96080", "last_activity_date": "2023-08-30T11:03:00.663", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "43586", "post_type": "question", "score": 0, "tags": [ "unity3d" ], "title": "unity 会社で勉強するための利用", "view_count": 82 }
[]
96080
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "python2ではPHPファイルからURLを持ってきています。ソースコードはほぼ同じなのに下記でエラーが出力されるのがよくわかりません。わかる方宜しくお願い致します。\n\npython1\n\n```\n\n from selenium import webdriver\n from selenium.webdriver.chrome.service import Service as ChromeService\n from webdriver_manager.chrome import ChromeDriverManager\n from selenium.webdriver.common.by import By\n \n driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()))\n \n driver.implicitly_wait(10) # seconds\n \n url = \"https://laboratory.kazuuu.net/get-the-width-and-height-of-an-image-using-python/\"\n \n driver.get(url)\n \n elements = driver.find_elements(By.TAG_NAME,\"title\")\n \n print(elements[0].get_attribute('innerHTML'))\n \n```\n\npython1の出力結果\n\n```\n\n Pythonを使用し画像の幅と高さを取得する | Men of Letters(メン・オブ・レターズ) – 論理的思考/業務改善/プログラミング\n \n```\n\npython2\n\n```\n\n # selenium 4\n from selenium import webdriver\n from selenium.webdriver.chrome.service import Service as ChromeService\n from webdriver_manager.chrome import ChromeDriverManager\n from selenium.webdriver.common.by import By\n import sys\n \n \n if len(sys.argv) != 2:\n print(\"要素数が二つではありません。\")\n \n else:\n try:\n url = sys.argv[1]\n \n driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()))\n \n driver.implicitly_wait(10) # second\n \n driver.get(url)\n \n elements = driver.find_elements(By.TAG_NAME,\"title\")\n \n print(elements[0].get_attribute('innerHTML'))\n \n except Exception as e:\n print(\"error:\",e)\n \n```\n\npython2の出力結果\n\n```\n\n error: 'cp932' codec can't encode character '\\u2013' in position 52: illegal multibyte sequence\n \n```", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-30T14:20:23.273", "favorite_count": 0, "id": "96082", "last_activity_date": "2023-08-30T18:12:05.243", "last_edit_date": "2023-08-30T18:12:05.243", "last_editor_user_id": "3060", "owner_user_id": "53201", "post_type": "question", "score": 0, "tags": [ "python", "php", "python3", "selenium", "selenium-webdriver" ], "title": "PHPから呼び出されたpythonの出力結果がおかしくなる", "view_count": 73 }
[]
96082
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "誰かヒントをお願いします!!!!!!!!", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-30T16:24:36.430", "favorite_count": 0, "id": "96083", "last_activity_date": "2023-08-30T16:24:36.430", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59628", "post_type": "question", "score": -3, "tags": [ "python", "javascript" ], "title": "stake.jp での送金をPythonでしたい", "view_count": 112 }
[]
96083
null
null
{ "accepted_answer_id": "96088", "answer_count": 1, "body": "表題の通り、1秒ごとの数値が1列ずつに格納されているCSVデータを読み取り、 \n1秒おきにIoTプラットフォームへ全くそのまま送信したいと考えております。\n\n現在のコードは以下です。\n\n```\n\n ### CSV_to_.py\n \n import pandas as pd\n import csv\n import datetime\n import subprocess\n import sys\n from pathlib import Path\n \n # Set Parameters\n ADDR = \"********\"\n PORT = \"********\"\n TOPIC = \"********\"\n QOS = \"********\"\n ID = \"********\" #本来のコードには実値が入っています\n \n #CSVファイルをリスト形式で出力\n f = '20210902.csv'\n df = pd.read_csv(f, encoding=\"shift-jis\").values.tolist()\n \n for row in df:\n DATA = ',' . join(map(str,row))\n   print(DATA)\n \n cmd = \"mosquitto_pub --host \" + str(ADDR) +\" --port \"+ str(PORT) + \" --qos 0 --topic \" + str(TOPIC) + \" -m ',\" + str(DATA) + \", ' -i \" + str(ID)\n proc = subprocess.run(cmd, shell = True)\n \n time.sleep(1)\n \n \n```\n\n上記コードを実行すると、\n\n```\n\n 2021/9/2 5:02,0,22.8,1.5,0,0,2.7,98,0,1\n Error: The connection was lost.\n \n```\n\nと表記されラズパイ内でのデータ表示は可能ですが \nIoTプラットフォームへデータが送信できていない状態です。 \nどなたか修正方法についてご教示いただけますと幸いです。\n\nIoTプラットフォーム側で受け取る値が、strで全項目文字列として \n取り扱われているのではないかと設定を見直したところ正常にデータ送信が可能となりました。 \n皆さまのご意見大変参考になりました。ありがとうございます。", "comment_count": 6, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-31T04:37:21.590", "favorite_count": 0, "id": "96086", "last_activity_date": "2023-08-31T09:12:49.180", "last_edit_date": "2023-08-31T09:12:49.180", "last_editor_user_id": "59069", "owner_user_id": "59069", "post_type": "question", "score": 0, "tags": [ "python", "raspberry-pi", "csv" ], "title": "ラズパイに格納したCSVデータを1秒ごとに1行ずつ抜き出し、MQTTを利用してIoTプラットフォームへ送信(転送)したい", "view_count": 86 }
[ { "body": "DATAに値(文字列)をセットしたいのであれば、printの実行結果はNoneなので`DATA = print(',' .\njoin(map(str,row)))`ではなく`DATA = ',' . join(map(str,row))`とすべきだと思います。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-31T05:13:25.527", "id": "96088", "last_activity_date": "2023-08-31T05:13:25.527", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "25830", "parent_id": "96086", "post_type": "answer", "score": 0 } ]
96086
96088
96088
{ "accepted_answer_id": "96089", "answer_count": 1, "body": "PythonでZendeskのヘルプページをエクスポートするため、以下のページを参照し、次のコードを記述しました。\n\n[Backing up your knowledge base with the Help Center API | Zendesk Developer\nDocs](https://developer.zendesk.com/documentation/help_center/help-center-\napi/backing-up-your-knowledge-base-with-the-help-center-\napi/?_ga=2.212588564.1494336950.1693443948-1251591048.1693443948)\n\n```\n\n import osimport datetime\n import requests\n credentials = 'EXAMPLE@EMAIL.COM', 'EXAMPLEPASSWORD'\n zendesk = 'https://SUBDOMAINNAME.zendesk.com'\n language = 'ja=JP'\n \n date = datetime.date.today()\n backup_path = os.path.join(str(date), language)\n if not os.path.exists(backup_path):\n os.makedirs(backup_path)\n \n```\n\nMacのターミナルを起動し、当該スクリプトが存在するディレクトリに移動した後、以下のコマンドを実行しました。\n\n```\n\n python3 make_backup.py\n \n```\n\nその結果、以下の構文エラーが表示されました。\n\n```\n\n File \"/Users/USERNAME/make_backup.py\", line 1\n import osimport datetime\n ^^^^^^^^\n SyntaxError: invalid syntax\n \n```\n\ndatetimeに関するライブラリーが入っていないのかとも思ったのですが、MacにインストールされているPythonは3.11.5のため、問題なさそうです。\n\nこのエラーを回避して、正しく実行する方法を教えてください。", "comment_count": 3, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-31T05:10:43.883", "favorite_count": 0, "id": "96087", "last_activity_date": "2023-08-31T08:16:38.203", "last_edit_date": "2023-08-31T05:52:57.843", "last_editor_user_id": "3060", "owner_user_id": "56369", "post_type": "question", "score": 0, "tags": [ "python", "python3" ], "title": "import 文でエラー SyntaxError: invalid syntax", "view_count": 80 }
[ { "body": "コメントで解決したとのことで回答として書きます。\n\nエラーメッセージに表示された`import osimport\ndatetime`とは、本来2行に分かれているはずのものを書き写す際に1行に連結されてしまったものでしょう。 \n参照リンク先では2行に分かれて記述されています。\n\n> Your script so far should look like this:\n```\n\n> 1 import os\n> 2 import datetime\n> 3 \n> 4 import requests\n> 5 \n> 6 credentials = 'your_zendesk_email', 'your_zendesk_password'\n> \n```\n\n以下省略\n\n参照リンク先のとおり2行に分けるか、1行で書くなら`import os, datetime`に変更してみてください。", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-31T08:16:38.203", "id": "96089", "last_activity_date": "2023-08-31T08:16:38.203", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "26370", "parent_id": "96087", "post_type": "answer", "score": 2 } ]
96087
96089
96089
{ "accepted_answer_id": null, "answer_count": 1, "body": "PyPlまたはTestPyPlで二要素認証(2FA)を行いたいのですが、その前段階のリカバリコードの認証ができません。\n\n* * *\n\nimg.1 二要素認証(2FA)でリカバリコードの使用を求められる\n\n[![二要素認証\\(2FA\\)でリカバリコードの使用を求められる](https://i.stack.imgur.com/8p5AZ.png)](https://i.stack.imgur.com/8p5AZ.png)\n\n* * *\n\nリカバリコード発行までは進みます。しかし、テキストファイルでダウンロードして、その文字列をコピー&ペーストしても「リカバリコード」「回復コードが無効です」と表示されます。\n\nどのようにすれば2要素認証を登録できますでしょうか。お分かりの方、ご教授いただければ幸いです。\n\n# TestPiPIおよびPyPIのリンク\n\n[TestPiPI](https://test.pypi.org/) \n[PyPI](https://pypi.org/)\n\n## PyPIにおける関連Q&A\n\n[二要素認証とは何ですか? また、PyPI上ではどのように動作しますか?](https://test.pypi.org/help/#twofa)\n\n# 使用予定の認証アプリケーション(TOTP)\n\nAndroid端末の[Google\nAuthenticator](https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&hl=ja&gl=US)(プロプライエタリ)を使用予定\n\n# 画面遷移\n\n* * *\n\nimg.2 リカバリーコードの発行(.txtファイルとしてダウンロード保存)\n\n[![リカバリーコードの発行](https://i.stack.imgur.com/Rr2Gl.png)](https://i.stack.imgur.com/Rr2Gl.png)\n\n* * *\n\nimg.3 ダウンロードしたtxtファイルの文字列をコピー&ペースト\n\n[![ダウンロードしたtxtファイルの文字列をコピー&ペースト](https://i.stack.imgur.com/ChJ5A.png)](https://i.stack.imgur.com/ChJ5A.png)\n\n* * *\n\nimg.4 リカバリーコードが無効となる\n\n[![リカバリーコードが無効となる](https://i.stack.imgur.com/PDpA1.png)](https://i.stack.imgur.com/PDpA1.png)", "comment_count": 2, "content_license": "CC BY-SA 4.0", "creation_date": "2023-08-31T09:01:40.543", "favorite_count": 0, "id": "96090", "last_activity_date": "2023-09-02T09:50:47.970", "last_edit_date": "2023-09-01T16:00:35.243", "last_editor_user_id": "3060", "owner_user_id": "58938", "post_type": "question", "score": 0, "tags": [ "pip" ], "title": "PyPlまたはTestPyPlで二要素認証(2FA)を行いたい", "view_count": 89 }
[ { "body": "複数行のリカバリコードから1行のみを選んで貼り付けたところ認証が通りました。\n\nmiy様の下記コメントをもって当質問の回答とし、Closeしたいと思います。 \nありがとうございました!\n\n> リカバリーコードは16進数らしき16桁の文字列だと思いますが、そのようになっていますか?\n> また、使用するのはその内の一つですが、複数行貼り付けてしまっている、ということはありませんか?\n\n複数行※1をCopy&Pasteしておりました。ご指摘いただいたとおりに、1行のみを張り付けたところ、リカバリーコードでの認証が通りました。\n\n無事、そのあとの二要素認証(2FA)も有効化できました。\n\n※1 PyPI,\nTestPyPIは16桁のリカバリーコード(例`259118ef********`)が8個セットで発行されるようです。私は、これを128桁のコード1つと捉えておりました。\n\n### リカバリコードの認証から二要素認証(2FA)の有効化までの手順\n\nimg.1 リカバリコードの認証\n\n[![リカバリコードの認証](https://i.stack.imgur.com/qBvPq.png)](https://i.stack.imgur.com/qBvPq.png)\n\nimg.2 二要素認証(2FA)の有効化\n\n[![二要素認証\\(2FA\\)の有効化](https://i.stack.imgur.com/3xPMa.png)](https://i.stack.imgur.com/3xPMa.png)", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-01T15:54:44.103", "id": "96098", "last_activity_date": "2023-09-02T09:50:47.970", "last_edit_date": "2023-09-02T09:50:47.970", "last_editor_user_id": "3060", "owner_user_id": "58938", "parent_id": "96090", "post_type": "answer", "score": 2 } ]
96090
null
96098
{ "accepted_answer_id": null, "answer_count": 0, "body": "Googleフォームの送信時に、sendEmailメソッドを使用して特定のメールアドレスに通知メールを送信するようにしています。 \n現在はフォーム(およびスクリプト)の作成者Aのメールアドレスから通知されているのですが、送信元のアドレスを変更することは可能でしょうか。 \nフォームのオーナー変更を行なったのですが前オーナー(作成者)が送信元のままとなっており、変更する方法などありましたらご教示いただければと思います。\n\nよろしくお願いいたします。\n\nスクリプトは以下になります。\n\n```\n\n function sendform(e){\n var items = e.response.getItemResponses();\n var msg = '';\n for (var i = 0; i < items.length; i++) {\n var item = items[i];\n var q = item.getItem().getTitle();\n var a = item.getResponse();\n msg += q + ':' + a + '\\n\\n';\n }\n GmailApp.sendEmail('送信先メールアドレス', 'メール件名', msg);\n }\n \n```", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-01T00:58:37.243", "favorite_count": 0, "id": "96091", "last_activity_date": "2023-09-01T04:04:55.900", "last_edit_date": "2023-09-01T04:04:55.900", "last_editor_user_id": "3060", "owner_user_id": "59558", "post_type": "question", "score": 0, "tags": [ "google-apps-script", "form" ], "title": "Googleフォーム送信時に特定のメールアドレス宛に通知メールを送信する際の、送信元メールアドレスを変更したい", "view_count": 47 }
[]
96091
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "I am currently developing in Next.js and React (TypeScript).\n\nThen a problem arose.\n\nIt is the inability to load js files.\n\n**I have tried the following.** \n・Import javascript modules \n`import * as module from '../../../script'; ` \n・require code \n`const remise = require('../../../script/rtoken-3.0.0'); ` \nNeither did it work.\n\nPlease tell me how to write it. \nThank You.\n\nHere is the code. \n・js(path:../../../script/rtoken-3.0.0.min.js)\n\n```\n\n (function (window, undefined) {\n var CONNECTION_TIMEOUT = 5000;\n \n function rtoken() {\n this.consumerID = '';\n this.SessionTimeout = 60000;\n this.ConnectionAddress = '';\n ~\n var rtoken = this;\n window.onbeforeunload = function () {\n rtoken.Abort();\n };\n window.onpagehide = function () {\n rtoken.Abort();\n };\n }\n rtoken.prototype = {\n Init: function () {\n this.consumerID = getUUID();\n this.SessionTimeout = 60000;\n this.TokenType = '';\n    ~\n },\n Create: function () {\n var self = this;\n requestData = \"{\\\"SessionID\\\":\\\"\" + this.consumerID + \"\\\",\" + \"\\\"TokenType\\\":\\\"\" + this.TokenType + \"\\\",\" + \"\\\"Sequence\\\":\\\"\" + this.Sequence + \"\\\",\" + \"\\\"Options\\\":\\\"\" + this.Options + \"\\\"}\";\n exJsonp(self.ConnectionAddress, CONNECTION_TIMEOUT, requestData, \"CreateToken\", function (data) {\n  ~\n });\n },\n };\n \n function exJsonp(url, htttimeout, RequestData, MethodName, Callback) {\n try {\n $.ajax({\n url: url,\n type: 'POST',\n dataType: 'jsonp',\n data: encodeURIComponent(RequestData),\n jsonpCallback: MethodName,\n timeout: htttimeout,\n success: function (data) {\n Callback(data);\n },\n error: function (data) {\n Callback(data);\n },\n complete: function (data) {}\n });\n } catch (e) {\n Callback(null);\n }\n };\n \n function getUUID() {\n var uuid, i, random;\n uuid = \"\";\n for (i = 0; i < 32; i++) {\n ~\n }\n return uuid;\n };\n if (!window.remise) {\n window.remise = {};\n }\n window.remise.rtoken = rtoken;\n })(window);\n \n```\n\ntsfile()\n\n```\n\n ~\n import * as rtoken from '../../../script/rtoken-3.0.0.min'; // ×\n \n export const Index = (props) => {\n const jsModule = require('../../../script/rtoken-3.0.0');\n  var token= jsModule();\n // What does not come in to token\n console.log('token:', token);\n \n return (\n null\n )\n }\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-01T04:35:46.183", "favorite_count": 0, "id": "96092", "last_activity_date": "2023-09-01T04:35:46.183", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59636", "post_type": "question", "score": 0, "tags": [ "javascript", "jquery", "reactjs", "typescript" ], "title": "How to read js files with TypeScript", "view_count": 18 }
[]
96092
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "すみません質問させてください。 \nPower Automate desktopでメールを扱うために \n「outlookからメールメッセージを取得」のアクションを実行しました。\n\nRetreivedEmailsは取得できているので、 \n確認のため、例として件名を \nRetreivedEmails[0].subjectで \n例えば「メッセージを表示」のアクションで \n表示させようとすると表示できています。\n\nしかしsubjectをfromと置き換えて入力しようとすると構文エラーとなります。\n\nフロー変数欄で変数の詳細表示をしてみると \nプロパティ .From に送信元アドレスは表示されています\n\n送信元アドレスを取得して \n添付ファイルの保存時のフォルダ名にしたく \n考えております。\n\n送信元アドレスをうまく取得できる方法 \nをご存知の方、ご指導方よろしくお願いします。", "comment_count": 4, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-01T06:00:30.913", "favorite_count": 0, "id": "96093", "last_activity_date": "2023-09-01T06:32:47.707", "last_edit_date": "2023-09-01T06:32:47.707", "last_editor_user_id": "59638", "owner_user_id": "59638", "post_type": "question", "score": 0, "tags": [ "windows" ], "title": "Power Automate Desktop でoutlookからメールメッセージを取得したがメールの送信元アドレスがつかめません", "view_count": 57 }
[]
96093
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "サイズの小さいwebページだとエラー文が出力されずにスクリーンショットを撮ることが出来るのですが、サイズの大きいwebサイトを撮ろうとするとエラー文が出力され続け、一枚撮るのに三分ほどかかります。この解消方法をずっと調べているのですが、厳しいです。わかる方いらしたら何卒宜しくお願い致します。\n\n```\n\n # selenium 4\n from selenium import webdriver\n from selenium.webdriver.chrome.service import Service as ChromeService\n from webdriver_manager.chrome import ChromeDriverManager\n from selenium.webdriver.common.desired_capabilities import DesiredCapabilities\n import os \n import datetime\n \n \n #ヘッドレス実行 ※全画面用\n options = webdriver.ChromeOptions()\n options.add_argument('--headless')\n options.add_argument('--ignore-certificate-errors')\n options.add_argument('--ignore-certificate-errors-spki-list')\n options.add_argument('--ignore-ssl-errors')\n \n driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()),options=options)\n \n driver.implicitly_wait(10) # seconds\n \n driver.get(\"https://パズドラ.gamewith.jp/\")\n #driver.get(\"https://laboratory.kazuuu.net/get-the-width-and-height-of-an-image-using-python/\")\n #driver.get(\"https://pad.gungho.jp/member/\")\n #driver.get(\"https://www.post.japanpost.jp/zipcode/dl/oogaki-zip.html\")\n \n #保存する画像ファイル名\n fname = datetime.datetime.now().strftime('%Y-%m-%d-%H-%M-%S')\n \n #スクショ保存ディレクトリが存在しなければ生成\n if os.path.isdir(os.getcwd()+\"\\\\ss\") == False:\n os.mkdir(os.getcwd()+\"\\\\ss\")\n \n #ウインドウサイズをWebサイトに合わせて変更 ※全画面用\n width = driver.execute_script(\"return document.body.scrollWidth;\")\n height = driver.execute_script(\"return document.body.scrollHeight;\")\n driver.set_window_size(width,height)\n \n #スクショをPNG形式で保存\n driver.get_screenshot_as_file(os.getcwd() + \"\\\\ss\\\\\" + fname + \".png\")\n \n \n```\n\nエラー文\n\n```\n\n [0901/150328.629:ERROR:ssl_client_socket_impl.cc(968)] handshake failed; returned -1, SSL error code 1, net_error -100\n [0901/150332.492:ERROR:ssl_client_socket_impl.cc(968)] handshake failed; returned -1, SSL error code 1, net_error -103\n [0901/150333.053:ERROR:ssl_client_socket_impl.cc(968)] handshake failed; returned -1, SSL error code 1, net_error -100\n [0901/150335.737:ERROR:ssl_client_socket_impl.cc(968)] handshake failed; returned -1, SSL error code 1, net_error -100\n [0901/150337.184:ERROR:ssl_client_socket_impl.cc(968)] handshake failed; returned -1, SSL error code 1, net_error -103\n [0901/150339.141:ERROR:ssl_client_socket_impl.cc(968)] handshake failed; returned -1, SSL error code 1, net_error -103\n [0901/150339.593:ERROR:ssl_client_socket_impl.cc(968)] handshake failed; returned -1, SSL error code 1, net_error -100\n \n```", "comment_count": 3, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-01T06:08:44.517", "favorite_count": 0, "id": "96094", "last_activity_date": "2023-09-01T07:33:35.753", "last_edit_date": "2023-09-01T07:33:35.753", "last_editor_user_id": "3060", "owner_user_id": "53201", "post_type": "question", "score": 0, "tags": [ "python", "python3", "selenium", "ssl", "selenium-webdriver" ], "title": "handshake failed; returned -1, SSL error code 1, net_error -100のエラー出力", "view_count": 48 }
[]
96094
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "以下のリポジトリですが、自分が環境構築した際はエラーは出なかったのですが、他の方にして頂いた際に、エラーが出てしまいました。 \n<https://github.com/newyee/nuxt-site>\n\nエラー内容は以下になります \n`Cannot find module './src/algoliasearch.helper'`\n\nこちらはローカル環境実行後、 localhost:3000/ja/getting-started/introduction\nこちらアドレスへのアクセス後に出てしまっていたとのことでした。現在は、その対応策としてalgoliasearch-\nhelperモジュールの使用箇所はコメントアウトしています。 \nお手数をおかけし恐縮ですが、他の方のご環境でどうなのか知りたい為、もし可能でしたら一度検証を行い結果を教えて頂けませんでしょうか。 \n何卒、よろしくお願いいたします", "comment_count": 2, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-01T07:55:36.683", "favorite_count": 0, "id": "96095", "last_activity_date": "2023-09-01T07:55:36.683", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "24413", "post_type": "question", "score": 0, "tags": [ "javascript", "vue.js", "nuxt.js" ], "title": "環境構築後、特定のアドレスへアクセスした場合にエラーが出てしまう", "view_count": 55 }
[]
96095
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "## 背景\n\nXcodeプロジェクトに、CocoaPodsでFirebase Crashlyticsを導入しております。 \nその際、dSYMファイル(解析ファイル)は自動アップロードができるように設定したいと思っております。\n\nアプリは以下のように複数のXcodeプロジェクトからできており、メインプロジェクトからAプロジェクトやBプロジェクトを使用している箇所があります。\n\n```\n\n - Aプロジェクト\n - Bプロジェクト\n - メインプロジェクト\n \n```\n\n* * *\n\n## 困っていること\n\nFirebaseの公式サイトを参考に、メインプロジェクトの Build Phases > New Run Script Phases\nを以下のように設定しました。\n\n[https://firebase.google.com/docs/crashlytics/get-\nstarted?hl=ja&platform=ios](https://firebase.google.com/docs/crashlytics/get-\nstarted?hl=ja&platform=ios) \n[https://firebase.google.com/docs/crashlytics/get-deobfuscated-\nreports?platform=ios&hl=ja](https://firebase.google.com/docs/crashlytics/get-\ndeobfuscated-reports?platform=ios&hl=ja)\n\nshell\n\n```\n\n \"${PODS_ROOT}/FirebaseCrashlytics/run\"\n \n```\n\nInput Files\n\n```\n\n ${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}\n ${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${PRODUCT_NAME}\n ${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist\n $(BUILT_PRODUCTS_DIR)/$(UNLOCALIZED_RESOURCES_FOLDER_PATH)/GoogleService-Info.plist\n $(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)\n \n```\n\nしかし、Firebase Consoleを見ると、「見つからない(オプション)」と表示されてしまいます。 \n※一部はアップロードできているのですが、一部はアップロードできていない状況です。(以下のようなイメージです)\n\n[![画像の説明をここに入力](https://i.stack.imgur.com/JkXXc.png)](https://i.stack.imgur.com/JkXXc.png)\n\nこの「見つからない(オプション)」も、「アップロード済み」にするためには、どのように設定すれば良いでしょうか。 \n初歩的な質問で恐れ入りますが、もし分かる方がいましたら、ご教示いただけますと幸いです。", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-01T09:33:57.847", "favorite_count": 0, "id": "96096", "last_activity_date": "2023-09-01T09:33:57.847", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59639", "post_type": "question", "score": 0, "tags": [ "swift", "ios", "firebase" ], "title": "Firebase Crashlytics に dSYM ファイルが一部自動アップロードされない", "view_count": 12 }
[]
96096
null
null
{ "accepted_answer_id": null, "answer_count": 0, "body": "`$ pip-review --auto` を実行してもアップデートできません(?) \nエラー内容としては、subprocess-exited-with-errorとでています。 \nあと、wheelが正しく実行できてない?感じです。一応 `pip install wheel -U` は実行しました。 \nすみません。初心者なものでこれ以上はわかりません。\n\n# 出力\n\n```\n\n Defaulting to user installation because normal site-packages is not writeable\n Requirement already satisfied: blinker in /usr/lib/python3/dist-packages (1.4)\n Collecting blinker\n Using cached blinker-1.6.2-py3-none-any.whl (13 kB)\n Requirement already satisfied: certifi in ./.local/lib/python3.10/site-packages (2023.5.7)\n Collecting certifi\n Using cached certifi-2023.7.22-py3-none-any.whl (158 kB)\n Requirement already satisfied: charset-normalizer in ./.local/lib/python3.10/site-packages (3.1.0)\n Collecting charset-normalizer\n Using cached charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (201 kB)\n Requirement already satisfied: comm in ./.local/lib/python3.10/site-packages (0.1.3)\n Collecting comm\n Using cached comm-0.1.4-py3-none-any.whl (6.6 kB)\n Requirement already satisfied: contourpy in ./.local/lib/python3.10/site-packages (1.0.7)\n Collecting contourpy\n Using cached contourpy-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300 kB)\n Requirement already satisfied: cryptography in /usr/lib/python3/dist-packages (3.4.8)\n Collecting cryptography\n Using cached cryptography-41.0.3-cp37-abi3-manylinux_2_28_x86_64.whl (4.3 MB)\n Requirement already satisfied: dbus-python in /usr/lib/python3/dist-packages (1.2.18)\n Collecting dbus-python\n Using cached dbus-python-1.3.2.tar.gz (605 kB)\n Installing build dependencies ... done\n Getting requirements to build wheel ... error\n error: subprocess-exited-with-error\n \n × Getting requirements to build wheel did not run successfully.\n │ exit code: 1\n ╰─> [30 lines of output]\n Traceback (most recent call last):\n File \"/usr/lib/python3/dist-packages/pip/_vendor/pep517/in_process/_in_process.py\", line 363, in <module>\n main()\n File \"/usr/lib/python3/dist-packages/pip/_vendor/pep517/in_process/_in_process.py\", line 345, in main\n json_out['return_val'] = hook(**hook_input['kwargs'])\n File \"/usr/lib/python3/dist-packages/pip/_vendor/pep517/in_process/_in_process.py\", line 130, in get_requires_for_build_wheel\n return hook(config_settings)\n File \"/tmp/pip-build-env-ol2zwg0d/overlay/local/lib/python3.10/dist-packages/mesonpy/__init__.py\", line 1047, in wrapper\n return func(*args, **kwargs)\n File \"/tmp/pip-build-env-ol2zwg0d/overlay/local/lib/python3.10/dist-packages/mesonpy/__init__.py\", line 1091, in get_requires_for_build_wheel\n with _project(config_settings) as project:\n File \"/usr/lib/python3.10/contextlib.py\", line 135, in __enter__\n return next(self.gen)\n File \"/tmp/pip-build-env-ol2zwg0d/overlay/local/lib/python3.10/dist-packages/mesonpy/__init__.py\", line 985, in _project\n with Project.with_temp_working_dir(\n File \"/usr/lib/python3.10/contextlib.py\", line 135, in __enter__\n return next(self.gen)\n File \"/tmp/pip-build-env-ol2zwg0d/overlay/local/lib/python3.10/dist-packages/mesonpy/__init__.py\", line 831, in with_temp_working_dir\n yield cls(source_dir, tmpdir, build_dir, meson_args, editable_verbose)\n File \"/tmp/pip-build-env-ol2zwg0d/overlay/local/lib/python3.10/dist-packages/mesonpy/__init__.py\", line 652, in __init__\n _check_meson_version()\n File \"/tmp/pip-build-env-ol2zwg0d/overlay/local/lib/python3.10/dist-packages/mesonpy/__init__.py\", line 1026, in _check_meson_version\n meson_version = subprocess.run(['meson', '--version'], check=False, text=True, capture_output=True).stdout\n File \"/usr/lib/python3.10/subprocess.py\", line 503, in run\n with Popen(*popenargs, **kwargs) as process:\n File \"/usr/lib/python3.10/subprocess.py\", line 971, in __init__\n self._execute_child(args, executable, preexec_fn, close_fds,\n File \"/usr/lib/python3.10/subprocess.py\", line 1863, in _execute_child\n raise child_exception_type(errno_num, err_msg, err_filename)\n FileNotFoundError: [Errno 2] No such file or directory: 'meson'\n [end of output]\n \n note: This error originates from a subprocess, and is likely not a problem with pip.\n error: subprocess-exited-with-error\n \n × Getting requirements to build wheel did not run successfully.\n │ exit code: 1\n ╰─> See above for output.\n \n note: This error originates from a subprocess, and is likely not a problem with pip.\n \n```\n\n# 環境\n\n * WSL on Ubuntu \n * VERSION=\"22.04.3 LTS (Jammy Jellyfish)\"\n * Windows 11 Home \n * ver: 22H2\n\n```\n\n Package Version\n ------------------------ -------------\n asttokens 2.2.1\n attrs 23.1.0\n backcall 0.2.0\n blinker 1.4\n certifi 2023.5.7\n charset-normalizer 3.1.0\n cmake 3.27.2\n comm 0.1.3\n command-not-found 0.3\n contourpy 1.0.7\n cryptography 3.4.8\n cycler 0.11.0\n dbus-python 1.2.18\n debugpy 1.6.7\n decorator 5.1.1\n distro 1.7.0\n distro-info 1.1+ubuntu0.1\n et-xmlfile 1.1.0\n exceptiongroup 1.1.3\n executing 1.2.0\n filelock 3.12.3\n fonttools 4.39.4\n graphviz 0.20.1\n gyp 0.1\n htmlmin 0.1.12\n httplib2 0.20.2\n idna 3.4\n ImageHash 4.3.1\n importlib-metadata 4.6.4\n ipykernel 6.25.1\n ipython 8.15.0\n ipywidgets 8.0.6\n japanize-matplotlib 1.1.3\n jedi 0.18.2\n jeepney 0.7.1\n Jinja2 3.1.2\n joblib 1.2.0\n jupyter_client 8.2.0\n jupyter_core 5.3.0\n jupyterlab-widgets 3.0.7\n keyring 23.5.0\n kiwisolver 1.4.4\n launchpadlib 1.10.16\n lazr.restfulclient 0.14.4\n lazr.uri 1.0.6\n lit 16.0.6\n MarkupSafe 2.1.2\n matplotlib 3.6.3\n matplotlib-inline 0.1.6\n more-itertools 8.10.0\n mpmath 1.3.0\n multimethod 1.9.1\n nest-asyncio 1.5.6\n netifaces 0.11.0\n networkx 3.1\n numpy 1.23.5\n nvidia-cublas-cu11 11.10.3.66\n nvidia-cuda-cupti-cu11 11.7.101\n nvidia-cuda-nvrtc-cu11 11.7.99\n nvidia-cuda-runtime-cu11 11.7.99\n nvidia-cudnn-cu11 8.5.0.96\n nvidia-cufft-cu11 10.9.0.58\n nvidia-curand-cu11 10.2.10.91\n nvidia-cusolver-cu11 11.4.0.1\n nvidia-cusparse-cu11 11.7.4.91\n nvidia-nccl-cu11 2.14.3\n nvidia-nvtx-cu11 11.7.91\n oauthlib 3.2.0\n openpyxl 3.1.2\n packaging 23.1\n pandas 1.5.3\n parso 0.8.3\n patsy 0.5.3\n pexpect 4.8.0\n phik 0.12.3\n pickleshare 0.7.5\n Pillow 9.5.0\n pip 22.0.2\n pip-review 1.3.0\n platformdirs 3.5.1\n prompt-toolkit 3.0.38\n psutil 5.9.5\n ptyprocess 0.7.0\n pure-eval 0.2.2\n pydantic 1.10.7\n Pygments 2.15.1\n PyGObject 3.42.1\n PyJWT 2.3.0\n pyparsing 2.4.7\n python-apt 2.4.0+ubuntu2\n python-dateutil 2.8.2\n pytz 2023.3\n PyWavelets 1.4.1\n PyYAML 5.4.1\n pyzmq 25.0.2\n requests 2.28.2\n scikit-learn 1.2.2\n scipy 1.9.3\n seaborn 0.12.2\n SecretStorage 3.3.1\n setuptools 59.6.0\n six 1.16.0\n stack-data 0.6.2\n statsmodels 0.13.5\n sympy 1.12\n systemd-python 234\n tangled-up-in-unicode 0.2.0\n threadpoolctl 3.1.0\n torch 2.0.1\n torchview 0.2.6\n torchvision 0.15.2\n torchviz 0.0.2\n tornado 6.3.2\n tqdm 4.64.1\n traitlets 5.9.0\n triton 2.0.0\n typeguard 2.13.3\n typing_extensions 4.7.1\n tzdata 2023.3\n ubuntu-advantage-tools 8001\n ufw 0.36.1\n unattended-upgrades 0.1\n urllib3 1.26.15\n visions 0.7.5\n wadllib 1.3.6\n wcwidth 0.2.6\n wheel 0.37.1\n widgetsnbextension 4.0.7\n ydata-profiling 4.1.2\n zipp 1.0.0\n \n```\n\n# 追記\n\n * pip, settooltip, wheelを最新に引上げした後に`pip-review --auto`\n\n```\n\n Defaulting to user installation because normal site-packages is not writeable\n Requirement already satisfied: dbus-python in /usr/lib/python3/dist-packages (1.2.16)\n Collecting dbus-python\n Using cached dbus-python-1.3.2.tar.gz (605 kB)\n Installing build dependencies ... done\n Getting requirements to build wheel ... done\n Preparing metadata (pyproject.toml) ... error\n error: subprocess-exited-with-error\n \n × Preparing metadata (pyproject.toml) did not run successfully.\n │ exit code: 1\n ╰─> [94 lines of output]\n + meson setup /tmp/pip-install-o9wc7pf0/dbus-python_98410d1529654481814aa55f32d594f5 /tmp/pip-install-o9wc7pf0/dbus-python_98410d1529654481814aa55f32d594f5/.mesonpy-czhj9p13/build -Dbuildtype=release -Db_ndebug=if-release -Db_vscrt=md --native-file=/tmp/pip-install-o9wc7pf0/dbus-python_98410d1529654481814aa55f32d594f5/.mesonpy-czhj9p13/build/meson-python-native-file.ini\n The Meson build system\n Version: 1.2.1\n Source dir: /tmp/pip-install-o9wc7pf0/dbus-python_98410d1529654481814aa55f32d594f5\n Build dir: /tmp/pip-install-o9wc7pf0/dbus-python_98410d1529654481814aa55f32d594f5/.mesonpy-czhj9p13/build\n Build type: native build\n Project name: dbus-python\n Project version: 1.3.2\n C compiler for the host machine: cc (gcc 9.4.0 \"cc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0\")\n C linker for the host machine: cc ld.bfd 2.34\n Host machine cpu family: x86_64\n Host machine cpu: x86_64\n Compiler for C supports arguments -fno-common: YES\n Compiler for C supports arguments -Wno-missing-field-initializers: YES\n Compiler for C supports arguments -Wno-declaration-after-statement: YES\n Compiler for C supports arguments -Wno-inline: YES\n Compiler for C supports arguments -Wno-redundant-decls: YES\n Compiler for C supports arguments -Wno-switch-default: YES\n Compiler for C supports arguments -Wno-write-strings: YES\n Compiler for C supports arguments -Wcast-align: YES\n Compiler for C supports arguments -Wdouble-promotion: YES\n Compiler for C supports arguments -Wduplicated-cond: YES\n Compiler for C supports arguments -Wfloat-equal: YES\n Compiler for C supports arguments -Wformat-nonliteral: YES\n Compiler for C supports arguments -Wformat-security: YES\n Compiler for C supports arguments -Wformat=2: YES\n Compiler for C supports arguments -Winit-self: YES\n Compiler for C supports arguments -Wlogical-op: YES\n Compiler for C supports arguments -Wmissing-declarations: YES\n Compiler for C supports arguments -Wmissing-format-attribute: YES\n Compiler for C supports arguments -Wmissing-include-dirs: YES\n Compiler for C supports arguments -Wmissing-noreturn: YES\n Compiler for C supports arguments -Wnull-dereference: YES\n Compiler for C supports arguments -Wpacked: YES\n Compiler for C supports arguments -Wpointer-arith: YES\n Compiler for C supports arguments -Wshadow: YES\n Compiler for C supports arguments -Wswitch-enum: YES\n Compiler for C supports arguments -Wundef: YES\n Compiler for C supports arguments -Wunused-but-set-variable: YES\n Compiler for C supports arguments -Wjump-misses-init: YES\n Compiler for C supports arguments -Wmissing-prototypes: YES\n Compiler for C supports arguments -Wnested-externs: YES\n Compiler for C supports arguments -Wold-style-definition: YES\n Compiler for C supports arguments -Wpointer-sign: YES\n Compiler for C supports arguments -Wstrict-prototypes: YES\n Configuring _dbus-python-config.h using configuration\n \n Executing subproject dbus-gmain\n \n dbus-gmain| Project name: dbus-gmain\n dbus-gmain| Project version: undefined\n dbus-gmain| C compiler for the host machine: cc (gcc 9.4.0 \"cc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0\")\n dbus-gmain| C linker for the host machine: cc ld.bfd 2.34\n dbus-gmain| Compiler for C supports arguments -fno-common: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wno-missing-field-initializers: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wcast-align: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wdouble-promotion: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wduplicated-branches: YES\n dbus-gmain| Compiler for C supports arguments -Wduplicated-cond: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wfloat-equal: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wformat-nonliteral: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wformat-security: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wformat=2: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Winit-self: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wlogical-op: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wmissing-declarations: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wmissing-format-attribute: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wmissing-include-dirs: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wmissing-noreturn: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wnull-dereference: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wpacked: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wpointer-arith: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wredundant-decls: YES\n dbus-gmain| Compiler for C supports arguments -Wshadow: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wswitch-default: YES\n dbus-gmain| Compiler for C supports arguments -Wswitch-enum: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wundef: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wunused-but-set-variable: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wwrite-strings: YES\n dbus-gmain| Compiler for C supports arguments -Wdeclaration-after-statement: YES\n dbus-gmain| Compiler for C supports arguments -Wjump-misses-init: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wmissing-prototypes: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wnested-externs: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wold-style-definition: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wpointer-sign: YES (cached)\n dbus-gmain| Compiler for C supports arguments -Wstrict-prototypes: YES (cached)\n dbus-gmain| Found pkg-config: /usr/bin/pkg-config (0.29.1)\n dbus-gmain| WARNING: Found CMake '/home/desert/.local/bin/cmake' but couldn't run it\n dbus-gmain| Found CMake: NO\n dbus-gmain| Run-time dependency dbus-1 found: NO (tried pkgconfig)\n \n ../../subprojects/dbus-gmain/meson.build:107:11: ERROR: Dependency \"dbus-1\" not found, tried pkgconfig\n \n A full log can be found at /tmp/pip-install-o9wc7pf0/dbus-python_98410d1529654481814aa55f32d594f5/.mesonpy-czhj9p13/build/meson-logs/meson-log.txt\n [end of output]\n \n note: This error originates from a subprocess, and is likely not a problem with pip.\n error: metadata-generation-failed\n \n × Encountered error while generating package metadata.\n ╰─> See above for output.\n \n note: This is an issue with the package mentioned above, not pip.\n hint: See above for details.\n \n```", "comment_count": 2, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-01T16:51:22.523", "favorite_count": 0, "id": "96100", "last_activity_date": "2023-09-02T02:12:45.377", "last_edit_date": "2023-09-02T02:12:45.377", "last_editor_user_id": "53242", "owner_user_id": "53242", "post_type": "question", "score": 0, "tags": [ "ubuntu", "pip", "wsl" ], "title": "pip-reviewで正常にアップデートできない", "view_count": 56 }
[]
96100
null
null
{ "accepted_answer_id": null, "answer_count": 1, "body": "Androidアプリの作成についてですが、1つのアプリをインストールして、機能別の2つのアイコンを作成することは可能でしょうか?\n\nそのようなアプリに遭遇したことがなくて、不可能なのかもと思って、困っています。\n\nたとえば、アイコンAは「実行」、アイコンBは「設定」 \nといったように、機能別のアイコンを、Androidスマホ画面に出したいです。\n\nWindowsのソフトでは、1つのソフトをインストールすると、関連するアイコンが複数作成されることは多いです。", "comment_count": 2, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-02T04:06:45.530", "favorite_count": 0, "id": "96101", "last_activity_date": "2023-09-03T01:40:13.803", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59644", "post_type": "question", "score": 1, "tags": [ "android", "android-studio" ], "title": "Androidアプリで、1つのアプリで、機能別の2つのアイコンを作成することは可能ですか?", "view_count": 53 }
[ { "body": "できますよ? \nたぶんですが…。 \nむかーしむかしやって見たような気がします。 \nネットでやり方とか出てると思いますよ? \n一応ですが、その部分の違う範囲にも言えるので知っておいた方が良いこととしてですが…。\n\n一応Androidは画面側とJava側で分かれて作るようになっているように見えますが…。\n\n実際のところは、むかしからずっと作ってる人だと痛いほど痛感していますが \n昔はほぼJavaソースのみでほぼUIとかSwingみたいにして作る方法が主流でした。\n\n言いたいのは何かというと、Java側でUIは操作が大抵そろっているっていうことです。 \nですので、こういう答えをしました。\n\n長くなりましたが、アイコンをオブジェクトにJava側のふるまいに伴って変えたりするのは \n出来るようですよ。\n\n```\n\n //こういう感じでいけるかなと思います。\n public void doChange(Button btn, String mess) {\n if(!mess.equals(\"\")){\n btn.setText(mess);\n }\n btn.setImageResource(R.drawable.iconimage);\n }\n \n```", "comment_count": 0, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-03T00:17:43.420", "id": "96102", "last_activity_date": "2023-09-03T01:40:13.803", "last_edit_date": "2023-09-03T01:40:13.803", "last_editor_user_id": "19110", "owner_user_id": "59651", "parent_id": "96101", "post_type": "answer", "score": 0 } ]
96101
null
96102
{ "accepted_answer_id": null, "answer_count": 0, "body": "言語を新しく作る方法として考えられる方法は、特に何が考えられますか? \nJavaでは作ったんですが、Stringやint等の宣言時にダブルクォーテーション等の文字列とか \ndamy(\",\",\",\");等のメソッドパラメータ内のカンマの応酬とかで悩みました。 \n関数計算とかも結構悩んで作りました…。\n\nじゃぁ問題は何…かですが。 \n実際のところ、ちょくちょくエラーがでてしまうこと。 \nとか、他にメソッド等が実装できない点とか。\n\n結局は、JSとかがAPIで使えるのがあるからそっちなのか?って思ったりしてしまい \n挫折しそうです。\n\n今のままだと、単にBasic程度になってしまうので、オブジェクト指向の言語にしたいです。", "comment_count": 1, "content_license": "CC BY-SA 4.0", "creation_date": "2023-09-03T02:04:08.030", "favorite_count": 0, "id": "96111", "last_activity_date": "2023-09-03T02:04:08.030", "last_edit_date": null, "last_editor_user_id": null, "owner_user_id": "59651", "post_type": "question", "score": 0, "tags": [ "java", "プログラミング言語" ], "title": "言語を新しく作る為には?", "view_count": 38 }
[]
96111
null
null