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": 0,
"body": "Rについて質問です。 \n初心者で申し訳ございません。\n\n現在、腫瘍組織と正常組織を比較して、各遺伝子の発現量に差があるかを、t検定しております。 \nそれに際してのエラーが解決できず、質問させていただきます。\n\n```\n\n func<-function(x){\n result<-t.test(tumor[,x],normal[,x])\n pvalue<-result$p.value\n return(pvalue)\n }\n \n P_value_tt <- lapply(colnames(tumor[1:ncol(tumor)]),func)\n \n```\n\n上記Scriptを実行すると \n下記のエラーが出てきます。\n\n```\n\n t.test.default(tumor[, x], normal[, x]) でエラー: \n data are essentially constant\n Called from: t.test.default(tumor[, x], normal[, x])\n \n```\n\n下記のようにfuncのxを仮に1に変更し実行すると、下記の通り、ある遺伝子のp値はしっかり出てきます。 \nfuncの定義も、その後のp_value_ttの記述も問題ないと考えていますが \nエラーがでる原因が分からず、難渋しております。 \nご教授いただけましたら幸いです。よろしくお願いします。\n\n```\n\n result<-t.test(tumor[,1],normal3[,1])\n pvalue<-result$p.value\n \n > pvalue\n [1] 0.6366935\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-05T01:51:57.647",
"favorite_count": 0,
"id": "91455",
"last_activity_date": "2022-10-05T01:51:57.647",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54707",
"post_type": "question",
"score": 0,
"tags": [
"r",
"rstudio"
],
"title": "Rstudio 遺伝子発現解析のt検定に際してのエラーが解決できません。",
"view_count": 84
} | [] | 91455 | null | null |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "GoDaddyのドメイン名を購入していて、使用してるIPアドレスを1つ繋いでいますが、もう1つ繋ぎたいです。DNS管理画面からどのように複数のIPを追加しますか?\n分かる方がいれば、その追加のし方を教えていただくと大変有り難いです。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-05T06:47:40.663",
"favorite_count": 0,
"id": "91457",
"last_activity_date": "2022-10-05T07:24:36.490",
"last_edit_date": "2022-10-05T07:24:36.490",
"last_editor_user_id": "3060",
"owner_user_id": "52414",
"post_type": "question",
"score": 0,
"tags": [
"dns",
"ipアドレス"
],
"title": "1つのドメイン名に複数のIPアドレス(GoDaddy)",
"view_count": 74
} | [] | 91457 | null | null |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "機械系の学生ですが、課題の一部にプログラミングがあり以下のコードでポアソン方程式を解きCSVファイルへ計算結果を出力する方法を模索していましたが数日進まないので質問させていただきます。プログラミング自体初心者なのでなるべく初心者でもわかるように説明していただければ幸いです。ご容赦ください。Google\nColaboratoryを使用しています。 \n質問内容 \nエラーは出ませんが実行すると一列の数字が出力され3つの列になりません。そもそもx単体で出力すると何も出てこなかったです。グラフを見る限り計算自体は合っていると思うのでどうにかできないかと思いここに来ました。[](https://i.stack.imgur.com/1DRHQ.png) \n[](https://i.stack.imgur.com/sLMm0.png) \n一番いいのはエクセルにそのまま出力できるのが理想ですが難しそうなのでとりあえず出力できることだけを目標に行ってます。\n\n```\n\n from logging import fatal\n from matplotlib import pyplot as plt\n from matplotlib import cm\n from mpl_toolkits.mplot3d import Axes3D\n import numpy as np\n import itertools\n import csv\n \n # 条件設定\n nx = 100\n ny = 100\n nt = 1\n xmin = 0\n xmax = 2\n ymin = 0\n ymax = 2\n \n dx = (xmax - xmin) / (nx - 1)\n dy = (ymax - ymin) / (ny - 1)\n \n # 初期状態\n p = np.zeros((ny, nx))\n pd = np.zeros((ny, nx))\n b = np.zeros((ny, nx))\n c = np.zeros((ny, nx))\n f = np.zeros((ny, nx))\n g = np.zeros((ny, nx))\n h = np.zeros((ny, nx))\n k = np.zeros((ny, nx))\n l = np.zeros((ny, nx))\n o = np.zeros((ny, nx))\n x = np.linspace(xmin, xmax, nx)\n y = np.linspace(xmin, xmax, ny)\n \n # 電荷\n b[ 50 , 1 : 101 : 4 ] = -10.e-8\n c[ 50 , 2 : 101 : 8 ] = -10.e-8\n f[ 50 , 3 : 101 : 8 ] = -10.e-8\n g[ 50 , 4 : 101 : 8 ] = -10.e-8\n h[ 47:50 , 1 : 101 : 4 ] = -10.e-8\n k[ 47 , 0 : 101 : 8 ] = -10.e-8\n l[ 47 , 6 : 101 : 8 ] = -10.e-8\n o[ 47 , 7 : 101 : 8 ] = -10.e-8\n for it in range(nt):\n \n pd = p.copy()\n \n p[1:-1,1:-1] = (((pd[1:-1, 2:] + pd[1:-1, :-2]) * dy**2 +\n (pd[2:, 1:-1] + pd[:-2, 1:-1]) * dx**2 -\n (b[1:-1, 1:-1] + c[1:-1 , 1:-1] + f[1:-1 , 1:-1] + g[1:-1 , 1:-1] + h[1:-1 , 1:-1] + k[1:-1 , 1:-1] + l[1:-1 , 1:-1] + o[1:-1 , 1:-1]) * dx**2 * dy**2) / \n (2 * (dx**2 + dy**2)))\n \n p[0, :] = 0\n p[ny-1, :] = 0\n p[:, 0] = 0\n p[:, nx-1] = 0\n \n \n def plot2D(x, y, p):\n fig = plt.figure(figsize=(11, 7), dpi=100)\n ax = fig.gca(projection='3d')\n X, Y = np.meshgrid (x , y)\n surf = ax.plot_surface(X, Y, p[:], rstride=1, cstride=1, cmap=cm.viridis,linewidth=0, antialiased=False)\n ax.view_init(30, 225)\n ax.set_xlabel('x')\n ax.set_ylabel('y')\n ax.set_zlabel('φ') \n \n plot2D(x, y, p)\n plt.show()\n \n csv_path = \"/content/drive/MyDrive/\"\n # CSVファイル名\n csv_name = 'out_name.csv'\n # リストをCSVファイルに出力('w'の場合は、新規作成)\n with open(csv_path+csv_name, 'w', newline='') as f:\n writer = csv.writer(f)\n writer.writerows([[x, y, p]]) # リスト形式の配列のままcsvファイルに出力\n \n #オブジェクトを生成\n fig = plt.figure(figsize=(11,7), dpi=100)\n fig\n \n xmin = 0\n xmax = 2\n ymin = 0\n ymax = 2\n \n x = np.linspace(xmin, xmax, nx)\n y = np.linspace(xmin, xmax, ny)\n \n X, Y = np.meshgrid(x, y)\n plt.contourf(X, Y, p, alpha=0.5, cmap=cm.viridis) \n plt.colorbar()\n plt.xlabel('X')\n plt.ylabel('Y')\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-05T11:05:34.383",
"favorite_count": 0,
"id": "91458",
"last_activity_date": "2022-10-14T03:43:48.547",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54717",
"post_type": "question",
"score": 0,
"tags": [
"python",
"numpy",
"google-colaboratory"
],
"title": "CSVファイルへの出力がうまくいかない",
"view_count": 233
} | [
{
"body": "ここにいる人たちはテレパシー初心者なので、なるべくエスパーでなくてもわかるよう、質問者さんのやりたいことを具体的に説明していただければ幸いなのですが、どうも無理そうなので勝手にやりたいことを決めつけた上で回答いたします。ご容赦ください。\n\n2次元格子上での x、y、p(x, y) をそれぞれフラット化して、3列のデータとして出力することにします。\n\nまず、質問者さんが行っているように、2次元[ポアソン方程式](https://ja.wikipedia.org/wiki/%E3%83%9D%E3%82%A2%E3%82%BD%E3%83%B3%E6%96%B9%E7%A8%8B%E5%BC%8F)を[境界値問題](https://ja.wikipedia.org/wiki/%E5%A2%83%E7%95%8C%E5%80%A4%E5%95%8F%E9%A1%8C)として、2次元格子上で差分化し[緩和法](https://en.wikipedia.org/wiki/Relaxation_\\(iterative_method\\))を用いて解きます。求めるスカラー場が\np(x, y) です(pは、おそらくφの意味)。ポアソン方程式の右辺をb(x, y)とします。境界条件は p(x, y) = 0\nです。次のサイトが参考になります。\n\n * [宇宙に入ったカマキリ - 【第15回Python流体の数値計算】2次元ポアソン方程式をPythonで実装する](https://takun-physics.net/10186/)\n\n```\n\n from matplotlib import pyplot as plt\n import numpy as np\n \n max_iter = 100000 # 最大イテレーション回数\n eps = 1e-4 # イテレーション間の「相対誤差」がこの値以下になったら終了\n \n nx = 101 # x方向の格子点の数\n ny = 101 # y方向の格子点の数\n xmin = 0 # x座標の最小値\n xmax = 2 # x座標の最大値\n ymin = 0 # y座標の最小値\n ymax = 2 # y座標の最大値\n \n dx = (xmax - xmin) / (nx - 1) # x方向の格子幅\n dy = (ymax - ymin) / (ny - 1) # y方向の格子幅\n \n p = np.zeros((ny, nx)) # 求めたい場\n b = np.zeros((ny, nx)) # 電荷\n x = np.linspace(xmin, xmax, nx) # x方向の格子位置\n y = np.linspace(xmin, xmax, ny) # y方向の格子位置\n \n # 電荷分布を設定する\n \n q0 = -1.0e-7\n \n b[50, 1:101:4] += q0\n b[50, 2:101:8] += q0\n b[50, 3:101:8] += q0\n b[50, 4:101:8] += q0\n b[47:50, 1:101:4] += q0\n b[47, 0:101:8] += q0\n b[47, 6:101:8] += q0\n b[47, 7:101:8] += q0\n \n # 電荷分布をプロットする\n \n im = plt.imshow(b, interpolation=\"none\", extent=(xmin, xmax, ymin, ymax))\n plt.colorbar(im)\n plt.title(\"charge distribution\")\n plt.xlabel(\"$x$\")\n plt.ylabel(\"$y$\")\n plt.show()\n \n # ポアソン方程式を緩和法で解く\n \n for i in range(max_iter):\n p1 = np.zeros((ny, nx))\n p1[1:-1, 1:-1] = (\n (p[1:-1, 2:] + p[1:-1, :-2]) * dy**2\n + (p[2:, 1:-1] + p[:-2, 1:-1]) * dx**2\n - (b[1:-1, 1:-1]) * dx**2 * dy**2\n ) / (2 * (dx**2 + dy**2))\n \n rel_err = np.linalg.norm(p - p1) / np.linalg.norm(p1)\n p = p1\n # if i % 100 == 0:\n # print(f\"i = {i}, rel_err = {rel_err}\")\n if rel_err < eps:\n break\n \n print(f\"rel_err = {rel_err}\")\n \n # 解をプロットする\n \n im = plt.imshow(p, interpolation=\"none\", extent=(xmin, xmax, ymin, ymax))\n plt.colorbar(im)\n plt.title(\"solution\")\n plt.xlabel(\"$x$\")\n plt.ylabel(\"$y$\")\n plt.show()\n \n```\n\n\n\nさて、p(x, y)\nは2次元配列として得られていますが、これを[`flatten`メソッド](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.flatten.html)により1次元配列にフラット化して、(x,\ny, p(x, y))\nの組を1行とする、3列のデータからなる[pandas](https://pandas.pydata.org/)の[データフレーム](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html)を作成します。\n\n```\n\n import pandas as pd\n \n xx, yy = np.meshgrid(x, y)\n \n df = pd.DataFrame(\n {\n \"x\": xx.flatten(),\n \"y\": yy.flatten(),\n \"phi\": p.flatten(),\n }\n )\n \n print(df)\n \n```\n\n```\n\n x y phi\n 0 0.00 0.0 0.0\n 1 0.02 0.0 0.0\n 2 0.04 0.0 0.0\n 3 0.06 0.0 0.0\n 4 0.08 0.0 0.0\n ... ... ... ...\n 10196 1.92 2.0 0.0\n 10197 1.94 2.0 0.0\n 10198 1.96 2.0 0.0\n 10199 1.98 2.0 0.0\n 10200 2.00 2.0 0.0\n \n [10201 rows x 3 columns]\n \n```\n\nあとはデータフレームの[`to_csv`メソッド](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_csv.html)を使えばCSVファイルとして保存できます。\n\n```\n\n df.to_csv(\"output.csv\", index=False, header=True)\n \n```\n\nお好みで、`index=True`や`header=False`にしてください。\n\n同様に、[`to_excel`メソッド](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_excel.html)でExcelファイルとして保存できます(ExcelはCSVを読み込めるので、あまり意味があるかどうかは分かりませんが)。\n\n```\n\n df.to_excel(\"output.xlsx\", index=False, header=True)\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T03:43:48.547",
"id": "91587",
"last_activity_date": "2022-10-14T03:43:48.547",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "36010",
"parent_id": "91458",
"post_type": "answer",
"score": 1
}
] | 91458 | null | 91587 |
{
"accepted_answer_id": "91466",
"answer_count": 2,
"body": "環境\n\n * windows10 HOME\n * ralis 7.0.4\n * Ruby 3.1.2p20\n\nrails sやrails -v, rails -h等のコマンド実行時に以下のエラーがでます。\n\n```\n\n C:\\Users\\ミナ\\Desktop\\プログラミング\\enviroment\\hello_app>rails s\n C:/Ruby31-x64/lib/ruby/3.1.0/pathname.rb:51:in `match?': invalid byte sequence in UTF-8 (ArgumentError)\n from C:/Ruby31-x64/lib/ruby/3.1.0/pathname.rb:51:in `chop_basename'\n from C:/Ruby31-x64/lib/ruby/3.1.0/pathname.rb:375:in `plus'\n from C:/Ruby31-x64/lib/ruby/3.1.0/pathname.rb:355:in `+'\n from C:/Ruby31-x64/lib/ruby/3.1.0/pathname.rb:421:in `join'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler/settings.rb:445:in `global_config_file'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler/settings.rb:93:in `initialize' from C:/Ruby31-x64/lib/ruby/3.1.0/bundler.rb:332:in `new'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler.rb:332:in `settings'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler.rb:101:in `configured_bundle_path'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler.rb:97:in `bundle_path'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler.rb:641:in `configure_gem_home_and_path'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler.rb:83:in `configure'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler.rb:196:in `definition'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler.rb:145:in `setup'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler/setup.rb:10:in `block in <top (required)>'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler/ui/shell.rb:136:in `with_level'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler/ui/shell.rb:88:in `silence'\n from C:/Ruby31-x64/lib/ruby/3.1.0/bundler/setup.rb:10:in `<top (required)>'\n from <internal:C:/Ruby31-x64/lib/ruby/3.1.0/rubygems/core_ext/kernel_require.rb>:85:in `require'\n from <internal:C:/Ruby31-x64/lib/ruby/3.1.0/rubygems/core_ext/kernel_require.rb>:85:in `require'\n from C:/Users/ミナ/Desktop/プログラミング/enviroment/hello_app/config/boot.rb:3:in `<top (required)>'\n from bin/rails:3:in `require_relative'\n from bin/rails:3:in `<main>'\n \n```\n\nした事\n\n * \"invalid byte sequence in UTF-8 rails s\"等で検索し関連記事を見るも記事ごとに問題がまちまちで具体的に自分の場合はどうすればいいかわかりませんでした。\n * 一つ目のエラーの指定先?のpathname.rbの行頭に\"encoding: UTF-8\"と追加してみましたがそれに対してsyntaxエラーがでました。\n\n前提知識として何を学べばこのエラーを解決する糸口になるかご教示お願いします。 \nあるいはRubyやRailsのバージョンの問題なのでしょうか? \n全くの初学者で、初歩的な質問をしてしまっていたら申し訳ありません。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-05T12:26:04.743",
"favorite_count": 0,
"id": "91459",
"last_activity_date": "2022-10-06T02:26:20.270",
"last_edit_date": "2022-10-05T23:03:45.713",
"last_editor_user_id": "54718",
"owner_user_id": "54718",
"post_type": "question",
"score": 0,
"tags": [
"ruby-on-rails",
"ruby",
"windows-10"
],
"title": "rails 7.0.4にてrails コマンドをするとinvalid byte sequence in UTF-8エラーが出て、何を調べればいいかわからない",
"view_count": 587
} | [
{
"body": "> C:\\Users\\ミナ\\Desktop\\プログラミング\\enviroment\\hello_app>\n\n「ミナ」「プログラミング」などパスに日本語を含むディレクトリで作業しています。 \n日本語が混じっていると不具合が発生する可能性があります。 \nパスが半角英数字だけで表せるディレクトリで作業してみてください。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-06T02:17:40.197",
"id": "91465",
"last_activity_date": "2022-10-06T02:17:40.197",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "43005",
"parent_id": "91459",
"post_type": "answer",
"score": 0
},
{
"body": "すぐに再現できる環境がないためログからの推量となりますが\n\nおそらく `C:\\Users\\ミナ\\Desktop\\プログラミング\\enviroment\\hello_app` を `C:\\hello_app`\nあたりにコピーして、そちらで `C:\\hello_app>rails s` すると動くのではないでしょうか\n\n* * *\n\nご提示のログから pathname ライブラリのメソッド `chop_basename` の実行中に `invalid byte sequence in\nUTF-8 (ArgumentError)` が起きたことがわかります\n\n[pathname は名前の通りパス名を扱うライブラリです](https://docs.ruby-\nlang.org/ja/latest/library/pathname.html)\n\nよってパス名の処理中に問題が起きたことが推測されます\n\nOS\nを問わず、マルチバイト(や空白混じり)のパスは処理に難があることが少なくありませんので、可能であればそういったマルチバイトや空白の混じらないパスで試されるとよいかと思います",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-06T02:26:20.270",
"id": "91466",
"last_activity_date": "2022-10-06T02:26:20.270",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "329",
"parent_id": "91459",
"post_type": "answer",
"score": 0
}
] | 91459 | 91466 | 91465 |
{
"accepted_answer_id": "91469",
"answer_count": 1,
"body": "protoファイルを作成し、Go、Nuxtでマイクロサービスを作成し、通信をgRPCで行うサービスを開発しております。\n\nある機能を実現させるため、Youtube Data APIを用いて、取得したデータをフロントサービスにレスポンスとして送ることを考えております。\n\nYoutube Data\nAPIのレスポンスはJSONオブジェクトとして返却されてきますが、その場合に、protoファイルのメッセージ型の中で、フィールドの型をどのように指定すればよいかわからず、長考しております。\n\n```\n\n message ChannelListResponse{\n <型> channel_list = 1 ;\n }\n \n```\n\nアドバイスをいただけると幸いです。\n\n## 追記:やりたいこと\n\n私が行いたい処理として、\"google.golang.org/api/youtube/v3\"というパッケージをGoで用いて、Youtube Data\nAPIレスポンスを取得し、gRPCで通信してフロントサービスへ返却するという処理です。そのため、protoファイルでメッセージ型の中でYoutube\nData APIレスポンスが格納できるフィールドタイプを指定する必要があります。\n\nGoの構造体と同じ扱いができるものをprotoファイルの中で定義できることは、アドバイスをいただき理解ができました。\n\nそして、\"google.golang.org/api/youtube/v3\"にはYoutube Data\nAPIレスポンスであるJSONオブジェクトからGoの構造体にデコードするため、独自の構造体とメソッドが定義されております。つまり、フロントサービスへ返却するのは、\"google.golang.org/api/youtube/v3\"で定義されている構造体から生成されたデータとなります。そのため、Youtube\nData\nAPIレスポンスをそのままフロントサービスへ返却するには、\"google.golang.org/api/youtube/v3\"で定義されている構造体と全く同じ構造体を、protoファイルに記述する必要があります。\n\n私が詰まっている点としては、\"google.golang.org/api/youtube/v3\"で定義されている構造体と全く同じ型定義を、自分で記述する以外に何か良い方法はないのかという点です。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-05T12:54:58.320",
"favorite_count": 0,
"id": "91460",
"last_activity_date": "2022-10-07T00:22:55.440",
"last_edit_date": "2022-10-07T00:16:54.030",
"last_editor_user_id": "19110",
"owner_user_id": "54720",
"post_type": "question",
"score": 0,
"tags": [
"go",
"protocol-buffers"
],
"title": "protoファイルのメッセージ型の中に記述する、フィールド型の指定する型がわからない",
"view_count": 111
} | [
{
"body": "Go でいう構造体の型のようなものを Protocol Buffers の型として定義できるので、これを使うとよさそうです:\n<https://developers.google.com/protocol-buffers/docs/proto3#other>\n\nAPI レスポンスの JSON のスキーマを元に gRPC の型を自動生成することは、やろうと思えばできるとは思いますが、おすすめしません。Protocol\nBuffers にはデフォルト値の概念があったりと JSON とは意味論が異なる部分があるというのと、得られた API レスポンスのすべてを gRPC\nで返したい場合はほぼ無いだろうというのが理由です。\n\n使いたい API エンドポイントはそう多くはないでしょうし、自分で書いちゃうのが今の時点では一番早いかと思います。",
"comment_count": 9,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-06T07:50:11.000",
"id": "91469",
"last_activity_date": "2022-10-07T00:22:55.440",
"last_edit_date": "2022-10-07T00:22:55.440",
"last_editor_user_id": "19110",
"owner_user_id": "19110",
"parent_id": "91460",
"post_type": "answer",
"score": 0
}
] | 91460 | 91469 | 91469 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "プログラミング初心者です。\n\nワークショップに参加し、”results”という名前をつけたリストを使うことになりました。講師からグーグルコラボラトリでリストが共有されたので、まず初めに、そのリストをVSCodeにコピペしたのが画像です。 \nあれこれ試す前にとりあえずリストをprintしようとしたら、下記の説明が。\n\n①Install the latest PowerShell for new features and improvements!\n<https://aka.ms/PSWindows> \n②NameError: name 'results' is not defined\n\n①について \npowershellのインストールは必要なのでしょうか。必要ならしますが、実行結果の表示も後に出ては来るので、さほど重要でないのに求められているような気もします。インストールの仕方を解説したHPはありましたが、必要性についてきちんと解説しているものが見当たりませんでした。毎回出現されると邪魔な文言なので、どなたか教えてくれるとありがたいです。\n\n②について \nJupyterNotebookにコピペしたら普通に実行できるのに、VSCodeだと認識してくれません。なぜでしょうか。Nameerrorとのことですが、エラーの原因がわかりません。\n\nWindows11でANACONDAをインストールし、VSCodeとJupyterNotebookを使っています。今月インストールしたのでどれも最新です。VSCodeではPythonのバージョンは3.9.12と表示されています。こちらもよろしくお願いします。[](https://i.stack.imgur.com/3Lfx9.jpg)",
"comment_count": 3,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-05T17:53:01.273",
"favorite_count": 0,
"id": "91463",
"last_activity_date": "2022-10-06T05:51:10.307",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": null,
"post_type": "question",
"score": 0,
"tags": [
"python",
"powershell",
"anaconda3"
],
"title": "PowerShellのインストールは必要?+なぜnameがdefineされない?",
"view_count": 209
} | [
{
"body": "VSCodeにPython用の拡張機能インストールや環境設定が行われていないか、新しいファイルを作成・保存した時に対象言語がPythonになっていないと思われます。\n\n①はPythonとは独立した内容であり無関係です。必要不要の区別は今回の件とは別に貴方が他の関連することややりたいことの条件等を基に決めてください。 \nちなみに最新版に更新してもデフォルトだと著作権表示と何らかのメッセージは表示されます。 \n現在(あるいは最新)の版数でも起動時のオプションに`-NoLogo`を指定すれば非表示になります。 \n[about_PowerShell_exe](https://learn.microsoft.com/ja-\njp/powershell/module/microsoft.powershell.core/about/about_powershell_exe?view=powershell-5.1)\n\n②は①も含めて、対象ファイルがPythonではなくPowerShellとか何か別の言語のスクリプトとして設定・認識されているために発生している可能性が高いでしょう。\n\n**\\--追記:②に関して--** \nもしかしたら、以下の記事にある「ターミナルでカーソル行を実行」を行っているのかもしれません。\n\n[ターミナルでカーソル行を実行](https://www.python.jp/python_vscode/windows/run/exec_in_terminal.html#%E3%82%BF%E3%83%BC%E3%83%9F%E3%83%8A%E3%83%AB%E3%81%A7%E3%82%AB%E3%83%BC%E3%82%BD%E3%83%AB%E8%A1%8C%E3%82%92%E5%AE%9F%E8%A1%8C)\n\n1行目からの`results =\n[[...]]`を実行せず、`print(results)`の行だけを`Shift`+`Enter`キーで実行しているということはありませんか? \nその場合はresultsが定義されていないので質問のようなエラーが発生する可能性が考えられます。\n\n上記記事のその上にある[ターミナルで選択範囲を実行](https://www.python.jp/python_vscode/windows/run/exec_in_terminal.html#%E3%82%BF%E3%83%BC%E3%83%9F%E3%83%8A%E3%83%AB%E3%81%A7%E9%81%B8%E6%8A%9E%E7%AF%84%E5%9B%B2%E3%82%92%E5%AE%9F%E8%A1%8C)を参考に全てを選択して`Shift`+`Enter`キーで実行するか、編集内容を拡張子`.py`のテキストファイルに保存して[ターミナルでPythonを実行](https://www.python.jp/python_vscode/windows/run/exec_in_terminal.html#%E3%82%BF%E3%83%BC%E3%83%9F%E3%83%8A%E3%83%AB%E3%81%A7Python%E3%82%92%E5%AE%9F%E8%A1%8C)で実行してみてください。 \n**\\--追記終了--**\n\nこちらの記事などを参考に、それらが行われているかを確認し、不足していれば作業を行ってください。 \n分からない・知らない単語や内容があるなら、Webで検索してみると良いでしょう。 \n他にも色々な情報がWeb上にあります。\n\n[Visual Studio Code を Python 用に設定する方法](https://python.softmoco.com/devenv/how-\nto-setup-vs-code-for-python.php) \n[【VSCode】ファイルの種類や設定を変更・確認する方法|拡張子・インデントなど](https://blog-and-destroy.com/30994) \n[新しいファイルを作成する/ファイルを保存する](https://www.javadrive.jp/vscode/file/index6.html)\n\n* * *\n\n例えばWindows\nPowerShellのコマンドプロンプトで質問内容を短縮して直接試してみると以下のようになります。これはWindows10のPowerShell\n5.1でのものですが、質問の①の内容が以下の「新しいクロスプラットフォーム...」の行に相当するでしょう。質問の表示はおそらくPowerShell\nの6系~7系のうち最新でないものが使われているためだと思われます。\n\n```\n\n Windows PowerShell\n Copyright (C) Microsoft Corporation. All rights reserved.\n \n 新しいクロスプラットフォームの PowerShell をお試しください https://aka.ms/pscore6\n \n PS C:\\Users\\UserName> results = [['Calabria', 50.8],\n >> ['Sardinia', 53.17]]\n results : 用語 'results' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識され\n ません。名前が正しく記述されていることを確認し、パスが含まれている場合はそのパスが正しいことを確認してから、再試行して\n ください。\n 発生場所 行:1 文字:1\n + results = [['Calabria', 50.8],\n + ~~~~~~~\n + CategoryInfo : ObjectNotFound: (results:String) [], CommandNotFoundException\n + FullyQualifiedErrorId : CommandNotFoundException\n \n PS C:\\Users\\UserName>\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-06T01:13:00.217",
"id": "91464",
"last_activity_date": "2022-10-06T05:51:10.307",
"last_edit_date": "2022-10-06T05:51:10.307",
"last_editor_user_id": "26370",
"owner_user_id": "26370",
"parent_id": "91463",
"post_type": "answer",
"score": 0
}
] | 91463 | null | 91464 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "YouTube DatavAPI v3を使って動画を public でアップロードしたところ、「利用規約とポリシー:YouTube\nによってこの動画は非公開になりました 」というメッセージが表示され、privte表示となり、意図したpublicにはなりません。\n\nもしかしたら、OAuth同意画面におけるスコープの指定をしていないのが原因かもしれません。 \nOAuth認証の申請は必要でしょうか? \nまたその時に必要なスコープとしては、以下がそれらしく見えるのですが、 \n<https://www.googleapis.com/auth/youtube.upload> \nこれだけでよろしいでしょうか?\n\nよろしくお願いいたします。\n\n●追加分 \n該当のコードを記します。\n\nvar video = new Video(); \nvideo.Snippet = new VideoSnippet(); \nvideo.Snippet.Title = title; \nvideo.Snippet.Description = description; \nvideo.Snippet.CategoryId = \"22\"; \nvideo.Status = new VideoStatus(); \nvideo.Status.PrivacyStatus = \"public\"; \nvar filePath = moviePath;\n\nPrivacyStatusを、publicではなく、private、unlistedにすればアップロードができ、異常なメッセージも出ません。",
"comment_count": 6,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-06T17:52:15.413",
"favorite_count": 0,
"id": "91471",
"last_activity_date": "2022-10-08T15:32:08.670",
"last_edit_date": "2022-10-08T15:32:08.670",
"last_editor_user_id": "54741",
"owner_user_id": "54741",
"post_type": "question",
"score": 0,
"tags": [
"youtube-data-api"
],
"title": "YouTube DatavAPI v3を使って動画をアップロードできない",
"view_count": 134
} | [] | 91471 | null | null |
{
"accepted_answer_id": null,
"answer_count": 2,
"body": "今Haskellを使ってタイトルでも書いたように毎n番目の数字をリストから消すコードを書いているのですがどうもうまくいきません。\n\n例)\n\n```\n\n dropevery [0,1,2,3,4,5,6,7,8,9] 3\n [0,1,3,4,6,7,9] \n \n```\n\n*2, 5, 8 と毎3番目の数字がリストから落とされ残った数字が表示されるコードです。\n\nいま色々試しているのですがなかなかうまくいきません。 \n以下のコードは色々試して、いろいろなサイト等をみて書いたものです。まだコーディングが必要な箇所もあるのですが、何を書いたらいいのか分からないです(?と記入した箇所)\n\nどなたか解決案がある方がいらしたら、答えていただけると幸いです。また訂正箇所もあったら教えていただけると幸いです。 \nよろしくお願いします。\n\n現在のコード\n\n```\n\n dropevery :: [a] -> Int -> [a]\n dropevery [] _ = []\n dropevery xs n = go 0 xs\n where go _ [] = []\n go i (y:ys) | i == n = 0(?)\n | otherwise = ?\n \n main = putStrLn (show (dropevery)[0,1,2,3,4,5,6,7,8,9] 3)\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T00:29:24.540",
"favorite_count": 0,
"id": "91472",
"last_activity_date": "2022-10-07T07:09:31.447",
"last_edit_date": "2022-10-07T00:41:02.740",
"last_editor_user_id": "3060",
"owner_user_id": "54742",
"post_type": "question",
"score": 2,
"tags": [
"haskell"
],
"title": "毎n番目の数字をリストから消したい",
"view_count": 116
} | [
{
"body": "こちらでいかがでしょうか:\n\n```\n\n dropevery :: [a] -> Int -> [a]\n dropevery xs n = go xs\n where\n go xs' =\n let (xsNotDropped, xsLeft) = splitAt (n - 1) xs'\n in\n case xsLeft of\n [] -> xsNotDropped\n (_ : xsAfterN) ->\n xsNotDropped ++ go xsAfterN\n \n \n main = putStrLn (show (dropevery [0,1,2,3,4,5,6,7,8,9] 3))\n \n```\n\n以下補足事項:\n\n * もし勉強のために敢えてやっているのであれば恐縮ですが、こういうときは極力自分では再帰を書かずに、標準ライブラリーにある関数(上記の場合`splitAt`)を利用するのをお勧めします。\n * 一般にHaskell製の関数は、他の多くのプログラミング言語と異なり、「主に処理する引数」を後ろに置くことが推奨されています。その方がカリー化と相性がいいためです(詳細が気になる場合は追加の質問を!)。なのでどちらかというと、`dropevery :: Int -> [a] -> [a]`という型にした方がいいかと思います。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T03:52:10.960",
"id": "91476",
"last_activity_date": "2022-10-07T03:52:10.960",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "8007",
"parent_id": "91472",
"post_type": "answer",
"score": 2
},
{
"body": "先頭のn要素を落した部分に対して当該の計算ができたら、それを先頭の(n-1)要素のリストにアペンドすればよい、という最後の一歩に気づけば、シンプルに以下のように考えることができます.\n\n(1) 先頭から(n-1)個もぎとる \n(2) 残りの先頭を捨てる \n(3) その残りに dropEvery n を適用 \n(4) (1)と(3)を連結\n\n```\n\n dropEvery :: Int -> [a] -> [a]\n dropEvery _ [] = []\n dropEvery n xs = take (n-1) xs ++ dropEvery n (drop n xs)\n \n```\n\nまた、 \n(1)先頭から(n-1)個もぎ取る \n(2)残りの先頭を捨てる \nの部分を繰り返して、先に長さn-1以下のリストのリストを得て、これを concat で連結するという方法もあります. \n「つきたて餅から少しずつ捻り取って丸めて黄粉をまぶして、黄粉もちをたくさんつくる」のような(個人の感想)この手法は、unfoldr :: (a ->\nMaybe (b, a)) -> a -> [b](Data.Listモジュールにあります)という標準関数で抽象化されています.\n\n```\n\n dropEvery :: Int -> [a] -> [a]\n dropEvery n = concat . unfoldr f\n where\n f [] = Nothing\n f xs = Just (take (n-1) xs, drop n xs)\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T07:09:31.447",
"id": "91482",
"last_activity_date": "2022-10-07T07:09:31.447",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "24701",
"parent_id": "91472",
"post_type": "answer",
"score": 2
}
] | 91472 | null | 91476 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "■ 質問内容 \n以下のプログラムで、ブラウザのデバイスコンテキストをデスクトップの左上に貼り付けると \n最初は表示されますが、ブラウザを一度最小化して元のサイズに戻してからプログラムを実行すると、 \nFirefoxの場合は空白、Edgeの場合は黒箱が表示されます。 \nなぜウインドウの内容が表示されないのでしょうか? \nまた、表示されるようにするにはどうしたら良いでしょうか?\n\n■ ソースコード \n**bitbtl01.c**\n\n```\n\n #include <windows.h>\n \n #pragma comment(lib, \"user32\")\n #pragma comment(lib, \"gdi32\")\n \n int main()\n {\n HWND hwnddesk = GetDesktopWindow();\n HWND hwndsrc = GetForegroundWindow();\n HDC hdcdest = GetDC(hwnddesk);\n HDC hdcsrc = GetDC(hwndsrc);\n \n BitBlt(hdcdest, 0, 0, 300, 300, hdcsrc, 0, 0, SRCCOPY|CAPTUREBLT);\n \n ReleaseDC(hwnddesk, hdcdest);\n ReleaseDC(hwndsrc, hdcsrc);\n \n return 0;\n }\n \n```\n\n■ 再現方法 \ncl /EHsc bitblt01.c \nsleep 3; .\\bitblt01.exe \nブラウザをマウスでクリック\n\n■ 環境 \nOS: Windows 10 professional 64bit \nブラウザ: Firefox 105.0.1 or Microsoft Edge 106.0.1370.34 (公式ビルド) (64 ビット)",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T00:54:03.610",
"favorite_count": 0,
"id": "91473",
"last_activity_date": "2022-10-07T11:12:23.290",
"last_edit_date": "2022-10-07T01:21:13.033",
"last_editor_user_id": "54326",
"owner_user_id": "54326",
"post_type": "question",
"score": 0,
"tags": [
"windows",
"winapi",
"visual-c++"
],
"title": "ブラウザを最小化して元のサイズに戻すとデバイスコンテキストが空白ですがなぜでしょうか?",
"view_count": 104
} | [
{
"body": "描いたらそこで終わりではなく、その状態を維持するには描画要求に対して再描画する必要があります。 \nまずは、Windows デスクトップアプリケーションの作成方法について学ばれるとよろしいかと。 \n「モジュール 1 初めての Windows プログラム」 \n<https://learn.microsoft.com/ja-jp/windows/win32/learnwin32/your-first-\nwindows-program>\n\n私が実装するなら、 \n(1)\nブラウザのキャプチャを保存する領域を作成する(CreateCompatibleDC/CreateCompatibleBitmap/SelectObject) \n(2) ウインドウを作成し、SetParent でデスクトップに張り付ける \n(3) ウィンドウが WM_PAINT メッセージを受け取ったら(1) から画像を転送する \nという感じにすると思います。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T11:12:23.290",
"id": "91486",
"last_activity_date": "2022-10-07T11:12:23.290",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "50741",
"parent_id": "91473",
"post_type": "answer",
"score": 0
}
] | 91473 | null | 91486 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "Windows10でWSL2を使用しています。 \npgAdmin4をContainerで起動し、ブラウザからアクセスするところまでは出来ました。 \nサーバーを登録する際に、SSH Tunnelを使用するのですが、秘密鍵の選択がわからず困っています。 \nContainerなのでローカルにはアクセス出来ないのだろうかと思い、docker runのオプションに-vをつけました。\n\n```\n\n docker run --name pgadmin4 -e \"[email protected]\" -e \"PGADMIN_DEFAULT_PASSWORD=hogehoge\" -p 8000:80 dpage/pgadmin4 -v /mnt/c/Users/pem/:/pem/:ro\n \n```\n\n`/mnt/c/Users/pem/`のなかに秘密鍵があります。\n\nですが、サーバー登録の秘密鍵選択を実行してもルードディレクトリ`/`が表示されるのみで、ファイルやディレクトリは表示されません。\n\nContainerの外部にあるファイルにアクセスする方法を教えていただけるとありがたいです。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T03:16:59.143",
"favorite_count": 0,
"id": "91475",
"last_activity_date": "2022-10-07T03:16:59.143",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "27721",
"post_type": "question",
"score": 0,
"tags": [
"docker",
"postgresql",
"wsl"
],
"title": "pgAdmin4をContainerで運用する際にローカルの秘密鍵を使用したいです",
"view_count": 51
} | [] | 91475 | null | null |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "Description Resource Path Location Type \nconnection to Gradle installation 'C:\\gradle-7.5.1'\nを使用して段階的なビルド・アクションを実行できませんでした。\n\neclispeのgradleを実行をするとこのようなエラーが表示されます。 \nどのように対処すればいいのでしょうか。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T04:16:53.870",
"favorite_count": 0,
"id": "91477",
"last_activity_date": "2022-10-07T04:16:53.870",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "25636",
"post_type": "question",
"score": 0,
"tags": [
"eclipse",
"gradle"
],
"title": "eclispe gradleのエラーが表示される",
"view_count": 460
} | [] | 91477 | null | null |
{
"accepted_answer_id": "91487",
"answer_count": 1,
"body": "ほぼ初心者のため、ご教授のほどよろしくお願いいたします。\n\nとあるファイル(`length.txt`、約40万行×2列、画像左参照)を1行ずつ参照してデータ取得し、そのデータをもとに別のファイル(`effect.txt`、約4万行×2列、画像右参照)のデータを検索、照合し、データをテキストファイルに書き出すということを行いたいです。\n\n具体的には、以下の流れです。\n\n 1. `length.txt`内の`locus`列、`length`列の値を1行ずつ取得。この例では、1行目は`locus`が1で、`length`が191です。\n 2. `effect.txt`内の`snp`列で、1.で取得した`locus`の値を検索し、照合した`locus`値の行の`effect`列の値を、1.で取得した`length`個分(どの要素も大体200個前後です)そこから下の`effect`列の値を取得する。この例では、-0.03460835、0、-0.03001576、・・・、0、0、0、0.2164842、・・・(全部で191個分)。\n 3. 取得した`effect`列の値を、行方向に書き出す。\n 4. この作業を`length`列の終わりまで行い、テキストファイル(タブ区切り)として書き出す。すなわち約40万行×約200列のデータです。(空白要素は`#N/A`や`-`で表現したいです)\n\n初心者ながら以下のようなコードを書いてみましたがうまくいきません。\n\n```\n\n import pandas as pd\n \n length = pd.read_table('length.txt', delim_whitespace=True)\n effect = pd.read_table('effect.txt', delim_whitespace=True)\n \n with open('effect_out.txt', \"w\") as ew:\n for i, j in zip(length['locus'], length['length']):\n effect[effect['snp'] == i]\n effect.head(j).T\n for ext in effect:\n ew.write(ext+'\\n')\n \n```\n\n[](https://i.stack.imgur.com/UAVUl.png)",
"comment_count": 4,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T05:17:28.760",
"favorite_count": 0,
"id": "91478",
"last_activity_date": "2022-10-07T11:31:41.710",
"last_edit_date": "2022-10-07T06:01:13.507",
"last_editor_user_id": "43025",
"owner_user_id": "54671",
"post_type": "question",
"score": 1,
"tags": [
"python",
"pandas",
"bioinformatics"
],
"title": "python pandas データの参照、検索、取得およびファイル書き出し",
"view_count": 131
} | [
{
"body": "`length.txt` と `effect.txt` は適当に作成(TAB区切り)。\n\n```\n\n import pandas as pd\n \n length = pd.read_table('length.txt', delim_whitespace=True)\n effect = pd.read_table('effect.txt', delim_whitespace=True)\n \n effect = effect.set_index('snp')\n dfx = length.apply(lambda i: effect.loc[i['locus']:i.sum()-1, 'effect'].reset_index(drop=True), axis=1)\n dfx.to_csv('effect_out.txt', sep='\\t', na_rep='#N/A', index=False, header=None)\n \n```\n\n**length.txt**\n\n```\n\n locus length\n 1 10\n 2 10\n 3 10\n 4 10\n \n```\n\n**effect.txt**\n\n```\n\n snp effect\n 1 1\n 2 3\n 3 -5\n 4 0\n 5 14\n 6 -1\n 7 8\n 8 6\n 9 -2\n 10 0\n \n```\n\n**effect_out.txt**\n\n```\n\n 1.0 3.0 -5.0 0.0 14.0 -1.0 8.0 6.0 -2.0 0.0\n 3.0 -5.0 0.0 14.0 -1.0 8.0 6.0 -2.0 0.0 #N/A\n -5.0 0.0 14.0 -1.0 8.0 6.0 -2.0 0.0 #N/A #N/A\n 0.0 14.0 -1.0 8.0 6.0 -2.0 0.0 #N/A #N/A #N/A\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T11:31:41.710",
"id": "91487",
"last_activity_date": "2022-10-07T11:31:41.710",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "47127",
"parent_id": "91478",
"post_type": "answer",
"score": 1
}
] | 91478 | 91487 | 91487 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "数字4桁でカンマ区切りの繰り返しである条件で正規表現を作成しているのですが、1以上マッチしていると、マッチさせたくない条件のものまでマッチしてしまうのですが、4桁数字のカンマ区切りで、他のマッチしない条件があるとFalseになる正規表現の作り方を教えていただきたいです。\n\n例) \n1234,4321 (OK) \n1234,212 (NG) \n1223,2344, (NG)",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T05:25:57.820",
"favorite_count": 0,
"id": "91479",
"last_activity_date": "2022-10-07T14:04:16.983",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54747",
"post_type": "question",
"score": 1,
"tags": [
"javascript",
"正規表現"
],
"title": "数字四桁のカンマ区切りの正規表現の作り方",
"view_count": 342
} | [
{
"body": "`'^\\\\d{4}(,\\\\d{4})*$'`で先頭の数値を含めて4桁区切りの数値のみ許容する正規表現となります。\n\n**サンプルコード**\n\n```\n\n <html><body>\n <script>\n window.onload = (event) => {\n let re = new RegExp('^\\\\d{4}(,\\\\d{4})*$');\n let arr = ['1234,4321', '1234,212', '1223,2344,', '123,1234', '1000,2000,3000', '9999'];\n arr.forEach(s => {\n console.log('%s は %s です。', s, re.test(s) ? 'OK' : 'NG');\n });\n };\n </script>\n </body></html>\n \n```\n\n**実行結果**\n\n```\n\n 1234,4321 は OK です。\n 1234,212 は NG です。\n 1223,2344, は NG です。\n 123,1234 は NG です。\n 1000,2000,3000 は OK です。\n 9999 は OK です。\n \n```",
"comment_count": 3,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T06:29:05.847",
"id": "91480",
"last_activity_date": "2022-10-07T06:29:05.847",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "9820",
"parent_id": "91479",
"post_type": "answer",
"score": 0
}
] | 91479 | null | 91480 |
{
"accepted_answer_id": "91484",
"answer_count": 2,
"body": "Pythonのシングルクォーテーションと組み込み関数のstr()の違いについて知りたいです.\n\n```\n\n s1 = '{\"input\":{\"action\":\"read\",\"role\":\"User\",\"request\":[\"gender\",\"address\",\"birthDate\",\"familyName\",\"telephone\"]}}'\n \n s2 = str({\"input\":{\"action\":\"read\",\"role\":\"User\",\"request\":[\"gender\",\"address\",\"birthDate\",\"familyName\",\"telephone\"]}})\n \n s1 == s2\n ->False\n \n```\n\nとなるのですが,なぜそうなるのでしょうか?",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T06:48:57.177",
"favorite_count": 0,
"id": "91481",
"last_activity_date": "2022-10-07T11:23:00.797",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "41070",
"post_type": "question",
"score": 0,
"tags": [
"python",
"string"
],
"title": "Pythonのシングルクォーテーションと組み込み関数str()の違い",
"view_count": 181
} | [
{
"body": "s2は,辞書の文字列表現です.\n\n> If neither encoding nor errors is given, str(object) returns type(object).\n> **str** (object), which is the \"informal\" or nicely printable string\n> representation of object.\n\n【引用】[組み込み型 ---\nPython3ドキュメント](https://docs.python.org/ja/3/library/stdtypes.html?highlight=dict#string-\nmethods:%7E:text=If%20neither%20encoding,repr\\(object\\).)\n\nそのため,辞書の中身が少し **整形** されて出力されます.\n\n恐らく期待する入出力はこちらです.\n\n```\n\n >>> s1 = \"{'input': {'action': 'read', 'role': 'User', 'request': ['gender', 'address', 'birthDate', 'familyName', 'telephone']}}\"\n >>> s2 = str({\"input\":{\"action\":\"read\",\"role\":\"User\",\"request\":[\"gender\",\"address\",\"birthDate\",\"familyName\",\"telephone\"]}})\n >>> s1 == s2\n True\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T07:25:40.070",
"id": "91483",
"last_activity_date": "2022-10-07T11:23:00.797",
"last_edit_date": "2022-10-07T11:23:00.797",
"last_editor_user_id": "3060",
"owner_user_id": "51374",
"parent_id": "91481",
"post_type": "answer",
"score": 0
},
{
"body": "前者(`s1`)は前後をシングルクォーテーションでくくることで、中身がどのようなものであろうと単純に文字列を宣言しています。 \n後者(`s2`)は一旦[`dict`](https://docs.python.org/ja/3/library/stdtypes.html#dict)オブジェクトを作り、それを[`str`](https://docs.python.org/ja/3/library/stdtypes.html#str)関数で文字列化しています。\n\n後者の処理では`dict`から`str`への型変換が発生するため、型変換時に整形処理が入るので`s1`と`s2`が同一の文字列ではなくなります。\n\n下記のコードを実行してみてください。\n\n```\n\n s1 = '{\"input\":{\"action\":\"read\",\"role\":\"User\",\"request\":[\"gender\",\"address\",\"birthDate\",\"familyName\",\"telephone\"]}}'\n s2 = str({\"input\":{\"action\":\"read\",\"role\":\"User\",\"request\":[\"gender\",\"address\",\"birthDate\",\"familyName\",\"telephone\"]}})\n \n print(s1 == s2) # False\n \n print(s1) # {\"input\":{\"action\":\"read\",\"role\":\"User\",\"request\":[\"gender\",\"address\",\"birthDate\",\"familyName\",\"telephone\"]}}\n print(s2) # {'input': {'action': 'read', 'role': 'User', 'request': ['gender', 'address', 'birthDate', 'familyName', 'telephone']}}\n \n print(s1 == s2.replace(\" \", \"\").replace(\"'\", '\"')) # True\n \n```\n\n実行結果を見ると、整形有無で文字列が変わっていることが分かります。\n\n```\n\n False\n {\"input\":{\"action\":\"read\",\"role\":\"User\",\"request\":[\"gender\",\"address\",\"birthDate\",\"familyName\",\"telephone\"]}}\n {'input': {'action': 'read', 'role': 'User', 'request': ['gender', 'address', 'birthDate', 'familyName', 'telephone']}}\n True\n \n```\n\nなお、なぜ整形時にくくり文字がシングルクォーテーションに変わって出力されるのかについては、公式資料の[3.1.2. 文字列型\n(string)](https://docs.python.org/ja/3/tutorial/introduction.html#strings)から仕様が読み取れます。\n\n> 対話的インタプリタが文字列を出力するとき、出力文字列は引用符に囲まれ、特殊文字はバックスラッシュでエスケープされます。出力文字が入力とは違って見える\n> (囲っている引用符が変わる) こともありますが、その 2\n> つの文字列は同じ文字列です。文字列が単引用符を含み二重引用符を含まない場合、二重引用符で囲われ、それ以外の場合は単引用符で囲われます。\n\n**参考資料**\n\n * [**str** and single vs double quote behavior in Python](https://stackoverflow.com/q/9830522)",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T07:25:41.850",
"id": "91484",
"last_activity_date": "2022-10-07T07:25:41.850",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "9820",
"parent_id": "91481",
"post_type": "answer",
"score": 3
}
] | 91481 | 91484 | 91484 |
{
"accepted_answer_id": "91509",
"answer_count": 2,
"body": "今開発中のウェブアプリにおいて、API ではない、ブラウザ上のページ遷移の一貫で(他サイトから) POST\nリクエストが送られてくるので、それを受け取って、かつ画面表示するようなページを作成しようとしています。この機能のために、 POST\nリクエストを再現したいと思っているのですが、ふとどうやるか分からないので質問です。\n\n# 質問\n\nブラウザ(firefox か chrome)に、 POST リクエストでのページ遷移を行わせることができるツールや機能などはありますか? POST なので、\nurl と `application/x-www-form-urlencoded` としてエンコードされるフォームデータを入力して、ブラウザ上に実際に\nPOST でそのページを見にいくようなことがやりたいと思っています。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T09:43:25.390",
"favorite_count": 0,
"id": "91485",
"last_activity_date": "2022-10-09T14:13:09.623",
"last_edit_date": "2022-10-09T14:13:09.623",
"last_editor_user_id": "3054",
"owner_user_id": "754",
"post_type": "question",
"score": 2,
"tags": [
"javascript",
"html",
"google-chrome",
"http",
"firefox"
],
"title": "ブラウザ上でテスト的な POST リクエストを実行したい",
"view_count": 3387
} | [
{
"body": "いまいち質問のコンテキストが読み取れず…\n\n * [Selenium WebDriver](https://www.selenium.dev/ja/documentation/webdriver/)\n * [Power Automate Desktop](https://powerautomate.microsoft.com/ja-jp/robotic-process-automation/)\n\nみたいなものを求めているのでしょうか? 違っていたら、何を必要としているのかを明確にしてください。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T08:39:42.457",
"id": "91506",
"last_activity_date": "2022-10-09T08:39:42.457",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "4236",
"parent_id": "91485",
"post_type": "answer",
"score": 0
},
{
"body": "専用の機能は無さそうですが、コンソールでは可能です。以下、あたり前の話な気もしますが、長めのコードをコンソールに貼り付ける発想が無い方も居そうなので、一応回答とします。\n\n * 遷移元のページ(Referer などを気にしないならどこでもよい)を開く\n * 開発者ツールのコンソールを開く\n * フォームの作成や [`submit()`](https://developer.mozilla.org/ja/docs/Web/API/HTMLFormElement/submit) / [`requestSubmit()`](https://developer.mozilla.org/ja/docs/Web/API/HTMLFormElement/requestSubmit)を行なうコードを貼り付けて実行\n\nコード例 1(スタック・オーバーフローの検索ページに Post で遷移):\n\n```\n\n document.body.insertAdjacentHTML(\"beforeend\", `\n <form id=\"TEST_FORM\" action=\"https://ja.stackoverflow.com/search\" method=\"post\">\n <input type=\"text\" name=\"q\" value=\"テスト\" />\n </form>\n `)\n document.getElementById(\"TEST_FORM\").submit()\n \n```\n\nコード例 2(上とほぼ同じで、要素の挿入まで):\n\n```\n\n document.body.insertAdjacentHTML(\"beforeend\", `\n <form id=\"TEST_FORM\" action=\"https://ja.stackoverflow.com/search\" method=\"post\">\n <input type=\"text\" name=\"q\" value=\"テスト\" />\n <button type=\"submit\">送信</button>\n </form>\n `)\n \n```\n\nこれは普通にブラウザ上のフォームを操作する必要が有ります。遷移元ページの構造やスタイルによりますが、だいたい末尾にフォームが表われるはずです。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T10:47:01.030",
"id": "91509",
"last_activity_date": "2022-10-09T10:47:01.030",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3054",
"parent_id": "91485",
"post_type": "answer",
"score": 0
}
] | 91485 | 91509 | 91506 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "```\n\n import { Calendar, momentLocalizer } from 'react-big-calendar';\n \n```\n\nShopifyのこのドキュメントに従って、fly.ioにdeployする時に\"npm run build\"でエラーが発生しました。 \nimport pathを../nodemodules/から始まるフルパスにしてもダメでした。 \nどう解決したら良いのでしょうか。\n\n<https://shopify.dev/apps/deployment/web>\n\n```\n\n #8 9.787 [vite]: Rollup failed to resolve import \"react-big-calendar\" from \"components/StayCalendar.jsx\".\n #8 9.787 This is most likely unintended because it can break your application at runtime.\n #8 9.787 If you do want to externalize this module explicitly add it to\n #8 9.787 `build.rollupOptions.external`\n #8 9.789 error during build:\n #8 9.789 Error: [vite]: Rollup failed to resolve import \"react-big-calendar\" from \"components/StayCalendar.jsx\".\n #8 9.789 This is most likely unintended because it can break your application at runtime.\n #8 9.789 If you do want to externalize this module explicitly add it to\n #8 9.789 `build.rollupOptions.external`\n #8 9.789 at onRollupWarning (/app/frontend/node_modules/vite/dist/node/chunks/dep-689425f3.js:41797:19)\n #8 9.789 at onwarn (/app/frontend/node_modules/vite/dist/node/chunks/dep-689425f3.js:41613:13)\n #8 9.789 at Object.onwarn (/app/frontend/node_modules/rollup/dist/shared/rollup.js:23216:13)\n #8 9.789 at ModuleLoader.handleResolveId (/app/frontend/node_modules/rollup/dist/shared/rollup.js:22466:26)\n #8 9.789 at /app/frontend/node_modules/rollup/dist/shared/rollup.js:22427:26\n #8 9.789 at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\n ------\n Error failed to fetch an image or build from source: error building: executor failed running [/bin/sh -c cd frontend && npm install && npm run build]: exit code: 1\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T12:21:05.450",
"favorite_count": 0,
"id": "91488",
"last_activity_date": "2023-06-27T19:01:30.137",
"last_edit_date": "2022-10-09T08:27:40.390",
"last_editor_user_id": "4236",
"owner_user_id": "54752",
"post_type": "question",
"score": 0,
"tags": [
"npm"
],
"title": "Vite buildでインポートpathエラーが発生します。",
"view_count": 1192
} | [
{
"body": "この情報だけで理解はよくできませんですが、dependencyの問題かなと思っています。\n\nbuildのエラーなので、import pathが大丈夫なら、package.jsonも見せた方がいいと思います。\n\nとりあえず、react-big-\ncalendarはpeerdependencyとしてreactがあるため、package.jsonのdepenciesのところを確認して、reactがなかったら、入れてから、npm\ninstall && npm run buildをしてみて。。。\n\nまだ同じエラーが発生したら、詳細をもっと含めた方がいいと思います。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T20:53:42.483",
"id": "91518",
"last_activity_date": "2022-10-09T20:53:42.483",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54760",
"parent_id": "91488",
"post_type": "answer",
"score": 0
}
] | 91488 | null | 91518 |
{
"accepted_answer_id": "91495",
"answer_count": 2,
"body": "### 目的\n\n現在,C#を用いてセンサ値を400Hzで取得するプログラムを作成しています. \n現在は,マイコン側から9bytesのデータをシリアルを通じてc#側で取得するようなプログラムを作成しています.\n\n### 現在\n\n9bytesの内,はじめの1byteは0xFFを送り,c#側では読み込んだ初めの1byteが0xFFであれば,センサ値を配列に入れ替えるようなプログラムを組んでおります.\n\nc#側では,button1が押された場合に,データの読み取りを行うようにして,別のボタンによってfragを入れ替えるようなプログラムを書いております. \nまた,マイコン側ではfloat型のデータをシリアルで送るために,共用体を用いてfloat型をint型として送信しています.\n\n### 質問\n\n質問は,c#側でのserial.Readのタイミングや方法を教えていただきたいです. \n現在のプログラムでは,全く異なるデータが取得されてしまいます. \nただ,マイコン側がデータを正しく送信していることは別のプログラムで確認しましたので,特にc#について改善点を教えていただきたいです.\n\n以下にコードを示します.\n\nc#\n\n```\n\n //一部抜粋です.\n public static class Condition\n {\n public static string[,] condition = new string[6, 2];// Modifiable\n public static int clicked_num = 0;\n public static int[] index_num = new int[6];\n public static bool frag = false;\n \n }\n public static class Data_t\n {\n public static float[,] data = new float[50000, 2];\n }\n \n private void button1_Click(object sender, EventArgs e)\n {\n button3.Enabled = true;\n button1.Enabled = false;\n Condition.frag = true;\n if (Condition.clicked_num < 6)\n {\n int count = 0;\n while (Condition.frag)\n {\n //dataの読み取りと配列に値渡し\n //System.Console.WriteLine(\"test_now1\");\n byte[ ] buffer = new byte[9];\n //System.Console.WriteLine(\"test_now2\");\n serialPort1.Read(buffer, 0, buffer.Length);\n //System.Console.WriteLine(\"test_now3\");\n if (buffer[0] == 0xff)\n {\n float tmp1 = BitConverter.ToSingle(buffer,0);\n float tmp2 = BitConverter.ToSingle(buffer, 4);\n //System.Console.WriteLine(\"get_value\");\n Data_t.data[count, 0] = tmp1;\n Data_t.data[count, 1] = tmp2;\n System.Console.WriteLine(tmp1.ToString() + \",\"+tmp2.ToString());\n count++;\n }\n \n Application.DoEvents();\n }\n }\n else\n {\n label1.Text = \"FINISH\";\n button3.Enabled = false;\n serialPort1.DiscardOutBuffer();\n serialPort1.DiscardInBuffer();\n serialPort1.Close();\n }\n }\n \n private void button3_Click(object sender, EventArgs e)\n {\n Condition.frag = false;\n button1.Enabled = true;\n button3.Enabled = false;\n }\n \n```\n\nまた,マイコン側のプログラムは以下です.\n\n```\n\n #include <Arduino.h>\n #include <rhio-LIS2HH12.h>\n #define ODR 200\n float x, y, z;\n float mx,mz;\n //https://gitlab.com/rhombio/rhio-libraries/rhio-LIS2HH12\n LIS2HH12 lis = LIS2HH12();\n \n bool frag = false;\n \n union float2int{\n float value;\n int i;\n };\n \n void setup() {\n // put your setup code here, to run once:\n \n Serial.begin(115200);\n Serial.println(\"LIS2HH12 example\");\n lis.begin();\n lis.setBasicConfig();\n lis.setFrequency(80);//400Hz\n }\n \n void loop() {\n unsigned long pre = micros();\n \n lis.getAccelmG(&x,&y,&z);\n union float2int X;\n union float2int Z;\n X.value = x;\n Z.value = z;\n \n Serial.write(0xFF);\n Serial.write(X.i>>24 |0x00);\n Serial.write(X.i>>16 |0x00);\n Serial.write(X.i>>8 | 0x00);\n Serial.write(X.i&0xFF);\n Serial.write(Z.i>>24|0x00);\n Serial.write(Z.i>>16|0x00);\n Serial.write(Z.i>>8|0x00);\n Serial.write(Z.i&0xFF);\n \n while(micros()-pre<2500);\n }\n \n```\n\n以上です.お手数ですがご回答お願いいたします.",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T15:48:09.047",
"favorite_count": 0,
"id": "91491",
"last_activity_date": "2022-10-08T04:13:25.370",
"last_edit_date": "2022-10-07T16:23:12.097",
"last_editor_user_id": "3060",
"owner_user_id": "37633",
"post_type": "question",
"score": 0,
"tags": [
"c#",
"arduino",
"esp32"
],
"title": "C#を用いてシリアルでセンサ値取得",
"view_count": 348
} | [
{
"body": "Floatへの配列を入れる所で、スタートを間違えていました。 \nはじめの1byteを読みとばす必要があります",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-07T23:10:35.520",
"id": "91492",
"last_activity_date": "2022-10-07T23:10:35.520",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "37633",
"parent_id": "91491",
"post_type": "answer",
"score": -3
},
{
"body": "シリアル通信は1バイトごとの通信にため、複数バイトで1つのデータをやりとりしたい場合、 \nどこが始まりでどこが終わりなのか判断する必要があります。 \n一般的にこれを実現するために、始まりはSTX(0x02)、終わりはETX(0x03)とし、その間に送信したいデータを挟みます。当然データの中にSTX,ETXと同じ値があるとおかしくなりますので、データの中にSTX,ETXと同じデータが無いように工夫する必要があります。 \n一番簡単な方法はデータを文字列に変換し、受信側で元のデータに戻すことです。 \nC#のシリアル受信は、DataReceivedイベントを使用し、その中でデータを取得します。 \nDataReceivedイベントは複数回発生することがありますので、それを考慮して、受信する必要があります。\n\nSTX,ETXでの受信の例\n\n```\n\n string RXSerialBuff;\n \n private void serialPort1_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e)\n {\n string receivedData = \"\";\n try {\n //receivedData = this.serialPort1.ReadLine();\n int rbyte = this.serialPort1.BytesToRead;\n \n for (int i = 0; i < rbyte; i++) {\n int tmp = this.serialPort1.ReadChar();\n char ctmp = (char)tmp;\n RXSerialBuff += ctmp;\n \n if (ctmp == '\\02') {\n RXSerialBuff = \"\";\n }\n if (ctmp == '\\03') {\n receivedData = RXSerialBuff;\n RXSerialBuff = \"\";\n \n // ここで受信データの処理\n \n }\n }\n }\n catch (Exception ex) {\n }\n \n }\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-08T04:13:25.370",
"id": "91495",
"last_activity_date": "2022-10-08T04:13:25.370",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "24490",
"parent_id": "91491",
"post_type": "answer",
"score": 2
}
] | 91491 | 91495 | 91495 |
{
"accepted_answer_id": null,
"answer_count": 2,
"body": "`iloc`について教えてください。\n\n`for i in range(len(predict_data)):` とした場合、`i` に入るのは整数なので、`.iloc[i]`\nとすべきだと思ったのですが、解答では `iloc` を使わず、下記のようになっておりました。 \nなぜ、`iloc` 省略なのでしょうか。 \nできれば初学者用に分かりやすく教えていただけると幸いです。 \nよろしくお願いいたします。\n\n```\n\n for i in range(len(predict_data)):\n delta = relativedelta(predict_data[\"now_date\"][i], predict_data[\"start_date\"][i])\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-08T06:47:59.807",
"favorite_count": 0,
"id": "91496",
"last_activity_date": "2022-10-11T07:46:29.383",
"last_edit_date": "2022-10-08T08:11:16.380",
"last_editor_user_id": "3060",
"owner_user_id": "54758",
"post_type": "question",
"score": 0,
"tags": [
"python",
"python3",
"pandas"
],
"title": "relativedelta使用時のilocについて",
"view_count": 116
} | [
{
"body": "質問のやり方は行番号では無く「インデックス値」によるアクセスです。 \nインデックス値が`0からの連番`で付加されているため、行番号で行を指定したのと同等の処理になった訳です。\n\npandasのドキュメントでは以下に記述されています。 \n[Indexing and selecting\ndata](https://pandas.pydata.org/docs/user_guide/indexing.html)\n\n> **Note** \n> The Python and NumPy indexing operators`[]`and attribute operator`.`provide\n> quick and easy access to pandas data structures across a wide range of use\n> cases.\n\n[Basics](https://pandas.pydata.org/docs/user_guide/indexing.html#basics)\n\n> the primary function of indexing with`[]`(a.k.a.`__getitem__`for those\n> familiar with implementing class behavior in Python) is selecting out lower-\n> dimensional slices.\n>\n> **Object Type** | **Selection** | **Return Value Type** \n> ---|---|--- \n> Series | `series[label]` | scalar value \n> DataFrame | `frame[colname]` | `Series` corresponding to colname \n \nこんな日本語の解説記事もあります。 \n[インデックスに基づく選択 - pandas – Series のインデックス操作まとめ](https://pystyle.info/pandas-\nindexing-series/#outline__4_1)\n\n* * *\n\n質問の出展はこちらだと思われますが \n[Python実践データ分析100本ノック\n(単行本)](https://www.shuwasystem.co.jp/book/9784798058757.html)\n\n> 第4章 顧客の行動を予測する10本 ノック \n> ノック37:特徴となる変数を付与しよう \n> [サンプルファイルのダウンロード -\n> Python実践データ分析100本ノック](https://www.shuwasystem.co.jp/support/7980html/5875.html)\n\n他に多数の人が記事を書いていて例えばこんな解説があります \n[【Python実践データ分析100本ノック】ノック36-40](https://minarai-engi.com/python-\nanalytics100knock-8/)\n\n質問の行近辺の`predict_data.head()`の結果や、直前の`predict_data[\"period\"]=None`が実行された時点で単に`predict_data[\"now_date\"]`とか`predict_data[\"start_date\"]`として内容を表示してみれば分かりますが、各データには`0`~`15112`という`数値(整数)によるインデックス`が付いています。\n\n```\n\n >>> predict_data.head()\n 年月 customer_id count_pred count_0 count_1 count_2 count_3 count_4 count_5\n 0 201810 AS002855 3 7.0 3.0 5.0 5.0 5.0 4.0\n 1 201810 AS009373 5 6.0 6.0 7.0 4.0 4.0 3.0\n 2 201810 AS015315 4 7.0 3.0 6.0 3.0 3.0 6.0\n 3 201810 AS015739 5 6.0 5.0 8.0 6.0 5.0 7.0\n 4 201810 AS019860 7 5.0 7.0 4.0 6.0 8.0 6.0\n ...\n >>> predict_data['now_date']\n 0 2018-10-01\n 1 2018-10-01\n 2 2018-10-01\n 3 2018-10-01\n 4 2018-10-01\n ...\n 15108 2019-03-01\n 15109 2019-03-01\n 15110 2019-03-01\n 15111 2019-03-01\n 15112 2019-03-01\n Name: now_date, Length: 15113, dtype: datetime64[ns]\n ...\n >>> predict_data['start_date']\n 0 2016-11-01\n 1 2015-11-01\n 2 2015-07-01\n 3 2017-06-01\n 4 2017-10-01\n ...\n 15108 2015-09-01\n 15109 2018-09-01\n 15110 2016-06-01\n 15111 2017-03-01\n 15112 2017-04-01\n Name: start_date, Length: 15113, dtype: datetime64[ns]\n \n```\n\nなので、`predict_data[\"now_date\"][i]`とか`predict_data[\"start_date\"][i]`とすると、各Seriesデータ中の`iの数値をインデックス値に持つデータ`にアクセス出来ることになります。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T23:52:50.540",
"id": "91519",
"last_activity_date": "2022-10-10T00:33:01.017",
"last_edit_date": "2022-10-10T00:33:01.017",
"last_editor_user_id": "26370",
"owner_user_id": "26370",
"parent_id": "91496",
"post_type": "answer",
"score": 0
},
{
"body": "元データが `DataFrame` (2次元)だった場合, その中から一つの項目を取り出すには\n\n * 行(ROW)・列(COLUMN) を同時に指定する\n * あるいは 一つずつ指定することができる \n一つずつの場合にも どの軸を先に指定するかで(当然)指定方法が異なる\n\n * `df[COLUMN][ROW]`\n * `df.loc[ROW][COLUMN]`\n\n`df[カラム名][n]` のような指定では, カラム名にて 1列分 `Series` を取り出しその中から `[n]`で項目を取り出す手順 \n(複数続けるので) chained indexing とも呼ばれる \n`[n]` の指定は, `DataFrame`に対するものではなく **途中** 結果の `Series` に対する指定 \n(なので `loc` / `iloc` は必要ない)\n\n#### chained indexing\n\nchained indexing は(理解して使う分にはよいが) 問題点もある\n\n * 内部でコピーが発生する可能性がある (ので微妙に遅くなるかも知れない)\n * 暗黙の型変換が発生する場合がある (誤差が生じる場合がある)\n * 新しい値の代入時に 想定外の結果になる可能性がある\n\n以下の例は, 複数(3種類)の型のデータが `df.iloc[1]` で `object` 型に纏められた様子 \n(コピーが発生したはずで, (型変換で)誤差も発生するかも知れない)\n\n```\n\n import pandas as pd\n import numpy as np\n import io\n csv = io.StringIO('''\n idx,日付,整数値項目,少数点数項目\n A,2022-10-1,100,3.2\n B,2022-10-2,200,0.1\n C,2022-10-3,100,\n D,2022-10-4,100,1.2\n ''')\n df = pd.read_csv(csv, index_col=0, parse_dates=[1])\n print(df.dtypes)\n # 日付 datetime64[ns]\n # 整数値項目 int64\n # 少数点数項目 float64\n # dtype: object\n \n df.iloc[1]\n # 日付 2022-10-02 00:00:00\n # 整数値項目 200\n # 少数点数項目 0.1\n # Name: B, dtype: object\n \n```\n\n… なので, `df.loc[ROW][COLUMN]` の chained indexing は(データにもよるが) **避けたほうがよい** \n(`df['整数値項目']` のような指定であれば, `int64` のまま, 変換は行われない)\n\n* * *\n\n#### 行・列を同時に指定\n\nちなみに \n2次元 (matrix あるいは DataFrame) から値を取り出す場合, 以下の方法があります \n(どちらかの軸 片方が番号の場合, `.index`, `.columns` など利用して変換するとよいでしょう)\n\n\ | ラベルで指定 | 番号で位置指定 | 備考 \n---|---|---|--- \n単独(single value)および \n複数の要素の値 | [`loc`](https://pandas.pydata.org/pandas-\ndocs/stable/reference/api/pandas.DataFrame.loc.html) |\n[`iloc`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.iloc.html)\n| 行だけの指定の場合 行を取り出す \n単独(single value)の要素の値 | [`at`](https://pandas.pydata.org/pandas-\ndocs/stable/reference/api/pandas.DataFrame.at.html) |\n[`iat`](https://pandas.pydata.org/pandas-\ndocs/stable/reference/api/pandas.DataFrame.iat.html) | \n \nTable: `DataFrame`の場合 (`Series`の同名メソッドは 別ページ)",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T06:32:51.100",
"id": "91525",
"last_activity_date": "2022-10-11T07:46:29.383",
"last_edit_date": "2022-10-11T07:46:29.383",
"last_editor_user_id": "43025",
"owner_user_id": "43025",
"parent_id": "91496",
"post_type": "answer",
"score": 0
}
] | 91496 | null | 91519 |
{
"accepted_answer_id": "91499",
"answer_count": 1,
"body": "Laravel9+dockerで開発をしています。\n\n初期データまたはサンプルデータを作成するために `db:seed` を実行しようとしています。 \nこのまま実行すると開発用のデータベースにデータが作成されます。\n\nテスト用データベースにも同様に初期データ、サンプルデータを追加しようとしていますが、やり方がわかりません。\n\n`config/database` の `connections` で開発用は `mysql` 、テスト用は `testing` を設定しています。 \n`.env.testing` は使用していません。\n\nよろしくお願いします。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-08T09:52:17.927",
"favorite_count": 0,
"id": "91497",
"last_activity_date": "2022-10-08T13:55:05.617",
"last_edit_date": "2022-10-08T10:41:51.243",
"last_editor_user_id": "7980",
"owner_user_id": "7980",
"post_type": "question",
"score": 0,
"tags": [
"laravel"
],
"title": "Laravel9 で テストデータベースに対して seeder を実行するにはどうすればよいのですか?",
"view_count": 159
} | [
{
"body": "`db:seed` コマンドのオプションとして `--database=testing` を指定することで可能なはずです。\n\nただし、テストの内容によっては冪等性担保のために `RefreshDatabase`などと`InteractsWithDatabase::seed`\n(`$this->seed($seeder)`)をインテストで併用するなどをしたほうがいい場合もあるでしょう。\n<https://readouble.com/laravel/9.x/ja/database-testing.html>\n\nまた、`--database`を引数として指定できないartisanコマンドの実行時には(テンプレートのデフォルトの構成の場合)\n`DB_CONNECTION=hoge ./artisan fuga` のように `DB_CONNECTION`\n環境変数を指定することでデフォルトのDBコネクションをオーバーライドできるはずです。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-08T13:55:05.617",
"id": "91499",
"last_activity_date": "2022-10-08T13:55:05.617",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "2376",
"parent_id": "91497",
"post_type": "answer",
"score": 1
}
] | 91497 | 91499 | 91499 |
{
"accepted_answer_id": "91504",
"answer_count": 2,
"body": "こちらのspanには適用させず、\n\n```\n\n <div>テキスト<span>テスト1</span>テキスト<div>\n \n```\n\nこちらのspanには適用できるセレクタを探しています。\n\n```\n\n <div><span>テスト2</span>テキスト<div>\n \n```\n\ndivの直下かつ先頭(テキストを除く)という擬似クラス等はないのでしょうか。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-08T13:09:52.040",
"favorite_count": 0,
"id": "91498",
"last_activity_date": "2022-10-09T14:10:04.143",
"last_edit_date": "2022-10-09T14:10:04.143",
"last_editor_user_id": "3054",
"owner_user_id": "46729",
"post_type": "question",
"score": 1,
"tags": [
"html",
"css",
"html5"
],
"title": "あるセレクタの直下かつ先頭というCSSセレクタはありますか?",
"view_count": 162
} | [
{
"body": "たぶんできないと思います。\n\nHTMLは、[DOM; Document Object\nModel](https://developer.mozilla.org/ja/docs/Web/API/Document_Object_Model/Introduction)で表現されますが、これは\n\n * Document\n * Node\n * Element\n * Attr\n\nなどで表現されます。 \nCSSセレクタでは、ElementやAttrは扱えますが、それ以外のNodeを扱うものは用意されていません。 \nここで質問の例において、`<span>`\nElementと兄弟になっている`テキスト`の部分はTextNodeと呼ばれ、ElementでもAttrでもありません。 \nこのため、CSSセレクタではTextNodeの存在・不存在どちらも表現することはできないと思われます。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T08:26:37.117",
"id": "91504",
"last_activity_date": "2022-10-09T08:26:37.117",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "4236",
"parent_id": "91498",
"post_type": "answer",
"score": 2
},
{
"body": "Mozilla (Firefox) の拡張には [`:-moz-first-\nnode`](https://developer.mozilla.org/ja/docs/Web/CSS/:-moz-first-node)\nという、ずばりの物が有るのですが、標準化の予定は無いとの事です。これの代替手段に触れた記述が見つからない所から見ても、標準の範囲では無理なのでしょう。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T14:08:11.667",
"id": "91515",
"last_activity_date": "2022-10-09T14:08:11.667",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3054",
"parent_id": "91498",
"post_type": "answer",
"score": 3
}
] | 91498 | 91504 | 91515 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "現在、ローカルのFirebase エミュレータでauthを使っています。\n\nその際、最初にxcodeのエミュレータでFirebaseの本番環境にログインして、ログアウトせずにローカルのFirebaseエミュレータに繋いだ場合、本番環境のAuthデータを引き継いだままでローカルのFirebaseエミュレータを利用出来ていません。\n\nこれは、なぜでしょうか? \nまたiphoneやandroidの場合は、どこにauthトークンは保存されているのでしょうか? \nご教授宜しくお願いします。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-08T16:06:56.903",
"favorite_count": 0,
"id": "91501",
"last_activity_date": "2022-10-08T16:06:56.903",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "47147",
"post_type": "question",
"score": 0,
"tags": [
"firebase"
],
"title": "Firebise authの値は、Iphoneのどこに保存されるのか?",
"view_count": 29
} | [] | 91501 | null | null |
{
"accepted_answer_id": "93350",
"answer_count": 1,
"body": "PyTorchのまだ初心者ですが、NLPのシンプルなRNN構築を目指しております。 \nCPUでは動くのですが、デバイスをGPUにするとCPU、GPUの混在エラーが解消できません。 \nhidden層あたりが原因と考えてるのですが、どうやっても解消できず。 \nどなたか助言をいただけますと助かります。\n\n# RNNクラス\n\n```\n\n class RNN(nn.Module):\n def __init__(self, vocab_size, emb_size, hidden_size, output_size):\n super().__init__()\n self.hidden_size = hidden_size\n self.emb = nn.Embedding(vocab_size, emb_size)\n self.rnn = nn.RNN(emb_size, hidden_size, nonlinearity='tanh', batch_first=True)\n self.fc = nn.Linear(hidden_size, output_size)\n \n def forward(self, x):\n self.batch_size = x.size()[0]\n hidden = self.init_hidden()\n emb = self.emb(x)\n out, hidden = self.rnn(emb, hidden)\n out = self.fc(out[:, -1, :])\n return out\n \n def init_hidden(self):\n hidden = torch.zeros(1, self.batch_size, self.hidden_size)\n return hidden\n \n```\n\n上記で、 \nself.to(device) \nhidden = torch.zeros(1, self.batch_size, self.hidden_size).to(device) \nなどとしてみましたが、エラーが解消できません。\n\n# device\n\n```\n\n device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n \n```\n\n# 変数\n\n```\n\n VOCAB_SIZE = len(word_id.keys()) +1\n EMB_SIZE = 300\n OUTPUT_SIZE = 4\n HIDDEN_SIZE = 50\n model = RNN(VOCAB_SIZE,EMB_SIZE, HIDDEN_SIZE, OUTPUT_SIZE)\n model = model.to(device)\n \n```\n\n# 予測\n\n```\n\n for i in range(10):\n # datasetet の、リスト0indexに入力要素\n X, y = dataset_train[i]\n X = X.to(device)\n print(torch.softmax(model(X.unsqueeze(0)), dim=1))\n \n```\n\n上記のコードは、CPUでは動きましたが、to(device)で、modelとデータを送ったところ、CPUとGPUの混在エラーが出てしまいます。\n\n# エラーメッセージ\n\n```\n\n Input and hidden tensors are not at the same device, found input tensor at cuda:0 and hidden tensor at cpu\n \n```\n\n原因となる箇所を、ご指摘いただけますと幸甚です。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T04:08:39.693",
"favorite_count": 0,
"id": "91502",
"last_activity_date": "2023-01-15T06:17:12.887",
"last_edit_date": "2022-10-09T04:55:53.933",
"last_editor_user_id": "3060",
"owner_user_id": "54705",
"post_type": "question",
"score": 0,
"tags": [
"python",
"google-colaboratory",
"pytorch"
],
"title": "PyTorchでのNLP_RNNにて、CPU GPU混在エラー",
"view_count": 124
} | [
{
"body": "時間も経過しており既に解決済みかもしれませんが,Google Colab (python 3.8.16, torch 1.13.0+cu116)\nを使って下記の記述例で確認する限りでは\n\n```\n\n # hidden = torch.zeros(1, self.batch_size, self.hidden_size)\n hidden = torch.zeros(1, self.batch_size, self.hidden_size).to(device)\n \n```\n\nの変更でエラーは発生しなくなりました。なお,`train.txt`\nは[【python】言語処理100本ノック2020を解く(第9章前半)](https://mori-\nmemo.hateblo.jp/entry/2022/10/16/173011) を基に作らせていただきました。\n\n```\n\n import pandas as pd\n from collections import Counter\n import torch\n from torch import nn\n \n \n class RNN(nn.Module):\n def __init__(self, vocab_size, emb_size, hidden_size, output_size):\n super().__init__()\n self.hidden_size = hidden_size\n self.emb = nn.Embedding(vocab_size, emb_size)\n self.rnn = nn.RNN(emb_size, hidden_size, nonlinearity='tanh',\n batch_first=True)\n self.fc = nn.Linear(hidden_size, output_size)\n \n def forward(self, x):\n self.batch_size = x.size()[0]\n hidden = self.init_hidden()\n emb = self.emb(x)\n out, hidden = self.rnn(emb, hidden)\n out = self.fc(out[:, -1, :])\n return out\n \n def init_hidden(self):\n # hidden = torch.zeros(1, self.batch_size, self.hidden_size)\n hidden = torch.zeros(1, self.batch_size, self.hidden_size).to(device)\n return hidden\n \n def tokenizer(txt):\n ws = txt.rstrip().split()\n return [word_id.get(w, 0) for w in ws]\n \n \n # device\n device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n \n # read data\n train = pd.read_csv('train.txt', sep='\\t')\n \n # dictionary for tokenizer()\n words = []\n for text in train['TITLE']:\n for word in text.rstrip().split():\n words.append(word)\n c = Counter(words)\n word_id = {}\n for i, cnt in enumerate(c.most_common()):\n if cnt[1] > 1:\n word_id[cnt[0]] = i + 1\n \n # dataset_train\n train['TTL'] = train['TITLE'].apply(tokenizer)\n train['CAT'] = train['CATEGORY'].map({'b': 0, 't': 1, 'e': 2, 'm': 3})\n dataset_train = []\n for i in train.index:\n dataset_train.append(\n [torch.tensor(train.loc[i, 'TTL'], dtype=torch.int),\n torch.tensor(train.loc[i, 'CAT'], dtype=torch.int)])\n \n # model\n VOCAB_SIZE = len(word_id.keys()) + 1\n EMB_SIZE = 300\n OUTPUT_SIZE = 4\n HIDDEN_SIZE = 50\n model = RNN(VOCAB_SIZE, EMB_SIZE, HIDDEN_SIZE, OUTPUT_SIZE).to(device)\n \n # initial prediction\n for i in range(5):\n X, y = dataset_train[i]\n X = X.to(device)\n print(torch.softmax(model(X.unsqueeze(0)), dim=1))\n \n```\n\n```\n\n tensor([[0.2418, 0.2491, 0.3167, 0.1924]], device='cuda:0',\n grad_fn=<SoftmaxBackward0>)\n tensor([[0.3865, 0.1211, 0.3834, 0.1089]], device='cuda:0',\n grad_fn=<SoftmaxBackward0>)\n tensor([[0.1702, 0.3075, 0.3873, 0.1349]], device='cuda:0',\n grad_fn=<SoftmaxBackward0>)\n tensor([[0.3631, 0.1873, 0.1873, 0.2623]], device='cuda:0',\n grad_fn=<SoftmaxBackward0>)\n tensor([[0.3344, 0.2631, 0.2306, 0.1719]], device='cuda:0',\n grad_fn=<SoftmaxBackward0>)\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2023-01-15T06:17:12.887",
"id": "93350",
"last_activity_date": "2023-01-15T06:17:12.887",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54588",
"parent_id": "91502",
"post_type": "answer",
"score": 0
}
] | 91502 | 93350 | 93350 |
{
"accepted_answer_id": "91514",
"answer_count": 2,
"body": "にこやかな笑顔はユニコードで表すと `U+1F600` になりますが、この `U+` とは「ユニコードの」という意味なのでしょうか? \n「ユニコードの1F600」という意味なのでしょうか? \n2進数に変えて理解を深めたいなと思いまして。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T08:29:12.130",
"favorite_count": 0,
"id": "91505",
"last_activity_date": "2022-10-11T02:50:07.103",
"last_edit_date": "2022-10-11T02:50:07.103",
"last_editor_user_id": "3060",
"owner_user_id": "20350",
"post_type": "question",
"score": 5,
"tags": [
"文字コード",
"unicode"
],
"title": "絵文字の U+1F600 の U+ は「ユニコードの」を意味する接頭辞ですか?",
"view_count": 356
} | [
{
"body": "「ユニコードの1F600」という意味で合っているでしょう。 \n(それと「2進数に変えて理解深めたい」とのつながりが不明ですが)\n\nただし気になることがあるなら、以下のように元々の仕様を探ってみましょう。\n\n「unicode specification」というキーワードで検索すると[About the Unicode®\nStandard](https://unicode.org/standard/standard.html)というページとか出てきて、その左上に`Latest\nVersion`というリンクがあり、それが現在の最新の仕様としてここで見ることが出来るでしょう。 \n[Unicode® 15.0.0](https://www.unicode.org/versions/Unicode15.0.0/) \n左側のメニューの「15.0.0 Chapters」に各章のタイトルとPDFへのリンクが列挙されています。\n\nおそらく最初に記述されているのはここでしょう。 \n2 [General Structure](https://www.unicode.org/versions/Unicode15.0.0/ch02.pdf) \nページ番号29ページ「2.4 Code Points and Characters」の最後に以下の記述があります。\n\n> When referring to code points in the Unicode Standard, the usual practice is\n> to refer to them by their numeric value expressed in hexadecimal, with a\n> \"U+\" prefix. (See Appendix A, Notational Conventions.) \n> Unicode 標準でコード ポイントを参照する場合、通常は、「U+」プレフィックスを付けて 16 進数で表した数値で参照します。 (付録\n> A、表記規則を参照してください。)\n\n上記に書かれている`Appendix A`は「15.0.0 Appendices and Back Matter」の最初にあるこれですね。 \nA [Notational\nConventions](https://www.unicode.org/versions/Unicode15.0.0/appA.pdf) \nこのPDFとしては3ページ目、ページ番号は968ページ目の最初の方に以下のように記述されています。\n\n> A.1 Typographic Conventions \n> Code Points \n> In running text, an individual Unicode code point is expressed as U+n,\n> where n is four to six hexadecimal digits, using the digits 0–9 and\n> uppercase letters A–F (for 10 through 15, respectively). Leading zeros are\n> omitted, unless the code point would have fewer than four hexadecimal\n> digits—for example, U+0001, U+0012, U+0123, U+1234, U+12345, U+102345. \n> 実行中のテキストでは、個々の Unicode コード ポイントは U+n として表されます。ここで、n は 0 ~ 9 の数字と大文字の A ~ F\n> (それぞれ 10 ~ 15) を使用した 4 ~ 6 桁の 16 進数です。コード ポイントが 4 桁未満の 16\n> 進数でない限り、先行ゼロは省略されます (例: U+0001、U+0012、U+0123、U+1234、U+12345、U+102345)。\n\n他にはWikipediaの日本語記事などでも情報は取得出来るでしょう。 \n[Unicode - Wikipedia](https://ja.wikipedia.org/wiki/Unicode) \n「文字集合」の段落?に以下の記述があります。\n\n> Unicode符号位置を文章中などに記す場合は \"U+\" の後に十六進法で符号位置を4桁から6桁続けることで表す。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T13:47:08.187",
"id": "91513",
"last_activity_date": "2022-10-09T13:47:08.187",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "26370",
"parent_id": "91505",
"post_type": "answer",
"score": 8
},
{
"body": "> U+とはユニコードのという意味なのでしょうか?\n\nそうです。 \nこれは数値の一部では無く、印です。[Re: Origin of the U+nnnn notation](https://unicode.org/mail-\narch/unicode-ml/y2005-m11/0060.html) によれば、元々は「⊎」(U+228E MULTISET\nUNION)という記号を使いたかったそうです。\n\nそういう訳ですから、数値として扱う場合には U+ の部分は無視してよいです。`U+1F600` なら 16進表記の `1F600`\nが符号位置(コードポイント)です。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T13:57:15.890",
"id": "91514",
"last_activity_date": "2022-10-09T13:57:15.890",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3054",
"parent_id": "91505",
"post_type": "answer",
"score": 5
}
] | 91505 | 91514 | 91513 |
{
"accepted_answer_id": "91516",
"answer_count": 1,
"body": "[Twitter Batch compliance(Compliance Firehose\nAPI)](https://developer.twitter.com/en/docs/twitter-api/compliance/batch-\ncompliance/introduction)をやろうとしているのですが、手順1でJobの作成ができ、upload_urlを取得まではできたのですが、その次の手順2である`ファイルのアップロード`の方法がわかりません。\n\nファイルの中身は`ツイートID` or\n`ユーザーID`の羅列が必要そうなのですが、そのファイル(データ)をupload_urlにアップロードする方法がわかりません。\n\nどのようにすればよいのでしょうか?\n\n```\n\n let url = URL(string: \"https://storage.googleapis.com/twttr-tweet-compliance/1579097950700961793/submission/1468034183536984067_1579097950700961793?X-Goog-Algorithm=GOOG4-RSA-SHA256&X-Goog-Credential=complianceapi-public-svc-acct%40twttr-compliance-public-prod.iam.gserviceaccount.com%2F20221009%2Fauto%2Fstorage%2Fgoog4_request&X-Goog-Date=20221009T131424Z&X-Goog-Expires=900&X-Goog-SignedHeaders=content-type%3Bhost&X-Goog-Signature=2703915919f8aff425e84f790ad114b81\")!\n \n var request = URLRequest(url: url)\n \n var request.httpMethod = \"POST\"\n \n let tweetIDs = [\"1577730467436138524\", \"1565318587736285184\", \"1565318587736285184\", \"1564694842311049217\"]\n request.httpBody = tweetIDs.joined(separator: \"\\n\").data(using: .utf8)!\n \n let (responseData, _) = try await URLSession.shared.data(for: request)\n \n print(String(data: responseData, encoding: .utf8)!)\n \n```\n\n```\n\n <?xml version='1.0' encoding='UTF-8'?>\n <Error>\n <Code>SignatureDoesNotMatch</Code>\n <Message>\n The request signature we calculated does not match the signature you provided.\n Check your Google secret key and signing method.\n </Message>\n <StringToSign>\n GOOG4-RSA-SHA256\n 20221009T131424Z\n 20221009/auto/storage/goog4_request\n 5c45ee0335cfb583f650af1d68f9fb10b2f72e34aed04a5ca8ad22942a537020\n </StringToSign>\n <CanonicalRequest>\n POST\n /twttr-tweet-compliance/1579097950700961793/submission/1468034183536984067_1579097950700961793\n X-Goog-Algorithm=GOOG4-RSA-SHA256&X-Goog-Credential=complianceapi-public-svc-acct%40twttr-compliance-public-prod.iam.gserviceaccount.com%2F20221009%2Fauto%2Fstorage%2Fgoog4_request&X-Goog-Date=20221009T131424Z&X-Goog-Expires=900&X-Goog-SignedHeaders=content-type%3Bhost\n content-type:application/x-www-form-urlencoded\n host:storage.googleapis.com\n \n content-type;host\n UNSIGNED-PAYLOAD\n </CanonicalRequest>\n </Error>\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T12:19:39.347",
"favorite_count": 0,
"id": "91511",
"last_activity_date": "2022-10-09T14:44:55.683",
"last_edit_date": "2022-10-09T13:48:49.387",
"last_editor_user_id": "40856",
"owner_user_id": "40856",
"post_type": "question",
"score": 0,
"tags": [
"swift",
"twitter"
],
"title": "Twitter API v2のBatch compliance(Compliance Firehose API)でGoogle API Storageにアップロードする方法がわからない",
"view_count": 35
} | [
{
"body": "\"POST\"ではなく\"PUT\"でした",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T14:44:55.683",
"id": "91516",
"last_activity_date": "2022-10-09T14:44:55.683",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "40856",
"parent_id": "91511",
"post_type": "answer",
"score": 0
}
] | 91511 | 91516 | 91516 |
{
"accepted_answer_id": "91546",
"answer_count": 1,
"body": "## 困っていること\n\nTwitter API v2のBatch Complicateで正しくJobを作成して、ファイルをアップロードしても、空のファイルが返ってきてしまいます。\n\n期待しているファイルの中身\n\n```\n\n {\"id\":\"155230xxxx\",\"action\":\"delete\",\"created_at\":\"2022-07-27T14:32:54.835Z\",\"reason\":\"suspended\"}\n {\"id\":\"155221xxxx\",\"action\":\"delete\",\"created_at\":\"2022-07-27T09:08:31.172Z\",\"reason\":\"protected\"}\n {\"id\":\"155214xxxx\",\"action\":\"delete\",\"created_at\":\"2022-07-27T04:10:57.052Z\",\"reason\":\"suspended\"}\n {\"id\":\"155229xxxx\",\"action\":\"delete\",\"created_at\":\"2022-07-27T13:58:52.876Z\",\"reason\":\"protected\"}\n {\"id\":\"155227xxxx\",\"action\":\"delete\",\"created_at\":\"2022-07-27T12:56:18.336Z\",\"redacted_at\":\"2022-07-27T13:55:51.964Z\",\"reason\":\"deactivated\"}\n \n```\n\n<https://developer.twitter.com/en/docs/twitter-api/compliance/batch-\ncompliance/introduction>\n\n## やったこと\n\n 1. `Job`の作成\n 2. 自分のツイートのIDを4つファイルに記載して`upload_url`にアップロード\n 3. Jobのstateが`complete`になるのを確認\n 4. 先ほど記載した4つのIDのツイートを削除\n 5. `download_url`でファイルをダウンロード(なぜかこのファイルが空ファイル)",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-09T17:10:15.990",
"favorite_count": 0,
"id": "91517",
"last_activity_date": "2022-10-11T08:54:46.853",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "40856",
"post_type": "question",
"score": 0,
"tags": [
"twitter"
],
"title": "Twitter API v2のBatch Complicateの使い方がわからない",
"view_count": 51
} | [
{
"body": "やりかたはあっていたはずなのですが、うまくいかずデータを別のものにしたらうまくいきました。 \n<https://qiita.com/39ff/items/7fbd7850360e4cedd9dd>",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T08:54:46.853",
"id": "91546",
"last_activity_date": "2022-10-11T08:54:46.853",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "40856",
"parent_id": "91517",
"post_type": "answer",
"score": 0
}
] | 91517 | 91546 | 91546 |
{
"accepted_answer_id": "91537",
"answer_count": 1,
"body": "EC2でembulkを実行しても、通信出来ない旨のエラー文が出て実行時できません。\n\nやりたいことはEC2内のローカルmysql DB dev2からdev3へDB内容をreplaceする処理になります。 \nなので以下のようなconfigファイルを書いて実行しています。\n\n```\n\n in:\n type: mysql\n host: xxx.xxx.xxx.xxx\n user: root\n password: \"xxxxx\"\n database: dev2\n socket_timeout: 0\n # 18.183.204.253\n \n out:\n type: mysql\n host: xxx.xxx.xxx.xxx\n user: root\n password: \"xxxxx\"\n database: dev3\n mode: replace\n \n```\n\nそして出ているエラーが以下になります。 \nなにかアイデアをいただけましたらありがたいです。\n\n```\n\n org.embulk.exec.PartialExecutionException: java.lang.RuntimeException: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure\n \n The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.\n at org.embulk.exec.BulkLoader$LoaderState.buildPartialExecuteException(BulkLoader.java:340)\n at org.embulk.exec.BulkLoader.doRun(BulkLoader.java:566)\n at org.embulk.exec.BulkLoader.access$000(BulkLoader.java:35)\n at org.embulk.exec.BulkLoader$1.run(BulkLoader.java:353)\n at org.embulk.exec.BulkLoader$1.run(BulkLoader.java:350)\n at org.embulk.spi.Exec.doWith(Exec.java:23)\n at org.embulk.exec.BulkLoader.run(BulkLoader.java:350)\n at org.embulk.EmbulkEmbed.run(EmbulkEmbed.java:242)\n at org.embulk.EmbulkRunner.runInternal(EmbulkRunner.java:291)\n at org.embulk.EmbulkRunner.run(EmbulkRunner.java:155)\n at org.embulk.cli.EmbulkRun.runSubcommand(EmbulkRun.java:431)\n at org.embulk.cli.EmbulkRun.run(EmbulkRun.java:90)\n at org.embulk.cli.Main.main(Main.java:64)\n Suppressed: java.lang.NullPointerException\n at org.embulk.exec.BulkLoader.doCleanup(BulkLoader.java:463)\n at org.embulk.exec.BulkLoader$3.run(BulkLoader.java:397)\n at org.embulk.exec.BulkLoader$3.run(BulkLoader.java:394)\n at org.embulk.spi.Exec.doWith(Exec.java:23)\n at org.embulk.exec.BulkLoader.cleanup(BulkLoader.java:394)\n at org.embulk.EmbulkEmbed.run(EmbulkEmbed.java:245)\n ... 5 more\n Caused by: java.lang.RuntimeException: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure\n \n The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.\n at org.embulk.input.jdbc.AbstractJdbcInputPlugin.transaction(AbstractJdbcInputPlugin.java:227)\n at org.embulk.exec.BulkLoader.doRun(BulkLoader.java:507)\n ... 11 more\n Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure\n \n The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:989)\n at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:341)\n at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2189)\n at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2222)\n at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2017)\n at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:779)\n at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:47)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:389)\n at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:330)\n at java.sql.DriverManager.getConnection(DriverManager.java:664)\n at java.sql.DriverManager.getConnection(DriverManager.java:208)\n at org.embulk.input.mysql.MySQLInputPlugin.newConnection(MySQLInputPlugin.java:130)\n at org.embulk.input.mysql.MySQLInputPlugin.newConnection(MySQLInputPlugin.java:27)\n at org.embulk.input.jdbc.AbstractJdbcInputPlugin.transaction(AbstractJdbcInputPlugin.java:213)\n ... 12 more\n Caused by: java.net.ConnectException: Connection timed out (Connection timed out)\n at java.net.PlainSocketImpl.socketConnect(Native Method)\n at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)\n at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)\n at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)\n at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)\n at java.net.Socket.connect(Socket.java:607)\n at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:211)\n at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:300)\n ... 29 more\n \n Error: java.lang.RuntimeException: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure\n \n The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T02:34:23.903",
"favorite_count": 0,
"id": "91520",
"last_activity_date": "2022-10-10T23:32:53.177",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "36855",
"post_type": "question",
"score": 0,
"tags": [
"java",
"embulk"
],
"title": "EC2でembulkを実行しても、通信出来ない旨のエラー文が出て実行時できません。",
"view_count": 140
} | [
{
"body": "アクセスキーとシークレットキーを入力してないから動かないのではないですか?",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T23:32:53.177",
"id": "91537",
"last_activity_date": "2022-10-10T23:32:53.177",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "39754",
"parent_id": "91520",
"post_type": "answer",
"score": 2
}
] | 91520 | 91537 | 91537 |
{
"accepted_answer_id": "91528",
"answer_count": 1,
"body": "useEffectの挙動について質問させていただきます。 \nconsole.logで出力する値が遅れて出力されるのはなぜか というのが主旨になります。\n\n```\n\n import { useEffect, useState } from \"react\";\n \n type inputSetting = {\n player : number;\n wolves : number;\n civil : number;\n timer : number;\n }\n \n export default function GameSetting() {\n \n const initialSetting = {\n player: 3,\n wolves: 1,\n civil: 2,\n timer: 2\n }\n \n const [property, setProperty] = useState<inputSetting>(initialSetting);\n \n const decrementPlayer = () => {\n setProperty({ ...property, player: property.player - 1 });\n }\n const incrementPlayer = () => {\n setProperty({ ...property, player: property.player + 1 });\n }\n \n // U1\n useEffect(() => {\n setProperty({...property, civil: property.player - property.wolves});\n },[property.player]);\n \n // U2\n useEffect(() => {\n console.log(property.civil);\n },[property.player]);\n \n return(\n <div className=\"flex gap-2\">\n <button onClick={() => incrementPlayer()} className=\"border\">+</button>\n <button onClick={() => decrementPlayer()} className=\"border\">-</button>\n </div>\n );\n }\n \n```\n\n上記のコードでは、`player`の増減を行うとU1・U2が発火し`civil`の計算、計算後の`civil`の値を出力するという仕掛けになっています。\n\n1回目に `+` ボタンをクリックした場合`console.log`で 「 **3** 」 が出力される想定ですが、なぜか計算前の「 **2**\n」が表示されます。\n\n2回目に `+` ボタンをクリックすると「 **3** 」が表示されます。\n\n順序としては\n\n 1. `+` ボタンクリック\n 2. `civil`の計算\n 3. `console.log`で`civil`出力\n\nという認識ですが、何故値が遅れて出力されるのでしょうか。ご教示ください。\n\n### 環境\n\n * React 18.2.0\n * TypeScript 4.8.4\n * macOS Monterey 12.6\n * Chrome 106.0.5249.103",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T03:02:46.293",
"favorite_count": 0,
"id": "91521",
"last_activity_date": "2022-10-10T11:42:35.817",
"last_edit_date": "2022-10-10T08:46:43.443",
"last_editor_user_id": "51662",
"owner_user_id": "51662",
"post_type": "question",
"score": 1,
"tags": [
"reactjs",
"typescript"
],
"title": "useEffectの挙動について",
"view_count": 74
} | [
{
"body": "[useEffec フック API リファレンス – React](https://ja.reactjs.org/docs/hooks-\nreference.html#useeffect) の「補足」にはこう書かれています\n\n> この最適化を利用する場合、 **時間の経過とともに変化し副作用によって利用される、コンポーネントスコープの値(props や state など)**\n> がすべて配列に含まれていることを確認してください。さもないとあなたのコードは以前のレンダー時の古い値を参照してしまうことになります。...\n\nまさしく、この補足で指摘した状況になってしまっていると思われます。\n\n`property.player`が変更されたとき、U1とU2が実行されるのですが、これらU1とU2が実行されるときの`property`は`useEffect()`によって実行が予約されたときの値です。どういうことかというと、U1で`setProperty`で`property`の値を変えても、その値は次のサイクルの`property`であって、既に実行が予約されているU2での`property`とは別のオブジェクトになると言うことです。別の言い方で言うと、U1が実行されるときの`property`と同じ`property`をU2が実行されるときも見に行っています。それは、`civil`を変更する前のものなので、相変わらず`2`になると言うことです。\n\nもし、`civil`が変更されて、その結果を見たければ、次のように書くべきでしょう。\n\n```\n\n // U2\n useEffect(() => {\n console.log(property.civil);\n },[property.civil]);\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T11:32:12.563",
"id": "91528",
"last_activity_date": "2022-10-10T11:42:35.817",
"last_edit_date": "2022-10-10T11:42:35.817",
"last_editor_user_id": "7347",
"owner_user_id": "7347",
"parent_id": "91521",
"post_type": "answer",
"score": 1
}
] | 91521 | 91528 | 91528 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "タイトルの通り、[scikit-sparse パッケージ](https://github.com/scikit-sparse/scikit-sparse)\nをインストールしたいのですが、エラーを解決できず行き詰っております。 \nPythonのバージョンはpython 3.10.7です。\n\nPowerShell から以下の通りコマンドを一行ずつ順に試してみましたが、エラーが発生してしまいます。 \n(エラーメッセージ中の \"hogehoge\" はユーザー名です)\n\n英語はわかりませんが、pipの問題ではないと言っていることはわかりました。 \nまた、setup.pyがどうも実行できていないということも何となくわかりました。 \nしかし、ではどう解決したらいいのかということがわかりません。 \nご助言をいただきたいです。よろしくお願いします。\n\n**実行したコマンド:**\n\n```\n\n py -m pip install -U pip\n py -m pip install -U wheel\n py -m pip install -U setuptools\n py -m pip install scikit-sparse\n \n```\n\n**エラーメッセージ:**\n\n```\n\n Collecting scikit-sparse\n Using cached scikit-sparse-0.4.4.tar.gz (385 kB)\n Preparing metadata (setup.py) ... done\n Requirement already satisfied: numpy in c:\\users\\hogehoge\\appdata\\local\\programs\\python\\python310\\lib\\site-packages (from scikit-sparse) (1.21.6)\n Requirement already satisfied: scipy in c:\\users\\hogehoge\\appdata\\local\\programs\\python\\python310\\lib\\site-packages (from scikit-sparse) (1.7.3)\n Building wheels for collected packages: scikit-sparse\n Building wheel for scikit-sparse (setup.py) ... error\n error: subprocess-exited-with-error\n \n × python setup.py bdist_wheel did not run successfully.\n │ exit code: 1\n ╰─> [33 lines of output]\n C:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\setuptools\\installer.py:27: SetuptoolsDeprecationWarning: setuptools.installer is deprecated. Requirements should be satisfied by a PEP 517 installer.\n warnings.warn(\n running bdist_wheel\n running build\n running build_py\n creating build\n creating build\\lib.win-amd64-cpython-310\n creating build\\lib.win-amd64-cpython-310\\sksparse\n copying sksparse\\test_cholmod.py -> build\\lib.win-amd64-cpython-310\\sksparse\n copying sksparse\\_version.py -> build\\lib.win-amd64-cpython-310\\sksparse\n copying sksparse\\__init__.py -> build\\lib.win-amd64-cpython-310\\sksparse\n creating build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\illc1033.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\illc1033_rhs1.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\illc1850.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\illc1850_rhs1.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\well1033.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\well1033_rhs1.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\well1850.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\well1850_rhs1.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n UPDATING build\\lib.win-amd64-cpython-310\\sksparse/_version.py\n set build\\lib.win-amd64-cpython-310\\sksparse/_version.py to '0.4.4'\n running build_ext\n skipping 'sksparse\\cholmod.c' Cython extension (up-to-date)\n building 'sksparse.cholmod' extension\n creating build\\temp.win-amd64-cpython-310\n creating build\\temp.win-amd64-cpython-310\\Release\n creating build\\temp.win-amd64-cpython-310\\Release\\sksparse\n \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Tools\\MSVC\\14.33.31629\\bin\\HostX86\\x64\\cl.exe\" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\numpy\\core\\include -IC:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310/include -I/usr/include/suitesparse -IC:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\include -IC:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\Include \"-IC:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Tools\\MSVC\\14.33.31629\\include\" \"-IC:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Auxiliary\\VS\\include\" \"-IC:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\ucrt\" \"-IC:\\Program Files (x86)\\Windows Kits\\10\\\\include\\10.0.19041.0\\\\um\" \"-IC:\\Program Files (x86)\\Windows Kits\\10\\\\include\\10.0.19041.0\\\\shared\" \"-IC:\\Program Files (x86)\\Windows Kits\\10\\\\include\\10.0.19041.0\\\\winrt\" \"-IC:\\Program Files (x86)\\Windows Kits\\10\\\\include\\10.0.19041.0\\\\cppwinrt\" \"-IC:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\include\\um\" /Tcsksparse\\cholmod.c /Fobuild\\temp.win-amd64-cpython-310\\Release\\sksparse\\cholmod.obj\n cholmod.c\n C:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\numpy\\core\\include\\numpy\\npy_1_7_deprecated_api.h(14) : Warning Msg: Using deprecated NumPy API, disable it with #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION\n C:\\Users\\hogehoge\\AppData\\Local\\Temp\\pip-install-iu1qbymb\\scikit-sparse_3040893b73c5464a8fdd40f0232c94fe\\sksparse\\cholmod_backward_compatible.h(1): fatal error C1083: include ファイルを開けません。'cholmod.h':No such file or directory\n error: command 'C:\\\\Program Files (x86)\\\\Microsoft Visual Studio\\\\2022\\\\BuildTools\\\\VC\\\\Tools\\\\MSVC\\\\14.33.31629\\\\bin\\\\HostX86\\\\x64\\\\cl.exe' failed with exit code 2\n [end of output]\n \n note: This error originates from a subprocess, and is likely not a problem with pip.\n ERROR: Failed building wheel for scikit-sparse\n Running setup.py clean for scikit-sparse\n Failed to build scikit-sparse\n Installing collected packages: scikit-sparse\n Running setup.py install for scikit-sparse ... error\n error: subprocess-exited-with-error\n \n × Running setup.py install for scikit-sparse did not run successfully.\n │ exit code: 1\n ╰─> [35 lines of output]\n C:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\setuptools\\installer.py:27: SetuptoolsDeprecationWarning: setuptools.installer is deprecated. Requirements should be satisfied by a PEP 517 installer.\n warnings.warn(\n running install\n C:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\setuptools\\command\\install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.\n warnings.warn(\n running build\n running build_py\n creating build\n creating build\\lib.win-amd64-cpython-310\n creating build\\lib.win-amd64-cpython-310\\sksparse\n copying sksparse\\test_cholmod.py -> build\\lib.win-amd64-cpython-310\\sksparse\n copying sksparse\\_version.py -> build\\lib.win-amd64-cpython-310\\sksparse\n copying sksparse\\__init__.py -> build\\lib.win-amd64-cpython-310\\sksparse\n creating build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\illc1033.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\illc1033_rhs1.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\illc1850.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\illc1850_rhs1.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\well1033.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\well1033_rhs1.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\well1850.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n copying sksparse\\test_data\\well1850_rhs1.mtx.gz -> build\\lib.win-amd64-cpython-310\\sksparse\\test_data\n UPDATING build\\lib.win-amd64-cpython-310\\sksparse/_version.py\n set build\\lib.win-amd64-cpython-310\\sksparse/_version.py to '0.4.4'\n running build_ext\n skipping 'sksparse\\cholmod.c' Cython extension (up-to-date)\n building 'sksparse.cholmod' extension\n creating build\\temp.win-amd64-cpython-310\n creating build\\temp.win-amd64-cpython-310\\Release\n creating build\\temp.win-amd64-cpython-310\\Release\\sksparse\n \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Tools\\MSVC\\14.33.31629\\bin\\HostX86\\x64\\cl.exe\" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\numpy\\core\\include -IC:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310/include -I/usr/include/suitesparse -IC:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\include -IC:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\Include \"-IC:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Tools\\MSVC\\14.33.31629\\include\" \"-IC:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Auxiliary\\VS\\include\" \"-IC:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\ucrt\" \"-IC:\\Program Files (x86)\\Windows Kits\\10\\\\include\\10.0.19041.0\\\\um\" \"-IC:\\Program Files (x86)\\Windows Kits\\10\\\\include\\10.0.19041.0\\\\shared\" \"-IC:\\Program Files (x86)\\Windows Kits\\10\\\\include\\10.0.19041.0\\\\winrt\" \"-IC:\\Program Files (x86)\\Windows Kits\\10\\\\include\\10.0.19041.0\\\\cppwinrt\" \"-IC:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\include\\um\" /Tcsksparse\\cholmod.c /Fobuild\\temp.win-amd64-cpython-310\\Release\\sksparse\\cholmod.obj\n cholmod.c\n C:\\Users\\hogehoge\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\numpy\\core\\include\\numpy\\npy_1_7_deprecated_api.h(14) : Warning Msg: Using deprecated NumPy API, disable it with #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION\n C:\\Users\\hogehoge\\AppData\\Local\\Temp\\pip-install-iu1qbymb\\scikit-sparse_3040893b73c5464a8fdd40f0232c94fe\\sksparse\\cholmod_backward_compatible.h(1): fatal error C1083: include ファイルを開けません。'cholmod.h':No such file or directory\n error: command 'C:\\\\Program Files (x86)\\\\Microsoft Visual Studio\\\\2022\\\\BuildTools\\\\VC\\\\Tools\\\\MSVC\\\\14.33.31629\\\\bin\\\\HostX86\\\\x64\\\\cl.exe' failed with exit code 2\n [end of output]\n \n note: This error originates from a subprocess, and is likely not a problem with pip.\n error: legacy-install-failure\n \n × Encountered error while trying to install package.\n ╰─> scikit-sparse\n \n note: This is an issue with the package mentioned above, not pip.\n hint: See above for output from the failure.\n \n```",
"comment_count": 5,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T03:16:38.193",
"favorite_count": 0,
"id": "91522",
"last_activity_date": "2022-10-13T05:16:21.247",
"last_edit_date": "2022-10-13T05:16:21.247",
"last_editor_user_id": "3060",
"owner_user_id": "54778",
"post_type": "question",
"score": 0,
"tags": [
"python"
],
"title": "scikit-sparseインストール時のエラーを解決できない",
"view_count": 402
} | [] | 91522 | null | null |
{
"accepted_answer_id": "91524",
"answer_count": 1,
"body": "seleniumを使って、\n[駐車場一覧NAVITIME](https://www.navitime.co.jp/category/0805/13227/)のwebサイトから各ページのURLを抽出して \nspotのみのURL取得したいです。\n\n**現在の結果** \n❶からURLを取得してから、❷spotのみのURL取得したいです。\n\n❶while文から各ページ1,2,3,4...のURL取得 \n各ページがありますので、URLは分割されてリストで表示されます。\n\n```\n\n ['https://www.navitime.co.jp/poi?spot=60012-55019091', 'https://www.navitime.co.jp/poi?spot=60001-BUK0044576', 'https://www.navitime.co.jp/poi?spot=60007-REP0011524', 'https://www.navitime.co.jp/poi?spot=60001-BUK0036667', 'https://www.navitime.co.jp/poi?spot=60001-BUK0045563', 'https://www.navitime.co.jp/poi?spot=60007-REP0011405', 'https://www.navitime.co.jp/poi?spot=60012-55027976', 'https://www.navitime.co.jp/poi?spot=60048-310002727', 'https://www.navitime.co.jp/poi?spot=60048-310012280', 'https://www.navitime.co.jp/poi?spot=60001-BUK0031689', 'https://www.navitime.co.jp/poi?spot=60001-BUK0046029', 'https://www.navitime.co.jp/poi?spot=60001-BUK0049279', 'https://www.navitime.co.jp/poi?spot=60001-BUK0053461', 'https://www.navitime.co.jp/poi?spot=60001-BUK0055195', 'https://www.navitime.co.jp/poi?spot=60001-BUK0059337']\n 4\n ['https://www.navitime.co.jp/poi?spot=60007-REP0013367', 'https://www.navitime.co.jp/poi?spot=60001-BUK0059411', 'https://www.navitime.co.jp/poi?spot=60007-REP0007349', 'https://www.navitime.co.jp/poi?spot=60007-REP0014044', 'https://www.navitime.co.jp/poi?spot=60007-REP0017340', 'https://www.navitime.co.jp/poi?spot=60007-REP0019251', 'https://www.navitime.co.jp/poi?spot=60007-REP0021939', 'https://www.navitime.co.jp/poi?spot=60007-REP0024783', 'https://www.navitime.co.jp/poi?spot=60007-REP0024801', 'https://www.navitime.co.jp/poi?spot=60007-REP0025235', 'https://www.navitime.co.jp/poi?spot=60014-734-3', 'https://www.navitime.co.jp/poi?spot=60018-A1583', 'https://www.navitime.co.jp/poi?spot=60036-87905', 'https://www.navitime.co.jp/poi?spot=60036-88101', 'https://www.navitime.co.jp/poi?spot=60036-91194']\n 6\n ['https://www.navitime.co.jp/poi?spot=60034-28734', 'https://www.navitime.co.jp/poi?spot=60034-29371', 'https://www.navitime.co.jp/poi?spot=60034-1003', 'https://www.navitime.co.jp/poi?spot=60036-92084', 'https://www.navitime.co.jp/poi?spot=60038-0181', 'https://www.navitime.co.jp/poi?spot=60079-NRP00562', 'https://www.navitime.co.jp/poi?spot=60079-NRP00674', 'https://www.navitime.co.jp/poi?spot=60004-CTR00249', 'https://www.navitime.co.jp/poi?spot=60004-CTR00286', 'https://www.navitime.co.jp/poi?spot=60004-NTMR0486', 'https://www.navitime.co.jp/poi?spot=60004-SPT00021', 'https://www.navitime.co.jp/poi?spot=60071-1130522', 'https://www.navitime.co.jp/poi?spot=60034-28733', 'https://www.navitime.co.jp/poi?spot=60034-38930', 'https://www.navitime.co.jp/poi?spot=60034-38935']\n 8\n ['https://www.navitime.co.jp/poi?spot=60034-52478']\n \n```\n\n❷spotのURLのみ取得\n\n```\n\n https://www.navitime.co.jp/poi?spot=60034-52478\n \n```\n\n**実現したい内容**\n\n❷spotのURLのみ取得 \n❶で分割されている各ページのリストを結合して、下記のように \n繰り返しながら1ページのURLから最後の4ページのURLまで開きたいです。\n\n```\n\n https://www.navitime.co.jp/poi?spot=60012-55019091\n https://www.navitime.co.jp/poi?spot=60001-BUK0044576\n https://www.navitime.co.jp/poi?spot=60007-REP0011524\n ・\n ・\n ・\n ・\n https://www.navitime.co.jp/poi?spot=60034-52478\n \n```\n\n下記のコードで行いましたが、 \nどのように各ページのリスト結合すれば良いか。まだ分からない状態です。\n\nwhile文の中に全て繰り返してやった方が良いでしょうか。\n\nそれともリスト分割したもの結合させた方が良いでしょうか。\n\nwhile文の中にtry catchして入れていますが、 \nもし他の方法で各ページのULRを繰り返す方法ありましたら、教えていただけると幸いです。\n\nコード\n\n```\n\n from multiprocessing.dummy import Condition\n from selenium.webdriver.common.keys import Keys\n import time\n from selenium.webdriver.chrome.options import Options\n from selenium.webdriver.support.select import Select \n from selenium import webdriver\n from webdriver_manager.chrome import ChromeDriverManager\n from selenium.webdriver.common.keys import Keys\n from selenium.common.exceptions import NoSuchElementException\n import random\n import subprocess\n \n \n #headless background\n option = Options()\n #backgrand\n #option.add_argument('--headless')\n \n #ログイン情報を維持するための設定 \n # 参考→https://rabbitfoot.xyz/selenium-chrome-profile\n PROFILE_PATH =\"C:\\\\Users\\\\users\\\\AppData\\\\Local\\\\Google\\\\Chrome\\\\User Data\\\\\" # 変更\n option.add_argument('--user-data-dir=' + PROFILE_PATH)\n option.add_argument('--profile-directory=Default')\n #Getting Default Adapter failed error message\n option.add_experimental_option('excludeSwitches', ['enable-logging'])\n \n # ブラウザを開く。 #options=option background\n driver = webdriver.Chrome(executable_path=ChromeDriverManager().install() ,options=option)\n \n #駐車場一覧 - NAVITIME URL\n URL= \"https://www.navitime.co.jp/category/0805/13227/\"\n \n # URLを開く。\n driver.get(URL)\n \n #待機時間\n time.sleep(2)\n i=2\n #while文から各ページ1,2,3,4...のURL取得\n while True:\n try:\n \n #全てのURLを取得\n elements = driver.find_elements('xpath',\"//a[@href]\")\n #print(elements)\n \n new_list = [] #### 空のリストを定義して初期化\n for element in elements:\n list=element.get_attribute(\"href\")\n \n #URLをリストとして作成\n data_list = list.splitlines()\n #print(data_list)\n \n #URLに含んでいるspot=URLのみ 出力\n l_in = [s for s in data_list if 'spot=' in s]\n #print(l_in)\n \n #spotを取得\n if l_in:\n new_list.append(l_in[0]) #### ループ内ではリストに追加するだけ\n \n print(new_list)\n \n #待機時間\n time.sleep(2)\n \n #次のボタンクリック\n button = driver.find_element('xpath','//*[@id=\"body-left\"]/ul[1]/li['+str(i)+']/a')\n button.click()\n \n #ページ数\n i=2+i\n print(i)\n \n except NoSuchElementException:\n break\n \n \n #待機時間\n time.sleep(3)\n \n #取得したリストから1個ずつspot URLを開く\n for item in new_list:\n \n #spot URL\n URL=item\n print(URL)\n \n # spot URLを開く。\n driver.get(URL)\n \n time.sleep(2)\n \n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T04:03:58.887",
"favorite_count": 0,
"id": "91523",
"last_activity_date": "2022-10-10T04:38:48.850",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "18859",
"post_type": "question",
"score": -1,
"tags": [
"python",
"python3"
],
"title": "PythonでURLのリスト分割してから全てのURLを繰り返す方法",
"view_count": 113
} | [
{
"body": "`while True:`のループ内で`new_list = []`を行っているためにそのような状況になっていますね。\n\n該当箇所を以下のように変更すればできるでしょう。(前後は省略します)\n\n```\n\n #待機時間\n time.sleep(2)\n i=2\n new_list = [] #### ←←←ここに移動する\n #while文から各ページ1,2,3,4...のURL取得\n while True:\n try:\n \n #全てのURLを取得\n elements = driver.find_elements('xpath',\"//a[@href]\")\n #print(elements)\n \n #### →→→削除またはコメントアウトする new_list = [] #### 空のリストを定義して初期化\n for element in elements:\n \n```",
"comment_count": 3,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T04:38:48.850",
"id": "91524",
"last_activity_date": "2022-10-10T04:38:48.850",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "26370",
"parent_id": "91523",
"post_type": "answer",
"score": 1
}
] | 91523 | 91524 | 91524 |
{
"accepted_answer_id": null,
"answer_count": 2,
"body": "いま、学校の課題でHaskellを使ってタイトルにもあるようにリスト内の数字をすべて掛け合わせるコードを書いています。\n\n例)[1,2,3,4,5] -> 120\n\n現段階での僕のコードは以下のようになっています。\n\n```\n\n myproduct :: (Num a) => [a] -> a\n myproduct[] = 0\n myproduct(x:xs) = x*(myproduct xs)\n \n```\n\n色々なサイトなどを参照しながら書いてみたんですがどれもうまくいってません。\n\nまた、fold functionを使わないといけないのですが、どうすればいいか全くわからない状態まで来てしまいました。 \nどなたか教えていただけると幸いです。また解説等も載せてくれると幸いです。 \nよろしくお願いします。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T06:40:41.640",
"favorite_count": 0,
"id": "91526",
"last_activity_date": "2022-10-12T13:10:57.380",
"last_edit_date": "2022-10-12T11:15:20.897",
"last_editor_user_id": "3060",
"owner_user_id": "54742",
"post_type": "question",
"score": 1,
"tags": [
"haskell"
],
"title": "Haskellを使い、リスト内の数字をすべて掛け合わせるコードを書きたい",
"view_count": 123
} | [
{
"body": "とりあえず [Try Haskell](https://tryhaskell.org/) で動いたので\n\n累積和の場合\n\n```\n\n foldl (+) 0 [1 .. 10]\n -- 55\n -- :: (Enum b, Num b) => b\n \n```\n\n累積積の場合\n\n```\n\n foldl (*) 1 [1 .. 5]\n -- 120\n -- :: (Enum b, Num b) => b\n \n```\n\n* * *\n\n#### 追記\n\n> また、fold functionを使わないといけないのですが\n\nまず, fold使わない場合はこんな感じ\n\n```\n\n sum [] = 0\n sum (x:xs) = x + sum xs\n \n product [] = 1\n product (x:xs) = x * product xs\n \n```\n\nfold使うと (最初に書いたように)こんな感じ\n\n```\n\n sum = foldr (+) 0\n product = foldr (*) 1\n \n```\n\n`foldl`使うか `foldr`使うかは(内容に合わせて)適当に。 \n例えば `foldr (+) 0 [1,2,3]` なら \n`1:(2:(3:[]))` のようになり \n`1+(2+(3+0))` のように変換されます",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T09:21:47.510",
"id": "91527",
"last_activity_date": "2022-10-12T13:10:57.380",
"last_edit_date": "2022-10-12T13:10:57.380",
"last_editor_user_id": "43025",
"owner_user_id": "43025",
"parent_id": "91526",
"post_type": "answer",
"score": 1
},
{
"body": "0に何をかけても0になので、\n\n```\n\n myproduct[] = 0\n \n```\n\nだと、必ず答えは0になってしまいます。\n\n```\n\n myproduct[] = 1\n \n```\n\nとすれば、うまくいくはずです。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T12:26:39.503",
"id": "91532",
"last_activity_date": "2022-10-10T12:26:39.503",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3605",
"parent_id": "91526",
"post_type": "answer",
"score": 3
}
] | 91526 | null | 91532 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "ローカルに保存してある画像ファイルからテキストを抽出したいです \n画像からテキストを抽出するアプリとかオンラインページとかはあるんですが \n数が多いのでプログラムで一気にやりたいんですが簡単に実現する方法はないでしょうか\n\n画像の中には短い単語1つだけがかかる状態に前処理しています \n抽出するテキストは主に日本語ですが \nアルファベットや数字や半角のひらがななんかもある可能性があります\n\n* * *\n\n<https://github.com/tanreinama/OCR_Japanease> \nまず検索して出てきた python のライブラリを使ってみたんですが \n使い方123を実行して \n足りないライブラリを pip install してたんですが最終的に以下のようなエラーになります\n\n```\n\n raise RuntimeError('Attempting to deserialize object on a CUDA '\n RuntimeError: Attempting to deserialize object on a CUDA device but torch.cuda.is_available() is False. If you are running on a CPU-only machine, please use torch.load with map_location=torch.device('cpu') to map your storages to the CPU.\n \n```\n\n学習済みのモデルを使うだけでもGPUが必要なんでしょうか \nいずれにしてもハードウェア的な問題みたいなので諦めました\n\n追記:\n\nコメントでいただいた通りGPUを使わないモードがあるみたいで \nサンプル画像に対しては動かすことができました\n\n[](https://i.stack.imgur.com/SEHQD.png)\n\nこの画像を読み込ませてみたところ \n`あいうえおBC心3` \nとなってしまいアルファベット混じりの文字列の精度があまりよくないみたいです\n\n* * *\n\n* * *\n\n<https://releases.aspose.com/ocr/java/> \nもう1つこちらの java のライブラリも試そうとしたんですが\n\n```\n\n import com.aspose.ocr.*;\n \n public class Test {\n public static void main(String[] args) throws Exception {\n AsposeOCR api = new AsposeOCR();\n String result = api.RecognizePage(\"test.png\");\n System.out.println(\"Result: \" + result);\n }\n }\n \n```\n\nこういうテストコードをかいて aspose-ocr-22.9.jar を同じディレクトリにおいて\n\n```\n\n javac -classpath .\\aspose-ocr-22.9.jar Test.java\n java -classpath \".;.\\aspose-ocr-22.9.jar\" Test\n \n```\n\nで実行したんですが\n\n```\n\n Exception in thread \"main\" java.lang.NoClassDefFoundError: ai/onnxruntime/OrtException\n \n```\n\nという例外になってしまいます\n\njava は学校で習ったぐらいぐらいでコマンドラインからしか使ったことがないので \nクラスパスの通し方がまずいのかもしれないですが \nコマンドラインから jar をリンクして使うのはどうかけばいいんでしょうか\n\n* * *\n\n* * *\n\n<https://dev.classmethod.jp/articles/google-cloud_vision-api/>\n\nこちらの記事をみながら Google Vison API というのも試してみました \nキー作成してキーのJSONファイルを同じフォルダにおいて \nサンプルコードの画像パスだけかえてをそのまま動かしてみたところ \n以下のエラーになります\n\n```\n\n raise exceptions.DefaultCredentialsError(_HELP_MESSAGE)\n google.auth.exceptions.DefaultCredentialsError: Could not automatically determine credentials. Please set GOOGLE_APPLICATION_CREDENTIALS or explicitly create credentials and re-run the application. For more information, please see https://cloud.google.com/docs/authentication/getting-started\n \n```\n\n`set GOOGLE_APPLICATION_CREDENTIALS=\"D:\\orc-test\\xxxxx-xxxxx-xxxxx.json\"` \nを行ってから再実行してもかわりません\n\n環境は windows10 powershell 上です\n\n`cat \"D:\\orc-test\\xxxxx-xxxxx-xxxxx.json\"` \nを実行すると中身が表示されるのでパスは間違っていないはずです\n\n追記:\n\nコメントで指摘していただいた通りパワーシェルじゃなくコマンドプロンプトで実行したところAPIの結果は帰ってきました\n\n```\n\n google.api_core.exceptions.PermissionDenied: 403 This API method requires billing to be enabled. Please enable billing on project #xxxxxxxx by visiting https://console.developers.google.com/billing/enable?project=xxxxxxxx then retry. If you enabled billing for this project recently, wait a few minutes for the action to propagate to our systems and retry. [links {\n \n```\n\nただ支払いがどうのこうのというエラーになって課金関連の設定までしないと使えないようです。 \nただ趣味で使ってみたいだけであまり理解せずクレカ登録とかするの怖いのでまた時間あるときにドキュメント読んでから試したいと思います\n\n* * *\n\n* * *\n\n言語は ruby / python / javascript(node) / C / C++ / Java \nあたりで他にも簡単に使えるライブラリがあれば教えてほしいです\n\nあるいはライブラリじゃなくてもフリーで使えるAPIとかがあれば \ncurl 叩くだけで使えるので紹介してもらえると嬉しいです",
"comment_count": 7,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T12:02:21.837",
"favorite_count": 0,
"id": "91529",
"last_activity_date": "2022-10-10T22:56:12.083",
"last_edit_date": "2022-10-10T22:56:12.083",
"last_editor_user_id": "19110",
"owner_user_id": null,
"post_type": "question",
"score": 0,
"tags": [
"画像処理"
],
"title": "画像からテキストを抽出したい",
"view_count": 181
} | [] | 91529 | null | null |
{
"accepted_answer_id": "91580",
"answer_count": 2,
"body": "# 経緯\n\n今までテーブル定義書を作成するときは、データベースに対してテーブルの修正・追加・削除を実行した後でWindowsでA5SQLの機能(↓)を使用して自動生成を行っていた\n\n[DBクライアント:A5SQLのテーブル定義書自動生成機能](https://a5m2.mmatsubara.com/help/TableEditor/tableDefine.html)\n\n※ 本質問内でテーブル定義書と呼んでいるのは、上記リンク先で表示されているようなドキュメントとご認識ください\n\n# 知りたいこと\n\n職場の都合により、開発環境がWindowsからMacに統一されることとなり、Windowsでしか利用できないA5SQL以外にテーブル定義書を出力する手段が必要となっている。 \n今までずっと自動生成で行ってきたのを、今更手動でテーブル書を書く運用に戻ることで作業コストが上がってしまうのは避けたいが、Macで利用可能な良い手段が見つからず困っております。もし適切な手順をご存知のかたおられましたらご教示お願いします。 \n管理対象のDBMSはpostgreSQLおよびMySQLです。\n\n# 自分で調べたこと\n\n## DBeaver\n\nMacでA5SQLと同じような事をするツールとして、大体の機能は揃えているが、テーブル定義書を出力する機能は存在していない模様\n\n## pgadmin\n\n[pgAdminでPostgreSQLのテーブル定義書を出力する](https://blog.jhashimoto.net/entry/20110719/1311053856)\nという記事を見ると「レポート作成」の機能によって実現できそうなのだが、最新版であるpgadminのバージョン4で試したところ、こちらの記事の手順に従って操作してもレポート出力のメニューが出てこない。この記事が10年前で比較的古い情報なため、最新のpgadminではできないのかもしれない?\n\n## psql\n\npsql のコマンド(\\d)を利用してテーブル定義を出力するという手段も考えましたが、英語で`FOREGN KEY (hoge_id)\nREFERENCES...`のように設計が表示されるのは、開発者である我々にとっては読みやすくても、上流をやっているマネージャークラスからすると読んで理解するのが厳しい…ということでこれも諦めました",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T12:04:25.937",
"favorite_count": 0,
"id": "91530",
"last_activity_date": "2022-10-13T13:59:21.983",
"last_edit_date": "2022-10-11T02:44:22.540",
"last_editor_user_id": "3060",
"owner_user_id": "54781",
"post_type": "question",
"score": 2,
"tags": [
"macos",
"データベース設計"
],
"title": "テーブル定義書の自動生成をmacで行う方法はありませんか?",
"view_count": 965
} | [
{
"body": "記事を書いた者です。\n\nレポート出力はpgAdmin3でできることを確認しています。[PostgreSQL: Up and\nRunning](https://www.amazon.co.jp/PostgreSQL-Running-Practical-Advanced-\nDatabase-\nebook/dp/B076C4WLBP)には「pgAdmin4はpgAdmin3を完全に書き直したもので、いくつかの機能はpgAdmin4には移植されていない」と記述があり、レポート出力も移植されていないのかもしれません。\n\n代替案ですが、SQLでテーブルのメタデータを出力する方法があります。\n\n[テーブル定義取得クエリ - Architect's\nLog](https://blog.jhashimoto.net/entry/20101110/1289374163)\n\n弊記事はSQL Serverをターゲットにしていますが、PostgreSQLやMySQLでも似たことはできると思われます。\n\nまた、Macをサポートしているかは確認してませんが、有償でよければテーブル定義を出力するツールがあるようです。\n\n[5 Different Types of Tools You Can Use to Create a Data Dictionary - Dataedo\nBlog](https://dataedo.com/blog/different-types-of-tools-you-can-use-to-create-\ndata-dictionary)\n\n# 追記 (2022-10-11 06:00)\n\n回答した後で思いついたのですが、開発環境と別にテーブル定義出力用のWindowsサーバーを立てるのはどうでしょうか。\n\n尚、クラウドサービスの仮想サーバーなら、利用しないときは停止することで利用料を抑えられます。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T20:53:07.413",
"id": "91535",
"last_activity_date": "2022-10-11T06:17:28.897",
"last_edit_date": "2022-10-11T06:17:28.897",
"last_editor_user_id": "4982",
"owner_user_id": "4982",
"parent_id": "91530",
"post_type": "answer",
"score": 2
},
{
"body": "[tblsというOSS](https://github.com/k1LoW/tbls)で自分のやりたい目的は果たすことができそうだとわかりました。Goで動作し、Mac,WindowsなどOSを問わず利用することができますし、出力されるテーブル定義書の表示の日本語化(というか表示を好きな言語に翻訳することができる)にも対応しているので、これで問題解決できそうです。\n\n[日本語解説記事はこちら](https://qiita.com/k1LoW/items/2010413a8547b1e6645e)\n\nすみません、自己解決してしまったのでこの質問はクローズさせていただこうと思います。ご回答頂いた方、ありがとうございました",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-13T13:55:16.253",
"id": "91580",
"last_activity_date": "2022-10-13T13:59:21.983",
"last_edit_date": "2022-10-13T13:59:21.983",
"last_editor_user_id": "3060",
"owner_user_id": "54781",
"parent_id": "91530",
"post_type": "answer",
"score": 2
}
] | 91530 | 91580 | 91535 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "タイトルの通りで、Chromium OS(92.0.4515.183)のLinuxコンテナーを使用して `sudo apt update`\nを実行するとgpgエラーが起き、更新できない。\n\n多分役に立たないと思いますがスクリーンショットも貼っておきます。 \n誰か解決策わかる方いらっしゃいましたら、お力を貸していただけますと助かります。\n\n```\n\n ore0@penguin:~$ sudo apt update\n Hit:1 https://deb.debian.org/debian buster InRelease\n Get:2 https://deb.debian.org/debian-security buster/updates InRelease [34.8 kB]\n Ign:3 https://storage.googleapis.com/cros-packages/92 buster InRelease\n Get:4 https://storage.googleapis.com/cros-packages/92 buster Release [3,119 B]\n Get:5 https://storage.googleapis.com/cros-packages/92 buster Release.gpg [819 B]\n Get:6 https://deb.debian.org/debian-security buster/updates/main arm64 Packages [361 kB]\n Ign:5 https://storage.googleapis.com/cros-packages/92 buster Release.gpg\n Reading package lists... Done \n W: GPG error: https://storage.googleapis.com/cros-packages/92 buster Release: The following signatures were invalid: EXPKEYSIG 78BD65473CB3BD13 Google Inc. (Linux Packages Signing Authority) <[email protected]>\n E: The repository 'https://storage.googleapis.com/cros-packages/92 buster Release' is not signed.\n N: Updating from such a repository can't be done securely, and is therefore disabled by default.\n N: See apt-secure(8) manpage for repository creation and user configuration details.\n \n```\n\n[](https://i.stack.imgur.com/UJI5T.jpg)",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T14:07:30.687",
"favorite_count": 0,
"id": "91533",
"last_activity_date": "2022-10-10T16:03:29.893",
"last_edit_date": "2022-10-10T16:03:29.893",
"last_editor_user_id": "3060",
"owner_user_id": null,
"post_type": "question",
"score": 0,
"tags": [
"linux",
"apt"
],
"title": "Chromium OSでsudo apt updateを実行するとGPGエラーが発生する",
"view_count": 137
} | [] | 91533 | null | null |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "paizaでこのようなコードを書いたのですが、`Main.java:6: error: illegal start of expression public\nclass TestClass{ ^ 1 error` と出てしまいます。どなたか解説お願いします。\n\n```\n\n import java.util.*;\n \n public class Main {\n public static void main(String[] args) throws Exception {\n // Your code here!\n public class TestClass{\n public static void main(String[] args){\n Const con = new Const();\n }\n }\n \n class Const{\n Const(){\n System.out.println(\"A\");\n }\n Const(int a){\n System.out.println(\"B\");\n }\n void hoge() {\n System.out.println(\"C\");\n }\n }\n }\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T16:01:47.377",
"favorite_count": 0,
"id": "91534",
"last_activity_date": "2022-10-10T22:59:47.423",
"last_edit_date": "2022-10-10T22:56:50.813",
"last_editor_user_id": "19110",
"owner_user_id": "54784",
"post_type": "question",
"score": 0,
"tags": [
"java"
],
"title": "Main.java:6: error: illegal start of expression public class TestClass{ ^ 1 error と出てしまいます",
"view_count": 92
} | [
{
"body": "`illegal start of expression public class TestClass`、つまり日本語にすると「`public class\nTestClass` の開始位置がおかしい」と言われています。\n\nソースコードを見ると、`main` 関数の定義の中で `TestClass` クラスの定義が始まってしまっています。Java でこのようなことはできません。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-10T22:59:47.423",
"id": "91536",
"last_activity_date": "2022-10-10T22:59:47.423",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "19110",
"parent_id": "91534",
"post_type": "answer",
"score": 2
}
] | 91534 | null | 91536 |
{
"accepted_answer_id": "91539",
"answer_count": 1,
"body": "クエリパラメーターを使用する際に、一つのパラメーターに複数の検索条件をつけたい場合ってどうリクエストを送るのが正解なんでしょうか?\n\n`https://localhost:8080/hoge?fuga=aaa&fuga=bbb&fuga=ccc`\n\nこのように書くのが正解ですか? \n他に記述方法があれば教えていただきたいです。",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T00:04:28.370",
"favorite_count": 0,
"id": "91538",
"last_activity_date": "2022-10-11T00:43:04.793",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "30328",
"post_type": "question",
"score": 0,
"tags": [
"url"
],
"title": "URLのクエリパラメーターについて",
"view_count": 384
} | [
{
"body": "API設計がどのようになっているのか分からないので、明確な回答が出来ませんが、カンマ区切りで送ってバックエンドで処理すればいいのではないでしょうか??\n\n```\n\n URL?search=hoge,foo,123\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T00:43:04.793",
"id": "91539",
"last_activity_date": "2022-10-11T00:43:04.793",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54747",
"parent_id": "91538",
"post_type": "answer",
"score": 0
}
] | 91538 | 91539 | 91539 |
{
"accepted_answer_id": "91541",
"answer_count": 1,
"body": "# 現象\n\nsubprocessモジュールで、Windowsのsysteminfoを取得し、'shift-jis'デコードすると、環境によって例外が送出される。 \nPC1では例外発生:過去にはPC2同様問題なかった。 \nPC2では問題ない\n\nちなみにソースコード上の以下の部分を変更することで、PC1,PC2とも例外は発生しなくなります。 \n→ **これで一旦、例外がなくなったのですが、再確認したところ、例外が発生するようになりました。**\n\n```\n\n textout = retout.decode('shift-jis') -> textout = retout.decode()\n \n```\n\n# 知りたいこと\n\n * systeminfoの内容(環境ごとの情報の中に文字コードが異なるものがある可能性)によって発生するのか\n * 環境ごとに発生するとしたら、どのように原因を調べたらよいか?(環境変数にそれらしき違いはありませんでした。)\n\n# 環境\n\n・Windows 10 Pro \n・VScode 1.72.0 \n・Python 3.9.10\n\nPC1、PC2ともに上記の環境\n\n# 発生する例外\n\n```\n\n UnicodeDecodeError: 'shift_jis' codec can't decode byte 0x97 in position 2475: illegal multibyte sequence \n \n```\n\n# ソースコード\n\n```\n\n import json\n import subprocess\n \n cmd_list = ['systeminfo', '/fo', 'LIST']\n \n cmdreturn = subprocess.run(\n cmd_list, check=True, stdout=subprocess.PIPE)\n \n retcode = cmdreturn.returncode\n retout = cmdreturn.stdout\n #textout = retout.decode()\n try:\n textout = retout.decode('shift-jis')\n except Exception as e:\n print(e)\n raise e\n \n text_list = textout.splitlines()\n \n \n param_dict = dict()\n c_key = None\n \n for text_line in text_list:\n if not text_line.startswith(' '):\n if ':' in text_line:\n key_word = text_line.split(':', maxsplit=1)\n if key_word[1].startswith(' '):\n key_word[1] = key_word[1].lstrip()\n param_dict.setdefault(key_word[0], key_word[1])\n c_key = key_word[0]\n else:\n temp = text_line.lstrip()\n if '\\t' in temp:\n temp = temp.split('\\t')\n temp = ''.join(temp)\n if c_key in param_dict:\n c_data = param_dict[c_key]\n if isinstance(c_data, list):\n set_list = c_data\n set_list.append(temp)\n pass\n else:\n set_list = [c_data, temp]\n param_dict[c_key] = set_list\n else:\n ret_dump = json.dumps(param_dict, indent=2, ensure_ascii=False)\n \n print(ret_dump)\n \n```\n\n# 追加試験\n\n## 文字コード指定\n\nlocaleモジュールにより、システムのエンコードを取得し、これをdecode時に指定しました。結果は同じで、0x97がErrorとなります。\n\nバイナリエディタの該当部分をコピペして、サクラエディタに貼り付けると、「・」という表示になりました。 \nコマンドプロンプトで、systeminfo /fo LISTを実行した結果の該当行は、以下の表示になります。\n\n```\n\n 接続名: イーサネット 5\n \n```\n\n## ソースコード改訂\n\n```\n\n import json\n import locale\n import subprocess\n \n cmd_list = ['systeminfo', '/fo', 'LIST']\n \n cmdreturn = subprocess.run(\n cmd_list, check=True, stdout=subprocess.PIPE)\n \n local_encode = locale.getdefaultlocale()\n if local_encode:\n language_code, encoding = local_encode\n \n retcode = cmdreturn.returncode\n retout = cmdreturn.stdout\n \n with open('systeminfo.bin','bw') as f:\n f.write(retout)\n #textout = retout.decode()\n try:\n textout = retout.decode(encoding)\n except Exception as e:\n print(e)\n raise e\n \n text_list = textout.splitlines()\n \n \n param_dict = dict()\n c_key = None\n \n for text_line in text_list:\n if not text_line.startswith(' '):\n if ':' in text_line:\n key_word = text_line.split(':', maxsplit=1)\n if key_word[1].startswith(' '):\n key_word[1] = key_word[1].lstrip()\n param_dict.setdefault(key_word[0], key_word[1])\n c_key = key_word[0]\n else:\n temp = text_line.lstrip()\n if '\\t' in temp:\n temp = temp.split('\\t')\n temp = ''.join(temp)\n if c_key in param_dict:\n c_data = param_dict[c_key]\n if isinstance(c_data, list):\n set_list = c_data\n set_list.append(temp)\n pass\n else:\n set_list = [c_data, temp]\n param_dict[c_key] = set_list\n else:\n ret_dump = json.dumps(param_dict, indent=2, ensure_ascii=False)\n \n print(ret_dump)\n \n \n```\n\n## 発生する例外\n\n```\n\n UnicodeDecodeError: 'cp932' codec can't decode byte 0x97 in position 2475: illegal multibyte sequence\n \n```\n\n## バイナリエディタ\n\nバイナリを出力してエディタで表示した結果画像を貼り付けます。 \nちなみに、PC2では該当部分に0x97というバイトは存在しません。\n\n[](https://i.stack.imgur.com/hj46j.png)\n\n# 再追加試験\n\nコマンドプロンプトで、以下のコマンドを実行\n\n```\n\n systeminfo /fo LIST > output.txt\n \n```\n\nこの結果を以下のPythonスクリプトでバイナリ化\n\n```\n\n with open('output.txt','br') as f:\n txt = f.read()\n \n with open('output.bin','bw') as f:\n f.write(txt)\n \n```\n\n追加試験時とのバイナリ比較をVScode上で表示 \n[](https://i.stack.imgur.com/aXnAm.png)\n\nsubprocessモジュールによるstdoutでは日本語出力がうまく実行できないと考えてよいのでしょうか?\n\nさらにsubprocessモジュールのencoding引数に、localeモジュールで取得したencodingを指定すると、0x97で引っかかって例外出力されます。cp932,utf-8,shift-\njisを試しましたが結果が同じでした。",
"comment_count": 6,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T02:28:26.927",
"favorite_count": 0,
"id": "91540",
"last_activity_date": "2022-10-12T08:49:27.607",
"last_edit_date": "2022-10-12T06:33:42.340",
"last_editor_user_id": "32891",
"owner_user_id": "32891",
"post_type": "question",
"score": 0,
"tags": [
"python",
"python3",
"windows",
"文字コード"
],
"title": "Windows 文字コードに関するエラー",
"view_count": 476
} | [
{
"body": "日本語環境以外では当然ShiftJIS/CP932以外もあり得ますし、日本語環境でもWindows\n10以降ではUTF-8/CP65001になっている場合もあります。 \nPythonのバージョン、Windowsのコードページ設定、環境変数のPYTHONIOENCODINGやPYTHONUTF8などを調べるのはどうでしょうか?\n\n追加分についてSJISやCP932の第2バイトとして3Fは未使用領域のはずなのに3F 97\n3Fという出力になってるので、何かsysteminfoが不適切な出力をする条件があるんだと思います。\n\n<https://ja.wikipedia.org/wiki/Microsoft%E3%82%B3%E3%83%BC%E3%83%89%E3%83%9A%E3%83%BC%E3%82%B8932>\n\nエラーになりさえしなければ良いという用途であれば `textout = retout.decode('shift-jis',\nerrors='replace')` のような対応はできますが当然情報は失われます。",
"comment_count": 4,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T04:01:42.030",
"id": "91541",
"last_activity_date": "2022-10-12T08:49:27.607",
"last_edit_date": "2022-10-12T08:49:27.607",
"last_editor_user_id": "241",
"owner_user_id": "241",
"parent_id": "91540",
"post_type": "answer",
"score": 1
}
] | 91540 | 91541 | 91541 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "タイトル通りになるのですがUnityに関する質問です。\n\n * RawimageにRenderTextureをアタッチ\n * ShaderGraphにてGraphSettingのMaterialをSpriteUnlitで作成したマテリアルをアタッチ\n * タイムライン上でRawimageのアニメーショントラックを追加\n * レコーディングでプロパティに変化を付ける。\n\n以上の事をしたかったのですが上手くいかず… \nそもそもにレコーディングの時点でプロパティに変化をつけてもKeyが入力されませんでした。\n\n自分が分かる範囲では \nGraphSettingのMaterialをUnlitに変更 \n3Dモデルに反映させたマテリアルのプロパティに関しては問題なく反映されました。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T07:09:09.803",
"favorite_count": 0,
"id": "91542",
"last_activity_date": "2022-10-11T07:33:40.787",
"last_edit_date": "2022-10-11T07:33:40.787",
"last_editor_user_id": "3060",
"owner_user_id": "54789",
"post_type": "question",
"score": 0,
"tags": [
"unity3d",
"unity2d"
],
"title": "RwaimageにRenderaTextureを設定し、ShaderaGraphで作成したマテリアルを設定してタイムライン上でプロパティを動かしたい",
"view_count": 30
} | [] | 91542 | null | null |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "GメールをLINEに自動転送したくて設定中です。 \nタイトルまでを転送する設定まではできたのですが、メール本文までLINEで見れるようにする所で躓いております。\n\n資料によると33行目に以下のコードを挿入すれば良いという事ですが、挿入後保存する時にエラーが発生する状況です。 \n解決策をご教授いただければと思います。よろしくお願いいたします。\n\n```\n\n + “\\n\\n[Message]\\n”+ myMsgs[i].slice(-1)[0].getPlainBody();\n \n```\n\n**全体のコード:**\n\n[](https://i.stack.imgur.com/gsC0s.jpg)",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T07:39:48.513",
"favorite_count": 0,
"id": "91543",
"last_activity_date": "2022-10-12T00:41:58.140",
"last_edit_date": "2022-10-12T00:41:58.140",
"last_editor_user_id": "3060",
"owner_user_id": "54791",
"post_type": "question",
"score": 0,
"tags": [
"google-apps-script"
],
"title": "Google Apps ScriptでのSyntaxErrorを解決したい",
"view_count": 73
} | [
{
"body": "> “\\n\\n[Message]\\n”+ myMsgs[i].slice(-1)[0].getPlainBody();\n\nもしこのコードそのままを使用しているなら、引用符が間違ってます。`“` (U+201C) ではなく `\"` (U+0022) か `'` (U+0027)\nか ` (U+0060)を使ってください。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T00:06:49.940",
"id": "91556",
"last_activity_date": "2022-10-12T00:06:49.940",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3475",
"parent_id": "91543",
"post_type": "answer",
"score": 1
}
] | 91543 | null | 91556 |
{
"accepted_answer_id": "91547",
"answer_count": 1,
"body": "テラフォームのバージョンの見方がよくわかりません。\n\n`cd /usr/local/Cellar/tfenv/3.0.0/versions`に今ローカルに入っているバージョンを確認でき、\n\n`3.0.0/versions`の内容が `1.3.2`となっております。\n\nテラフォームのバージョンはこの`3.0.0`のことと思っておりました。\n\n2週類の数字`3.0.0/versions`と`1.3.2`の違いは何かご教授願います。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T08:13:52.337",
"favorite_count": 0,
"id": "91544",
"last_activity_date": "2022-10-11T09:06:58.323",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "49430",
"post_type": "question",
"score": 1,
"tags": [
"terraform"
],
"title": "テラフォームのバージョンの見方がわかりません",
"view_count": 76
} | [
{
"body": "パスに `tfenv/` が含まれているので、Terraform の複数バージョンを管理できる\n[tfenv](https://github.com/tfutils/tfenv) を使用しているのが混乱の元じゃないでしょうか。\n\n`Cellar/tfenv/3.0.0` に関してはあくまで tfenv のバージョン、(設定されている) Terraform\n自体のバージョンは以下のコマンドで確認してみてください。\n\n```\n\n $ terraform --version\n \n```",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T09:06:58.323",
"id": "91547",
"last_activity_date": "2022-10-11T09:06:58.323",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3060",
"parent_id": "91544",
"post_type": "answer",
"score": 2
}
] | 91544 | 91547 | 91547 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "タイトルの通りなのですが、`https://xxx.com/`にbuildされるものを、`https://xxx.com/yyy`というサブディレクトリをルートにbuildされるように設定したいです。 \nそういったことは可能なのでしょうか?また、その場合はどのように設定すればよいでしょうか?\n\nなお、下記が使用しているGatsybyのVerです。\n\n```\n\n Gatsby CLI version: 4.24.0\n Gatsby version: 4.23.1\n \n```\n\nご存知の方がいらっしゃれば、ぜひご教授ください。宜しくお願い致します。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T08:31:13.517",
"favorite_count": 0,
"id": "91545",
"last_activity_date": "2022-10-11T08:31:13.517",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54792",
"post_type": "question",
"score": 0,
"tags": [
"aws",
"gatsby"
],
"title": "Gatsby + Amplify でサブディレクトリをルートにBuildしたい",
"view_count": 49
} | [] | 91545 | null | null |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "pythonでtkinterを使って、入力したデータもしくは参照したデータを保存したいです。 \nネットで調べると主にsqlを使って保存する方法ありますが、他に方法ありますでしょうか。\n\n**実現したい内容** \n下記のスクリプトで画像をクリックしています。\n\n①画像取得>保存 \n②フォルダーで保存した画像を選択 \n③画像クリック\n\n**tkinterを閉じた後に再度開くと選択したフォルダーのデータが消えてしまいます。** \nそのために \ntkinter上でファイルを新規保存する機能もしくは他に保存する方法ありますでしょうか。\n\n②フォルダーで保存した画像を選択 \n**tkinterを再度開いた後に選択したフォルダを表示できますか。 \n最終的に選択したフォルダーを保存したいです。**\n\nお知恵をお貸しいただけませんでしょうか。\n\nどなたかご教授頂ければ幸いです。 \n何卒よろしくお願い致します。\n\nコード\n\n```\n\n import tkinter as tk\n from PIL import Image, ImageTk\n import pyautogui\n import time\n import subprocess\n import os\n from tkinter import filedialog\n import re\n \n #SnippingTool起動、ボタンがクリックされたら実行\n def image(event):\n \n p = subprocess.Popen([r\"C:\\Windows\\System32\\SnippingTool.exe\"])\n \n selected_file = \"\"\n #ファイル参照、ボタンがクリックされたら実行\n def file_select():\n global selected_file\n idir = 'C:\\\\python_test' #初期フォルダ\n filetype = [(\"すべて\",\"*\"),(\"テキスト\",\"*.txt\"), (\"音楽\",\"*.mp3\")] #拡張子の選択\n file_path = tk.filedialog.askopenfilename(filetypes = filetype, initialdir = idir)\n selected_file = file_path\n input_box.insert(tk.END, file_path) #結果を表示\n print(selected_file)\n \n #画像クリック、ボタンがクリックされたら実行\n def click_image():\n global selected_file\n \n #ファイル参照の関数からselected_fileを代入、このPCアイコンの座標を取得\n position=pyautogui.locateOnScreen(selected_file, confidence=0.9)\n #position=pyautogui.locateOnScreen(\"C://Users///image//excel.PNG\", confidence=0.9)\n #maxwindowPCアイコンをクリック\n pyautogui.doubleClick(position)\n \n # 画面作成\n window = tk.Tk()\n window.geometry(\"300x300\")\n window.title(\"ボタンを表示する\")\n \n #画像取得 ボタン作成\n btn1 = tk.Button(window, text=\"①画像取得\")\n \n # ボタン表示\n btn1.place(x=15, y=15, width=150, height=40)\n \n # ボタンに関数をbind\n btn1.bind(\"<Button-1>\", image)\n \n #入力欄の作成\n input_box = tk.Entry(width=40)\n input_box.place(x=10, y=100)\n \n #結果ラベルの作成\n input_label = tk.Label(text=\"②画像ファイル選択\")\n input_label.place(x=10, y=70)\n \n #参照ボタンの作成\n button = tk.Button(text=\"参照\",command=file_select)\n button.place(x=10, y=130)\n \n #画像クリックボタンの作成\n button = tk.Button(text=\"③画像クリック\",command=click_image)\n button.place(x=15, y=175, width=150, height=40)\n \n # 画面表示(常駐)\n window.mainloop()\n \n \n```",
"comment_count": 3,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T10:07:30.273",
"favorite_count": 0,
"id": "91548",
"last_activity_date": "2022-10-12T14:33:40.737",
"last_edit_date": "2022-10-11T14:50:04.277",
"last_editor_user_id": "18859",
"owner_user_id": "18859",
"post_type": "question",
"score": 0,
"tags": [
"python",
"python3",
"tkinter"
],
"title": "tkinterで入力したデータを保存する方法",
"view_count": 1042
} | [
{
"body": "必要なデータが1つだけなら起動時に読みだして、データが更新される毎にファイルも更新するのが簡単なやり方ですね。\n\n該当部分だけ抜き出して記述すると以下になります。前後は省略します。\n\n```\n\n #### 選択ファイルパスを保存したファイル(名前やフォルダは適当に変更すること)からデータ取得\n savedata_file = os.path.dirname(os.path.abspath(__file__)) + '\\\\savedata.txt'\n try:\n with open(savedata_file, 'r', encoding='utf8') as f:\n selected_file = f.read()\n except:\n selected_file = \"C:\\\\python_test\\\\*.*\" # ファイルが無い等の時は初期フォルダ+ダミーファイル名\n \n # ファイル参照、ボタンがクリックされたら実行\n def file_select():\n global selected_file\n idir = os.path.dirname(os.path.abspath(selected_file)) #### 対象フォルダを抽出\n filetype = [(\"すべて\", \"*\"), (\"テキスト\", \"*.txt\"), (\"音楽\", \"*.mp3\")] # 拡張子の選択\n file_path = tk.filedialog.askopenfilename(filetypes=filetype, initialdir=idir)\n selected_file = file_path\n input_box.insert(tk.END, file_path) # 結果を表示\n print(selected_file)\n #### 選択結果パスが有効ならファイルへ保存\n if os.path.exists(selected_file):\n with open(savedata_file, 'w', encoding='utf8') as f:\n f.write(selected_file)\n \n```\n\n* * *\n\n以下、例は示しませんが他の方法も参考に:\n\nもう少しデータを増やして階層化する等の場合はこんなパッケージが使えるでしょう。 \n[configparser ---\n設定ファイルのパーサー](https://docs.python.org/ja/3/library/configparser.html) \n[pythonプログラムにおける設定ファイル管理モジュール~configparserの使い方と注意点~](https://qiita.com/mimitaro/items/3506a444f325c6f980b2) \n[How to update a value python .ini file with\nconfigparser](https://stackoverflow.com/q/67163117/9014308)\n\n他にも settings とか json とかあるようです。 \n[Pythonの設定ファイル管理まとめ(settings / ini / json 形式別)\n[コピペサンプルコード付き]](https://kodocode.net/python-begin-settings/) \n[【Python基礎】プログラムの設定ファイルとしてJSON形式のファイルを検討](https://3pysci.com/json-1/) \n[自作ツールどうしてる?Python設定ファイル選手権](https://news.mynavi.jp/techplus/article/zeropython-63/)",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T14:33:40.737",
"id": "91568",
"last_activity_date": "2022-10-12T14:33:40.737",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "26370",
"parent_id": "91548",
"post_type": "answer",
"score": 1
}
] | 91548 | null | 91568 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "たくさんあるゲーム画面のスクショの \n特定の位置にある文字列を抜き出したいです\n\n* * *\n\n<https://myafu-python.com/work/text-extraction/> \nこちらの手順に従って画像パス以外同じコードを \n以下の画像に対して実行したところ\n\n[](https://i.stack.imgur.com/U67lD.png)\n\nえおABCabc123\n\nという途中からの文字列しか取得できませんでした \nこれは使い方の問題なのか純粋に精度の問題なんでしょうか\n\n出力される文字の 色 背景色 フォント フォントサイズ \nとかは調べればわかる状態なんですが \nそれでも完全な文字列取得は難しいのでしょうか\n\n* * *\n\n目的が達成できれば言語もAPIも問わないので \n実現方法があれば教えていただけるとうれしいです",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T11:44:03.850",
"favorite_count": 0,
"id": "91549",
"last_activity_date": "2022-10-11T11:44:03.850",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": null,
"post_type": "question",
"score": 0,
"tags": [
"画像認識"
],
"title": "日本語英語まじりのテキスト画像からテキスト文字列を取り出したい",
"view_count": 61
} | [] | 91549 | null | null |
{
"accepted_answer_id": "92415",
"answer_count": 1,
"body": "Nginxで1ドメインで複数のアプリを公開する場合の設定方法について助言をお願いしたく思います。 \n例えば、wordpressとredmineの2つを公開するとします(ここではwordpressのみ設定)。 \n以下の設定内容ではエラーが発生していますが、間違っている点は何でしょうか? \nちなみに以下の設定内容から下リストの点を修正すると1アプリのみ公開設定としては無事公開できました。\n\n * /wp/を/とする\n * ネストlocationで外側のlocationを削除する\n\n環境: \nOS:CentOS Stream8 \nNginx:1.14.1-9\n\nエラー内容:\n\n```\n\n [error] 2931#0: *1 FastCGI sent in stderr: \"Primary script unknown\" while reading response header from upstream, client: (ip), server: _, request: \"GET /wp/ HTTP/2.0\", upstream: \"fastcgi://unix:/run/php-fpm/www.sock:\", host: \"(domain)\"\n \n```\n\n設定内容:\n\n```\n\n server {\n listen 443 ssl http2 default_server;\n listen [::]:443 ssl http2 default_server;\n server_name _;\n \n index index.php index.html\n root /usr/share/nginx/html;\n \n # Load configuration files for the default server block.\n include /etc/nginx/default.d/*.conf;\n \n # SSL設定省略\n \n # WordPress\n location ^~ /wp {\n # ドキュメントルート\n root /var/www/wp/;\n \n location = /wp/wp-config.php {\n deny all;\n }\n \n # /wp/でアクセスすると/index.phpへ.\n location /wp/ {\n rewrite /wp/(.*)$ /$1 break;\n try_files $uri $uri/ /index.php$is_args$args;\n }\n \n # どこもここで処理される(/wp/を含め).\n location ~ /wp/.+\\.php$ {\n rewrite /wp/(.*)$ /$1 break;\n include fastcgi.conf;\n fastcgi_pass unix:/run/php-fpm/www.sock;\n }\n }\n \n error_page 404 /404.html;\n location = /40x.html {\n }\n \n error_page 500 502 503 504 /50x.html;\n location = /50x.html {\n }\n }\n \n```\n\n確認済みなもの: \n[/scriptsではなく$document_rootにする。](https://qiita.com/aioa/items/238d0e6e1997d35acc30)",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T13:56:43.000",
"favorite_count": 0,
"id": "91550",
"last_activity_date": "2022-11-24T16:00:05.717",
"last_edit_date": "2022-10-11T16:21:33.887",
"last_editor_user_id": "53585",
"owner_user_id": "53585",
"post_type": "question",
"score": 0,
"tags": [
"nginx"
],
"title": "Nginxの複数アプリ公開設定で公開できない",
"view_count": 113
} | [
{
"body": "自己解決しました。\n\n以下の2点の間違いがありました。\n\n 1. phpファイルのrewriteで不用意に引数を追加していたこと。 \nrewriteで$is_args$argsを記述していたため、リクエストがindex.php?p=1?p=1になっていました。\n\n 2. phpファイル以外のファイル(CSSやJSなど)でファイルをrewrite設定していないこと。\n\n以下の設定内容で公開できます。\n\n```\n\n # WordPress\n location ^~ /wp/ {\n root /var/www/blog/;\n location = /wp/wp-config.php {\n deny all;\n }\n \n # when access to \"/wp/\".\n location = /wp/ {\n #rewrite /wp /wp/index.php$is_args$args;\n rewrite /wp/ /wp/index.php;\n }\n \n # when access to php file below \"/wp/\".\n location ~ /wp/.+\\.php.* {\n rewrite /wp/(.*)$ /$1 break;\n include fastcgi.conf;\n fastcgi_pass unix:/run/php-fpm/www.sock;\n }\n \n # when access to other file(css/js/etc.) below \"/wp/\".\n location ~ /wp/.+(?!php)$ {\n rewrite /wp/(.*)$ /$1 break;\n }\n }\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-11-24T16:00:05.717",
"id": "92415",
"last_activity_date": "2022-11-24T16:00:05.717",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "53585",
"parent_id": "91550",
"post_type": "answer",
"score": 0
}
] | 91550 | 92415 | 92415 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "TkinterとSeleniumを使ったアプリケーションで,スタートを押すとChromeが起動し,スタートを押すと \n`input('>何かを入力すると,コンソールにp要素のテキストを表示')` \nが動作し,コンソールでエンターキーなりを押すまでp要素の取得を待ちます. \n次に \n`input('>何かを入力すると,コンソールにh2要素のテキストを表示')` \nが動作し,同じくh2要素の取得を待ちます.\n\nこのような動作の「コンソールでエンターキーなりを押す」を「次へボタンを押す」に対応させて,次へボタンを押すまで次の処理を待つといった処理を行いたいのですが,どのように実装すればよいでしょうか.\n\n処理を止めたい理由は,出力を一つずつ,目視で確認した後に,次の処理へ進むようにしたいためです.\n\n現状,next()は何も行いませんが,本来は次へボタンを押すとnext()が動作し,次の処理へ進めればと思っています.\n\n処理1 \nnext()が実行されるまで待つ \n処理2 \nnext()が実行されるまで待つ \n処理3 \n︙\n\nご教示くださいませ.\n\n[](https://i.stack.imgur.com/cykV7.jpg)\n\n```\n\n import time\n import ctypes\n import tkinter as tk\n import tkinter.ttk as ttk\n from selenium import webdriver\n from selenium.webdriver.common.by import By\n from selenium.webdriver.chrome.service import Service\n from webdriver_manager.chrome import ChromeDriverManager\n \n try:\n ctypes.windll.shcore.SetProcessDpiAwareness(True)\n except BaseException:\n pass\n \n \n def next():\n pass\n \n \n def start():\n driver = webdriver.Chrome(\n service=Service(ChromeDriverManager().install()),\n )\n driver.get('https://scrape-b276b.web.app/')\n input('>何かを入力すると,コンソールにp要素のテキストを表示')\n print(driver.find_element(By.CSS_SELECTOR, '#app > div > main > div > div > div > div > section > div.text > p').text)\n input('>何かを入力すると,コンソールにh2要素のテキストを表示')\n print(driver.find_element(By.CSS_SELECTOR, 'h2').text)\n input('>何かを入力すると,終了')\n \n \n def main():\n frame = tk.Tk()\n frame.title('title')\n frame.geometry(\"230x60+400+440\")\n \n button1 = ttk.Button(frame, text='次へ', command=next)\n button1.place(x=10, y=10, width=100)\n button2 = ttk.Button(frame, text='スタート', command=start)\n button2.place(x=120, y=10, width=100)\n \n frame.mainloop()\n \n \n if __name__ == '__main__':\n main()\n \n \n```",
"comment_count": 4,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T14:42:43.020",
"favorite_count": 0,
"id": "91551",
"last_activity_date": "2022-10-14T06:53:26.813",
"last_edit_date": "2022-10-14T03:15:06.090",
"last_editor_user_id": null,
"owner_user_id": null,
"post_type": "question",
"score": 1,
"tags": [
"python",
"selenium",
"tkinter"
],
"title": "Tkinterにて,ボタンが押されるまで次の処理を待機する方法を教えてください.",
"view_count": 510
} | [
{
"body": "[XY問題](https://ja.meta.stackoverflow.com/q/2701)ですね。\n\nおそらく「スタート」ボタンの処理が終了すると`webdriver.Chrome(...)`で開始したブラウザのウインドウが終了してしまう状況を止めてウインドウを表示したままにしたいのだと思われます。\n\nその原因は`def start():`関数の中で`driver`オブジェクトを作成していることです。\n\n関数の中で作成したオブジェクトはローカル変数の扱いになり、グローバル変数に代入するとかしなければ、関数が終了すれば破棄されます。 \nあらかじめ`def start():`関数の外で`driver`オブジェクトを作成しておけば待機する処理などは不要で問題は解決するでしょう。\n\n以下のようにしてみてください。関連する部分だけを抜き出して記述します。 \nnext()の呼び出し確認\n\n```\n\n def next():\n print('next()呼び出しの確認。')\n \n```\n\nstart()のサイト表示処理(input()等は削除しておく)\n\n```\n\n def start():\n driver.get('https://scrape-b276b.web.app/')\n print('start()呼び出しの確認。')\n \n```\n\nあらかじめdriverオブジェクトを作成しておく\n\n```\n\n if __name__ == '__main__':\n driver = webdriver.Chrome(\n service=Service(ChromeDriverManager().install()),\n )\n main()\n driver.close()\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T03:56:50.417",
"id": "91588",
"last_activity_date": "2022-10-14T06:53:26.813",
"last_edit_date": "2022-10-14T06:53:26.813",
"last_editor_user_id": "26370",
"owner_user_id": "26370",
"parent_id": "91551",
"post_type": "answer",
"score": 2
}
] | 91551 | null | 91588 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "### 目標\n\nユーザープロフィールページ(show.blade)に飛んだ際に画面下部に、そのユーザーの投稿からランダムに3件だけおすすめの投稿として表示させたい。\n\n### 現状の問題点\n\n過去の投稿した内容を丸ごと一件ずつ呼び出したいのですが、phpmyadminで設定しているpostsテーブルから\nuser_id(投稿者の名前)だけやcomment(投稿者の書いたコメント内容)だけを呼び出す方法は分かるのですが、postsテーブル丸ごと呼び出す際の書き方が分かりません。\n\nPost.php (スコープを書いたPostモデル)\n\n```\n\n <?php\n \n namespace App;\n \n use Illuminate\\Database\\Eloquent\\Model;\n \n class Post extends Model\n {\n public function comments(){\n return $this->hasMany('App\\Comment');\n }\n \n protected $fillable = ['user_id', 'comment', 'image'];\n \n public function user(){\n return $this->belongsTo('App\\User');\n }\n \n // public function scopeRecommend($query){\n // // ランダムに3つの投稿を取得\n // // return $query->inRandomOrder()->limit(3);\n // //最新の投稿を3つ取得\n // return $query->latest()->limit(3);\n // }\n \n public function scopeRecommend($query, $self_id){\n //該当のユーザーの投稿\n // ランダムに3つの投稿を取得\n return $query->where('user_id', '=', $self_id)->inRandomOrder()->limit(3);\n }\n \n }\n \n```\n\nUserController.php (ユーザープロフィール(show.blade)等のコントローラー)\n\n```\n\n <?php\n \n namespace App\\Http\\Controllers;\n \n use Illuminate\\Http\\Request;\n use App\\User;\n use App\\Post;\n use App\\Http\\Requests\\UserRequest;\n use App\\Http\\Requests\\UserImageRequest;\n \n class UserController extends Controller\n {\n public function show($id)\n {\n $user = User::find($id);\n $recommended_posts = Post::recommend($user->id)->get();\n return view('users.show',[\n 'title' => 'プロフィール',\n 'user' => $user,\n 'recommended_posts' => $recommended_posts\n ]);\n }\n \n public function edit(int $id)\n {\n $user = User::find($id);\n return view('users.edit',[\n 'title' => 'プロフィール編集',\n 'user' => $user,\n ]); \n }\n \n public function update(int $id, UserRequest $request){\n $user = User::find($id);\n $user->update($request->only(['name', 'email', 'profile']));\n session()->flash('success', 'プロフィールを編集しました!');\n return redirect()->route('users.show', $id);\n }\n \n // 画像変更処理\n public function editImage($id)\n {\n $user = User::find($id);\n return view('users.edit_image', [\n 'title' => 'プロフィール画像変更画面',\n 'user' => $user,\n ]);\n }\n public function updateImage($id, UserImageRequest $request){\n \n //画像投稿処理\n $path = '';\n $image = $request->file('image');\n \n if(isset($image) === true){\n // publicディスク(storage/app/)のphotosディレクトリに保存\n $path = $image->store('photos', 'public');\n }\n \n $user = User::find($id);\n \n // 変更前の画像の削除\n if($user->image !== ''){\n // publicディスクから、該当の投稿画像($user->image)を削除\n \\Storage::disk('public')->delete(\\Storage::url($user->image));\n }\n \n $user->update([\n 'image' => $path, //ファイル名を保存 \n ]);\n \n session()->flash('success', '画像を変更しました!');\n return redirect()->route('users.show', $id);\n }\n }\n \n```\n\nshow.blade.php(ユーザープロフィール画面に当たるビュー)\n\n```\n\n @extends('layouts.logged_in')\n \n @section('content')\n <h1>{{ $title }}</h1>\n \n <a href=\"{{ route('users.edit', Auth::user() )}}\">編集</a>\n \n @if($user !== null)\n <div>\n 名前\n {{ $user->name }}\n </div>\n <div>\n @if($user->image !== '')\n <img src=\"{{ asset('storage/' . $user->image) }}\">\n @else\n <img src=\"{{ asset('images/no_image.png') }}\">\n @endif\n <a href=\"{{ route('users.edit_image', $user) }}\">画像を変更</a>\n </div>\n <div>\n <span>プロフィール</span>\n <ul>\n @if($user->profile)\n <li>{{ $user->profile }}</li>\n @else\n <li>プロフィールが設定されていません。</li>\n @endif\n </ul>\n </div>\n \n @else\n <p>設定されていません。</p>\n \n @endif\n \n <h2>{{ $user->name }} のおすすめ投稿</h2>\n <ul>\n @forelse($recommended_posts as $recommend_post )\n <li><a href=\"{{ route('posts.show', $recommend_post) }}\">{{ $recommend_post->comment }}</a></li>\n @empty\n <li>おすすめの投稿はありません。</li>\n </ul>\n @endforelse\n @endsection\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T15:20:11.503",
"favorite_count": 0,
"id": "91552",
"last_activity_date": "2022-10-12T01:20:42.410",
"last_edit_date": "2022-10-12T01:20:42.410",
"last_editor_user_id": "3060",
"owner_user_id": "54798",
"post_type": "question",
"score": 0,
"tags": [
"laravel",
"laravel-5"
],
"title": "Laravelにてクエリビルダを使ったおすすめ投稿の表示について",
"view_count": 113
} | [] | 91552 | null | null |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "Pythonで適当に遊んでいたのですが、if文を使ってy/n分岐させようとするとinvaind syntaxがでます。\n\nネットでエラーについて調べると全角スペースやコロンのつけ忘れなどと書かれていますが、そのような文法ミスは見た感じありません。\n\nどうすればいいでしょうか?\n\nコード:\n\n```\n\n check = input(\"y/n\");\n if check == \"y\";\n print(num+nnuumm)\n else;\n \n```\n\nはじめてのstackoverflowでコード表示の仕方が分かりませんが許してください。\n\nエラーの行は\n\n```\n\n if check == \"y\";\n \n```\n\nです。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T16:13:54.870",
"favorite_count": 0,
"id": "91553",
"last_activity_date": "2022-10-11T16:29:24.313",
"last_edit_date": "2022-10-11T16:27:27.463",
"last_editor_user_id": "3060",
"owner_user_id": "54799",
"post_type": "question",
"score": 0,
"tags": [
"python"
],
"title": "ifで文法が合っているのにinvaind syntaxがでる",
"view_count": 108
} | [
{
"body": "`if` 文の最後は `;` (セミコロン) ではなく `:` (コロン) を記述します。(`else` も同様)\n\n**記述例:**\n\n```\n\n if 条件式:\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-11T16:29:24.313",
"id": "91554",
"last_activity_date": "2022-10-11T16:29:24.313",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3060",
"parent_id": "91553",
"post_type": "answer",
"score": 4
}
] | 91553 | null | 91554 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "### 前提\n\ntkinterを使って画像クリックするアプリを作成しております。\n\npythonのスクリプトpyinstallerのコマンドでexe化すると画像クリックできなくなり、 \n下記のエラーが表示されます。\n\nexe化する前に問題なくクリックできます。 \nまたpythonのライブラリOpenCVをインストールしております。 \nエラーの原因の解決方法分かりますでしょうか。\n\n### 実現したいこと\n\n下記のスクリーンpyinstallerを使ってexe化後、 \n画像クリック操作させたいです。\n\nアプリの操作 \n①画像取得>保存 \n②フォルダーで保存した画像を選択 \n③画像クリック\n\n### 発生している問題・エラーメッセージ\n\n```\n\n C:/Users/user1/Downloads/imageclick.PNG\n Exception in Tkinter callback\n Traceback (most recent call last):\n File \"tkinter\\__init__.py\", line 1884, in __call__\n File \"image_ver1.py\", line 31, in click_image\n File \"pyautogui\\__init__.py\", line 175, in wrapper\n File \"pyautogui\\__init__.py\", line 213, in locateOnScreen\n File \"pyscreeze\\__init__.py\", line 372, in locateOnScreen\n File \"pyscreeze\\__init__.py\", line 352, in locate\n File \"pyscreeze\\__init__.py\", line 252, in _locateAll_python\n NotImplementedError: The confidence keyword argument is only available if OpenCV is installed.\n \n```\n\n### pyinstallerをする時のコマンド\n\n```\n\n PS C:\\Users\\user1> pyinstaller \"C:\\Users\\user1\\Documents\\python\\image_ver1.py\" --onefile\n 167 INFO: PyInstaller: 4.5.1\n 167 INFO: Python: 3.9.1\n 167 INFO: Platform: Windows-10-10.0.18362-SP0\n 171 INFO: wrote C:\\Users\\user1\\image_ver1.spec\n 176 INFO: UPX is not available.\n 179 INFO: Extending PYTHONPATH with paths\n ['C:\\\\Users\\\\user1\\\\Documents\\\\python', 'C:\\\\Users\\\\user1']\n 523 INFO: checking Analysis\n 523 INFO: Building Analysis because Analysis-00.toc is non existent\n 524 INFO: Initializing module dependency graph...\n 529 INFO: Caching module graph hooks...\n 560 INFO: Analyzing base_library.zip ...\n 3026 INFO: Processing pre-find module path hook distutils from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks\\\\pre_find_module_path\\\\hook-distutils.py'.\n 3029 INFO: distutils: retargeting to non-venv dir 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib'\n 6740 INFO: Caching module dependency graph...\n 6936 INFO: running Analysis Analysis-00.toc\n 6951 INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies of final executable\n required by c:\\users\\user1\\appdata\\local\\programs\\python\\python39\\python.exe\n 7080 WARNING: lib not found: api-ms-win-core-path-l1-1-0.dll dependency of c:\\users\\user1\\appdata\\local\\programs\\python\\python39\\python39.dll\n 7496 INFO: Analyzing C:\\Users\\user1\\Documents\\python\\image_ver1.py\n 8495 INFO: Processing pre-find module path hook site from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks\\\\pre_find_module_path\\\\hook-site.py'.\n 8497 INFO: site: retargeting to fake-dir 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\fake-modules'\n 9901 INFO: Processing pre-safe import module hook setuptools.extern.six.moves from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks\\\\pre_safe_import_module\\\\hook-setuptools.extern.six.moves.py'.\n 14235 INFO: Processing module hooks...\n 14235 INFO: Loading module hook 'hook-cv2.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\_pyinstaller_hooks_contrib\\\\hooks\\\\stdhooks'...\n 14242 INFO: Loading module hook 'hook-pycparser.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\_pyinstaller_hooks_contrib\\\\hooks\\\\stdhooks'...\n 14245 INFO: Loading module hook 'hook-difflib.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14249 INFO: Loading module hook 'hook-distutils.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14252 INFO: Loading module hook 'hook-distutils.util.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14255 INFO: Loading module hook 'hook-encodings.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14370 INFO: Loading module hook 'hook-heapq.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14373 INFO: Loading module hook 'hook-lib2to3.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14442 INFO: Loading module hook 'hook-multiprocessing.util.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14446 INFO: Loading module hook 'hook-numpy.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14545 INFO: Import to be excluded not found: 'f2py'\n 14553 INFO: Loading module hook 'hook-numpy._pytesttester.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14556 INFO: Loading module hook 'hook-packaging.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14558 INFO: Loading module hook 'hook-pickle.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14562 INFO: Loading module hook 'hook-PIL.Image.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14930 INFO: Loading module hook 'hook-PIL.ImageFilter.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14933 INFO: Loading module hook 'hook-PIL.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14948 INFO: Loading module hook 'hook-PIL.SpiderImagePlugin.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 14951 INFO: Loading module hook 'hook-pkg_resources.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 15622 INFO: Processing pre-safe import module hook win32com from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\_pyinstaller_hooks_contrib\\\\hooks\\\\pre_safe_import_module\\\\hook-win32com.py'.\n 15721 WARNING: Hidden import \"pkg_resources.py2_warn\" not found!\n 15943 WARNING: Hidden import \"pkg_resources.markers\" not found!\n 15945 INFO: Loading module hook 'hook-setuptools.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n c:\\users\\user1\\appdata\\local\\programs\\python\\python39\\lib\\site-packages\\setuptools\\distutils_patch.py:25: UserWarning: Distutils was imported before Setuptools. This usage is discouraged and may exhibit undesirable behaviors or errors. Please use Setuptools' objects directly or at least import Setuptools first.\n warnings.warn(\n 16578 INFO: Loading module hook 'hook-sysconfig.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 16580 INFO: Loading module hook 'hook-win32ctypes.core.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 16847 INFO: Loading module hook 'hook-xml.dom.domreg.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 16849 INFO: Loading module hook 'hook-xml.etree.cElementTree.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 16851 INFO: Loading module hook 'hook-xml.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 16853 INFO: Loading module hook 'hook-_tkinter.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 17137 INFO: checking Tree\n 17137 INFO: Building Tree because Tree-00.toc is non existent\n 17138 INFO: Building Tree Tree-00.toc\n 17220 INFO: checking Tree\n 17220 INFO: Building Tree because Tree-01.toc is non existent\n 17220 INFO: Building Tree Tree-01.toc\n 17346 INFO: checking Tree\n 17346 INFO: Building Tree because Tree-02.toc is non existent\n 17346 INFO: Building Tree Tree-02.toc\n 17353 INFO: Loading module hook 'hook-setuptools.msvc.py' from 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks'...\n 17385 INFO: Looking for ctypes DLLs\n 17466 INFO: Analyzing run-time hooks ...\n 17469 INFO: Including run-time hook 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks\\\\rthooks\\\\pyi_rth_pkgutil.py'\n 17475 INFO: Including run-time hook 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks\\\\rthooks\\\\pyi_rth_multiprocessing.py'\n 17481 INFO: Including run-time hook 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks\\\\rthooks\\\\pyi_rth_inspect.py'\n 17485 INFO: Including run-time hook 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks\\\\rthooks\\\\pyi_rth_pkgres.py'\n 17492 INFO: Including run-time hook 'c:\\\\users\\\\user1\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\hooks\\\\rthooks\\\\pyi_rth__tkinter.py'\n 17502 INFO: Looking for dynamic libraries\n 18169 INFO: Looking for eggs\n 18169 INFO: Using Python library c:\\users\\user1\\appdata\\local\\programs\\python\\python39\\python39.dll\n 18170 INFO: Found binding redirects:\n []\n 18181 INFO: Warnings written to C:\\Users\\user1\\build\\image_ver1\\warn-image_ver1.txt\n 18249 INFO: Graph cross-reference written to C:\\Users\\user1\\build\\image_ver1\\xref-image_ver1.html\n 18305 INFO: checking PYZ\n 18305 INFO: Building PYZ because PYZ-00.toc is non existent\n 18305 INFO: Building PYZ (ZlibArchive) C:\\Users\\user1\\build\\image_ver1\\PYZ-00.pyz\n 19042 INFO: Building PYZ (ZlibArchive) C:\\Users\\user1\\build\\image_ver1\\PYZ-00.pyz completed successfully.\n 19066 INFO: checking PKG\n 19066 INFO: Building PKG because PKG-00.toc is non existent\n 19067 INFO: Building PKG (CArchive) PKG-00.pkg\n 29727 INFO: Building PKG (CArchive) PKG-00.pkg completed successfully.\n 29756 INFO: Bootloader c:\\users\\user1\\appdata\\local\\programs\\python\\python39\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit\\run.exe\n 29756 INFO: checking EXE\n 29757 INFO: Building EXE because EXE-00.toc is non existent\n 29757 INFO: Building EXE from EXE-00.toc\n 29803 INFO: Copying icons from ['c:\\\\users\\\\python\\\\appdata\\\\local\\\\programs\\\\python\\\\python39\\\\lib\\\\site-packages\\\\PyInstaller\\\\bootloader\\\\images\\\\icon-console.ico']\n 29807 INFO: Writing RT_GROUP_ICON 0 resource with 104 bytes\n 29807 INFO: Writing RT_ICON 1 resource with 3752 bytes\n 29807 INFO: Writing RT_ICON 2 resource with 2216 bytes\n 29808 INFO: Writing RT_ICON 3 resource with 1384 bytes\n 29808 INFO: Writing RT_ICON 4 resource with 37019 bytes\n 29808 INFO: Writing RT_ICON 5 resource with 9640 bytes\n 29808 INFO: Writing RT_ICON 6 resource with 4264 bytes\n 29808 INFO: Writing RT_ICON 7 resource with 1128 bytes\n 29832 INFO: Updating manifest in C:\\Users\\user1\\build\\image_ver1\\run.exe.3u8ql688\n 29834 INFO: Updating resource type 24 name 1 language 0\n 29858 INFO: Appending archive to EXE C:\\Users\\user1\\dist\\image_ver1.exe\n 34569 INFO: Building EXE from EXE-00.toc completed successfully.\n PS C:\\Users\\user1>\n \n```\n\n### 該当のソースコード\n\n```\n\n import tkinter as tk\n from PIL import Image, ImageTk\n import pyautogui\n import time\n import subprocess\n import os\n from tkinter import filedialog\n import re\n \n #SnippingTool起動、ボタンがクリックされたら実行\n def image(event):\n \n p = subprocess.Popen([r\"C:\\Windows\\System32\\SnippingTool.exe\"])\n \n selected_file = \"\"\n #ファイル参照、ボタンがクリックされたら実行\n def file_select():\n global selected_file\n idir = 'C:\\\\python_test' #初期フォルダ\n filetype = [(\"すべて\",\"*\"),(\"テキスト\",\"*.txt\"), (\"音楽\",\"*.mp3\")] #拡張子の選択\n file_path = tk.filedialog.askopenfilename(filetypes = filetype, initialdir = idir)\n selected_file = file_path\n input_box.insert(tk.END, file_path) #結果を表示\n print(selected_file)\n \n #画像クリック、ボタンがクリックされたら実行\n def click_image():\n global selected_file\n \n #ファイル参照の関数からselected_fileを代入、このPCアイコンの座標を取得\n position=pyautogui.locateOnScreen(selected_file, confidence=0.9)\n #position=pyautogui.locateOnScreen(\"C://Users///image//excel.PNG\", confidence=0.9)\n #maxwindowPCアイコンをクリック\n pyautogui.doubleClick(position)\n \n # 画面作成\n window = tk.Tk()\n window.geometry(\"300x300\")\n window.title(\"ボタンを表示する\")\n \n #画像取得 ボタン作成\n btn1 = tk.Button(window, text=\"①画像取得\")\n \n # ボタン表示\n btn1.place(x=15, y=15, width=150, height=40)\n \n # ボタンに関数をbind\n btn1.bind(\"<Button-1>\", image)\n \n #入力欄の作成\n input_box = tk.Entry(width=40)\n input_box.place(x=10, y=100)\n \n #結果ラベルの作成\n input_label = tk.Label(text=\"②画像ファイル選択\")\n input_label.place(x=10, y=70)\n \n #参照ボタンの作成\n button = tk.Button(text=\"参照\",command=file_select)\n button.place(x=10, y=130)\n \n #画像クリックボタンの作成\n button = tk.Button(text=\"③画像クリック\",command=click_image)\n button.place(x=15, y=175, width=150, height=40)\n \n # 画面表示(常駐)\n window.mainloop()\n \n \n```\n\nお手数ですが、よろしくお願い致します。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T03:57:37.223",
"favorite_count": 0,
"id": "91558",
"last_activity_date": "2022-10-12T05:55:06.657",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "18859",
"post_type": "question",
"score": 0,
"tags": [
"python",
"python3",
"tkinter",
"pyinstaller"
],
"title": "pyinstallerを使うとNotImplementedErrorOSError:OpenCVについて",
"view_count": 382
} | [
{
"body": "pyinstallerをアップグレードしましたら、 \n解決できました。\n\n`pip install --upgrade pyinstaller`\n\n[Using OpenCV with\nPyInstaller](https://stackoverflow.com/questions/55175419/using-opencv-with-\npyinstaller)",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T05:55:06.657",
"id": "91559",
"last_activity_date": "2022-10-12T05:55:06.657",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "18859",
"parent_id": "91558",
"post_type": "answer",
"score": 0
}
] | 91558 | null | 91559 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "```\n\n import pandas as pd\n import numpy as np\n df1 = pd.DataFrame({'生物':['しろくま','ねこ','うさぎ','ラッコ','モモンガ','シーサー','オデ','鎧金','鎧銀'],\n 'カテゴリ':['戦闘員','戦闘員','戦闘員','戦闘員','戦闘員','戦闘員','外部有識者','管理者','管理者'],\n 'HP':[2,50,100,600,60,72,1000,1000,1000]})\n df1\n \n```\n\n度々失礼します。 \npandas.dataFrameにおいて、集計した際の列名について質問させてください。 \n上記のような df1 に対して、以下のように集計を行った場合の df2 の列名ですが、\n\n```\n\n df2 = df1[['カテゴリ','HP']].groupby('カテゴリ').mean()\n df2.dtypes\n \n```\n\ndf2.dtypesを実行すると、結果にカテゴリ列が表示されず、HP列のみが表示されているのはなぜでしょうか。 \ndf2の結果を使って、グラフ表示を行いたいのですが、x軸に設定しようと考えているカテゴリ列を参照すると、エラーになってしまいます。\n\n基本的な内容の質問で大変恐縮ですが、ご教示いただけますと幸いです。 \nどうぞよろしくお願いいたします。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T06:11:20.317",
"favorite_count": 0,
"id": "91560",
"last_activity_date": "2023-06-04T00:04:05.460",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54631",
"post_type": "question",
"score": 0,
"tags": [
"python",
"pandas"
],
"title": "pandas groupby で集計を行った列の列名",
"view_count": 1227
} | [
{
"body": "`.groupby('カテゴリ')` によって指定列がインデックスになったためです。\n\n```\n\n df3 = df2.reset_index() # インデックスを外した df2\n \n df2.reset_index().dtypes # dtypes\n \n```\n\nまた, plotするなら `df2.index` の値を使うと可能\n\n* * *\n\n#### (追記) 検証\n\n```\n\n In [2]: df2 = df1[['カテゴリ','HP']].groupby('カテゴリ').mean()\n \n In [3]: df2.dtypes\n Out[3]:\n HP float64\n dtype: object\n \n In [4]: df2.columns\n Out[4]: Index(['HP'], dtype='object')\n \n In [5]: df2.index\n Out[5]: Index(['外部有識者', '戦闘員', '管理者'], dtype='object', name='カテゴリ')\n \n In [6]: df2.reset_index().dtypes\n Out[6]:\n カテゴリ object\n HP float64\n dtype: object\n \n In [7]: df3 = df2.reset_index()\n \n In [8]: df3.columns\n Out[8]: Index(['カテゴリ', 'HP'], dtype='object')\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T07:00:29.653",
"id": "91561",
"last_activity_date": "2023-03-07T07:15:19.670",
"last_edit_date": "2023-03-07T07:15:19.670",
"last_editor_user_id": "43025",
"owner_user_id": "43025",
"parent_id": "91560",
"post_type": "answer",
"score": 1
}
] | 91560 | null | 91561 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "pytorch を用いて作成したモデルから計算された損失を \n伝搬する際に、以下のコードを実行すると \n以下のエラーメッセージが表示されて困っています。\n\n```\n\n loss.backward()\n \n```\n\n順伝搬の計算は問題なく実行できます。\n\n```\n\n terminate called after throwing an instance of 'std::runtime_error'\n what(): tensorflow/compiler/xla/xla_client/computation_client.cc:280 : Missing XLA configuration\n Aborted\n \n```\n\n * pytorch(1.12.0+cu102)\n * torchvision(0.13.0+cu102) <\\- ターゲットのモデルは torchvision.models からインストールできる CNN モデルを含んでいます\n * google-compute-engine\n * GPU(NVIDIA Tesla T4 x 1, 11.6) <\\- GPU(11.2)がインストールされている環境では動いていたコードなのですが、現在の環境では動かないです・・・ / 現在の環境では、GPU を利用せず、CPU で動かしても同じエラーが出ます\n * TPU はインストールされていません(TPU を使いたいわけではなく、GPUで計算させたいです)\n\nローカルでは動いているコードで、上述した通り他の GPU 環境でも動いていました。環境がアップデートされたタイミングで動かなくなりました。\n\n助けてください・・・",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T08:05:45.807",
"favorite_count": 0,
"id": "91562",
"last_activity_date": "2022-10-13T06:17:12.380",
"last_edit_date": "2022-10-12T21:30:42.123",
"last_editor_user_id": "54809",
"owner_user_id": "54809",
"post_type": "question",
"score": 0,
"tags": [
"python",
"pytorch",
"gpu"
],
"title": "loss.backward() -> Missing XLA configuration",
"view_count": 86
} | [
{
"body": "以下のコマンドで解決しました。\n\n```\n\n $ pip uninstall torch_xla\n \n```\n\npytorch-ignite と torch_xla の問題であったようです。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-13T06:17:12.380",
"id": "91577",
"last_activity_date": "2022-10-13T06:17:12.380",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54809",
"parent_id": "91562",
"post_type": "answer",
"score": 0
}
] | 91562 | null | 91577 |
{
"accepted_answer_id": "91565",
"answer_count": 1,
"body": "現在、任意のサイトのディレクトリトラバーサルの脆弱性をチェックするシェルスクリプトを書いています。しかしこのシェルスクリプトには一つ問題があり、`出力結果のURLが1つの文字列と合体して出力`されてしまいます。\n\nまず、コードと出力結果を貼っておきます。\n\n```\n\n #!/bin/bash\n \n sleeptime=6 \n \n function test_run() \n {\n echo \"[+] Starting Test...\"\n result=\"\";\n for start in $(seq 1 35); \n do\n query=$(echo; curl -sS \"https://serx.ml/search?q=$site%20$1&categories=general&time_range=None&safesearch=0&pageno=$start\")\n checkdata=$(echo \"$query\" | grep -Eo \"(http|https)://[a-zA-Z0-9./?=_~-]*$1/[a-zA-Z0-9./?=_~-]*\")\n if [ -z \"$checkdata\" ]\n then\n sleep $sleeptime; \n break; \n else\n result+=$checkdata;\n sleep $sleeptime; \n fi\n done\n \n \n if [ -z \"$result\" ] \n then\n echo \"[-] No results\"\n else\n IFS=$'\\n' sorted=($(sort -u <<<\"${result[@]}\"| tr \" \" \"\\n\"));\n echo -e \" \" \n for each in \"${sorted[@]}\"; do echo \" [+] $each\"; done\n fi\n }\n test_run xxx.yyy.co.jp\n \n```\n\n(出力結果)\n\n```\n\n [+] Starting Test...\n \n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/?ND\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/?SA\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/Data/\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/Date/?ND\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/Digest/\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/Digest/Perl/\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/HTML/?MD\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/Mail/?DA\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/Mail/?DAhttp://xxx.yyy.co.jp/ilchianti_kawagoe/mod/Digest/\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/PDFJ/\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/PDFJ/?MA\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/PDFJ/?MD\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/PDFJ/?ND\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/PDFJ/?NDhttp://xxx.yyy.co.jp/ilchianti_kawagoe/mod/PDFJ/\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/PDFJ/?SA\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/SQL/\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/SQL/Dialects/?MD\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/SQL/Dialects/?MDhttp://xxx.yyy.co.jp/ilchianti_kawagoe/mod/SQL/Dialects/?NA\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/SQL/Dialects/?NA\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/SQL/Dialects/?SD\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/SQL/Statement/\n [+] http://xxx.yyy.co.jp/ilchianti_kawagoe/mod/XML/\n [+] http://xxx.yyy.co.jp/mod/?DA\n [+] http://xxx.yyy.co.jp/mod/?MD\n [+] http://xxx.yyy.co.jp/mod/?SA\n [+] http://xxx.yyy.co.jp/mod/?SD\n [+] http://xxx.yyy.co.jp/mod/Data/\n [+] http://xxx.yyy.co.jp/mod/Date/\n [+] http://xxx.yyy.co.jp/mod/Date/?SA\n [+] http://xxx.yyy.co.jp/mod/Digest/\n [+] http://xxx.yyy.co.jp/mod/Digest/Perl/\n [+] http://xxx.yyy.co.jp/mod/Digest/Perl/http://www.xxx.yyy.co.jp/wp-content/uploads/2019/10/?SA\n [+] http://xxx.yyy.co.jp/mod/HTML/\n [+] http://xxx.yyy.co.jp/mod/Mail/\n [+] http://xxx.yyy.co.jp/mod/PDFJ/\n [+] http://xxx.yyy.co.jp/mod/PDFJ/?MA\n [+] http://xxx.yyy.co.jp/mod/PDFJ/?MD\n [+] http://xxx.yyy.co.jp/mod/PDFJ/?SA\n [+] http://xxx.yyy.co.jp/mod/PDFJ/?SD\n [+] http://xxx.yyy.co.jp/mod/SQL/?MA\n [+] http://xxx.yyy.co.jp/mod/SQL/Dialects/\n [+] http://xxx.yyy.co.jp/mod/SQL/Dialects/?MD\n [+] http://xxx.yyy.co.jp/mod/SQL/Statement/\n [+] http://xxx.yyy.co.jp/mod/XML/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2013/04/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2015/07/?MD\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2015/09/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2015/09/?MA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2015/09/?SA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2015/09/?SAhttp://www.xxx.yyy.co.jp/wp-content/uploads/2015/07/?MD\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2015/09/?SD\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2015/?ND\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/02/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/02/?MA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/05/?DD\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/06/?MA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/07/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/07/http://www.xxx.yyy.co.jp/wp-content/uploads/2018/11/?ND\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/09/?SA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/09/?SD\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/09/?SDhttp://www.xxx.yyy.co.jp/wp-content/uploads/2016/09/?SA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/12/?SA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/12/?SD\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2016/?MA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2017/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2017/11/?NA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2018/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2018/01/?SA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2018/02/?DA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2018/03/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2018/08/?SA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2018/11/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2018/11/?ND\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2019/02/?ND\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2019/04/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2019/10/?MA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2019/10/?SA\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2019/?MD\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2020/06/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2020/06/?MD\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2020/06/?MDhttp://xxx.yyy.co.jp/mod/XML/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2021/03/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2022/02/\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/2022/02/?MD\n [+] http://www.xxx.yyy.co.jp/wp-content/uploads/?ND\n \n \n```\n\nこのように部分的に1つの文字列に2つURLがドッキングする形で出力されてしまいます。この問題をなんとか正規表現で解決したいのですが、現在に至るまでうまく解決できていません。\n\n現在わかっていることは、`result+=$checkdata;`という複合代入を行うとURLが重なる現象が起こるようです。しかし解決策はわかっていない状態です。\n\nこの場合どのような方法を使えば出力結果をソートできるのでしょうか? \nご指摘は常に返信でお返しいたします。",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T09:02:56.963",
"favorite_count": 0,
"id": "91563",
"last_activity_date": "2022-10-12T13:02:28.683",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "51473",
"post_type": "question",
"score": 1,
"tags": [
"linux",
"正規表現",
"bash"
],
"title": "接着した2つのURLを正規表現で分離し、ソートしたい",
"view_count": 84
} | [
{
"body": "そのまま試せるようなコードでは無いので確認していませんが…… 恐らく下記が原因でしょう。\n\n### コマンド置換での末尾改行の削除\n\nこれは `bash` に限りませんが、コマンド置換では末尾の改行文字が削除されます。\n\n> `$(command)` \n> ... \n> bash は command を実行し、 command の標準出力でコマンド置換の部分を置き換えます。 この際、\n> **末尾の改行文字は削除されます** 。 \n> —— [Man page of\n> BASH](https://linuxjm.osdn.jp/html/GNU_bash/man1/bash.1.html)\n\nよって、変数に `+=` する前か後に改行も足せばよいはずです。\n\n(ただ、そもそもの話になりますが、こうやって変数に蓄積していくのでは無く、`curl | grep | sort`\nとパイプで繋げていく方が簡潔になると思います)",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T12:53:00.990",
"id": "91565",
"last_activity_date": "2022-10-12T13:02:28.683",
"last_edit_date": "2022-10-12T13:02:28.683",
"last_editor_user_id": "3054",
"owner_user_id": "3054",
"parent_id": "91563",
"post_type": "answer",
"score": 0
}
] | 91563 | 91565 | 91565 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "Google\nFormで取得したデータをBigQueryに蓄積したく、以下の記事を参考にスプレッドシートとBigQueryのテーブルの同期を試みていますがうまくいきません。\n\n<https://techblog.gmo-ap.jp/2022/08/26/spreadsheet_bigquery/>\n\n上手くいかない点 \n記事では、name、price、numberの3データを扱っています。 \n私の扱うデータは上記よりカラム数が多いです。\n\n```\n\n timestamp(TIMESTAMP), \n email(STRING), \n name(STRING), \n score(INTEGER), \n comment(STRING)\n \n```\n\n書いてみたコード\n\n```\n\n var FOLDERID = \"Googleドライブに作成したフォルダ名\"\n function save2Drive(filename, csv) {\n var destfolder = DriveApp.getFolderById(FOLDERID);\n return destfolder.createFile(filename, csv)\n }\n \n function importCSVtoBigQuery(table, file) {\n projectId = table.tableReference.projectId\n datasetId = table.tableReference.datasetId\n tableId = table.tableReference.tableId\n \n try {\n BigQuery.Tables.remove(projectId,datasetId, tableId)\n } catch (e) {\n Logger.log(e.toString());\n }\n BigQuery.Tables.insert(table, projectId, datasetId);\n data = file.getBlob().setContentType('application/octet-stream');\n var job = {\n configuration: {\n load: {\n destinationTable: {\n projectId: projectId,\n datasetId: datasetId,\n tableId: tableId\n },\n skipLeadingRows: 1\n }\n }\n };\n job = BigQuery.Jobs.insert(job, projectId, data);\n Logger.log('Job status for %s https://bigquery.cloud.google.com/jobs/%s', file.getName(), projectId);\n \n }\n \n SPREADSHEET_URL = \"スプレッドシートのURL\"\n function spreadsheet2Bigquery() {\n var sheets = SpreadsheetApp.openByUrl(SPREADSHEET_URL).getSheets();\n //BigQuery テーブルの項目\n var data_csv = \"timestamp,email,name,score,comment\\r\\n\";\n if (sheets.length >= 1) {\n for (var i = 0; i < sheets.length; i++) {\n if (!sheets[i].isSheetHidden()) {\n var range = sheets[i].getDataRange();\n var values = range.getValues();\n for (var j = 1; j < values.length; j++) {\n var timestamp = values[j][0].toString().trim()\n var email = values[j][1].toString().trim()\n var name = values[j][2].toString().trim()\n var score = values[j][3].toString().trim()\n var comment = values[j][4].toString().trim()\n data_csv += [timestamp, email, name, score, comment].join(\",\") + \"\\r\\n\";\n }\n }\n }\n }\n //BigQueryのprojectId、datasetId、table\n var projectId = 'プロジェクトID';\n var datasetId = 'データセットID';\n var table = {\n tableReference: {\n projectId: projectId,\n datasetId: datasetId,\n tableId: \"テーブルID\"\n },\n //BigQuery テーブルのshcema\n schema: {\n fields: [\n { name: 'timestamp', type: 'TIMESTAMP' },\n { name: 'email', type: 'STRING' },\n { name: 'name', type: 'STRING' },\n { name: 'score', type: 'INTEGER' },\n { name: 'comment', type: 'STRING' },\n ]\n }\n };\n var data_csv_file = save2Drive(\"csvのファイル名\", data_csv)\n importCSVtoBigQuery(table, data_csv_file)\n }\n \n```\n\nコードの意図がわからなく、エラーとなる箇所は下記の部分です。\n\n```\n\n if (sheets.length >= 1) {\n for (var i = 0; i < sheets.length; i++) {\n if (!sheets[i].isSheetHidden()) {\n var range = sheets[i].getDataRange();\n var values = range.getValues();\n for (var j = 1; j < values.length; j++) {\n var timestamp = values[j][0].toString().trim()\n var email = values[j][1].toString().trim()\n var name = values[j][2].toString().trim()\n var score = values[j][3].toString().trim()\n var comment = values[j][4].toString().trim()\n data_csv += [timestamp, email, name, score, comment].join(\",\") + \"\\r\\n\";\n }\n }\n }\n }\n \n```\n\nわからないポイント\n\n```\n\n var timestamp = values[j][0].toString().trim()\n \n```\n\nこのへんがわかりません。\n\nオリジナルではこう書かれています。\n\n```\n\n var data_csv = \"name,price,number\\r\\n\";\n if (sheets.length >= 1) {\n for (var i = 0; i < sheets.length; i++) {\n if (!sheets[i].isSheetHidden()) {\n var range = sheets[i].getDataRange();\n var values = range.getValues();\n for (var j = 1; j < values.length; j++) {\n var name = values[j][0].toString().trim()\n var price = values[j][1].toString().trim() + \"_\" + values[j][cate_index2].toString().trim()\n var number = values[j][2].toString().trim()\n data_csv += [name, price, number].join(\",\") + \"\\r\\n\";\n }\n }\n }\n }\n \n```\n\nオリジナルの記事を参考にしたのですが、カラムが増えた場合のことに言及されていないので、応用の仕方がわからないのです。 \n[j][0]は何を意味しているのか? \nオリジナルのコードにおいて、nameに続いて、price、numberを定義するに従って[1][2]と増えているのはなぜなのか。 \nこの法則に従って単純に増やしたカラム分[3][4]と増やしてもダメでした。同じ値のカラムが増殖したり、意図しない結果で出力される状態でした。\n\n試してみたコード\n\nググり方もわからなかったため、雑な質問になってしまい恐れ入ります。\n\nよろしくお願いします。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T13:19:32.510",
"favorite_count": 0,
"id": "91566",
"last_activity_date": "2022-10-12T16:55:54.753",
"last_edit_date": "2022-10-12T16:55:54.753",
"last_editor_user_id": "3060",
"owner_user_id": "41311",
"post_type": "question",
"score": 0,
"tags": [
"javascript",
"google-apps-script"
],
"title": "SpreadsheetのデータをBigQueryのテーブルに送信し、シートが更新されたらテーブルも自動で更新したい",
"view_count": 170
} | [] | 91566 | null | null |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "Arduinoで二酸化炭素センサーと色感センサーを用いてフルカラーLEDを点灯させたいです。 \n具体的には、色感センサーで読み取った色と同じ色にフルカラーLEDを光らせながら同時に、二酸化炭素センサーで読み取った二酸化炭素濃度の値が350〜999ppmのときフルカラーLEDを30個、二酸化炭素濃度の値が1000〜2499ppmのときにフルカラーLEDを20個、二酸化炭素濃度の値が2500ppm以上のときフルカラーLEDを10個点灯できるようにしたいです。\n\n * [二酸化炭素センサーのデータシート](https://akizukidenshi.com/download/ds/winsen/mg812.pdf)\n * [色感センサー](https://akizukidenshi.com/catalog/g/gM-08220/)\n * [フルカラーLEDのデータシート](https://akizukidenshi.com/download/ds/optosupply/OSTA5131A-RPGB.pdf)\n\n二酸化炭素センサーは以下のプログラムで動作確認できました。\n\n```\n\n #include \"CO2Sensor.h\"\n CO2Sensor co2Sensor(A0, 0.99, 100);\n void setup() {\n Serial.begin(9600);\n Serial.println(\"=== Initialized ===\");\n co2Sensor.calibrate();\n }\n void loop() {\n double val = co2Sensor.read();\n Serial.print(\"CO2 value: \");\n Serial.println(val);\n delay(1000);\n }\n \n```\n\n以下のプログラムでフルカラーLEDを30個赤色に点灯することができました。\n\n```\n\n /*\n * 74HC595\n * SER : 2\n * OE : GND\n * RCLK : 3\n * SRCLK : 4\n * SRCLR : 5\n */\n \n int const SER = 2;\n int const RCLK = 3;\n int const SRCLK = 4;\n int const SRCLR = 5;\n \n void setup() {\n \n pinMode(SER, OUTPUT);\n pinMode(RCLK, OUTPUT);\n pinMode(SRCLK, OUTPUT);\n pinMode(SRCLR, OUTPUT); \n \n digitalWrite(SRCLR, LOW);\n digitalWrite(SRCLR, HIGH);\n \n }\n boolean led[] = {0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1};\n \n void loop() {\n \n //for (int j = 0; j < 30; j++) {\n digitalWrite(RCLK, LOW);\n for(int j =0 ; j < 30 ; j++){\n digitalWrite(SER,1);\n digitalWrite(SRCLK,1);\n digitalWrite(SRCLK,0);\n }\n // shiftOut(SER, SRCLK, LSBFIRST, 1<<j);\n digitalWrite(RCLK, HIGH);\n delay(250);\n // }\n }\n \n```\n\n以下のプログラムで二酸化炭素センサーと色感センサー、フルカラーLED をそれぞれ 1\n個ずつ用いました。色感センサーにかざした色と同じ色にフルカラーLEDが点灯し、二酸化炭素センサーに息を吹きかけると二酸化炭素濃度の値が出てくることを確認しました。\n\n```\n\n #include<Wire.h>\n #include \"Adafruit_TCS34725.h\"\n #include \"CO2Sensor.h\"\n #define redpin 3\n #define greenpin 5\n #define bluepin 6\n #define commonAnode false\n byte gammatable[256];\n Adafruit_TCS34725 tcs = \n Adafruit_TCS34725(TCS34725_INTEGRATIONTIME_50MS,TCS34725_GAIN_4X);\n CO2Sensor co2Sensor(A0, 0.99, 100);\n void setup(){\n Serial.begin(9600);\n Serial.println(\"=== Initialized ===\");\n co2Sensor.calibrate();\n Serial.println(\"Color view Test!\");\n if (tcs.begin()){\n Serial.println(\"Found sensor\");\n }else {\n Serial.println(\"No TCS34725 found ... check your connections\");\n while(1); // halt!\n }\n pinMode(redpin, OUTPUT);\n pinMode(greenpin, OUTPUT);\n pinMode(bluepin, OUTPUT);\n for (int i=0; i<256; i++){\n float x = i;\n x /= 255;\n x = pow(x, 2.5);\n x *= 255;\n if (commonAnode) {\n gammatable[i] = 255 - x;\n } else {\n gammatable[i] = x;\n }\n }\n }\n void loop(){\n float val = co2Sensor.read();\n Serial.print(\"CO2 value: \");\n Serial.println(val);\n \n uint16_t clear,red,green,blue;\n tcs.setInterrupt(false); \n delay(60);\n tcs.getRawData(&red, &green, &blue, &clear);\n tcs.setInterrupt(true);\n Serial.print(\"C:\\t\"); Serial.print(clear);\n Serial.print(\"\\tR:\\t\"); Serial.print(red);\n Serial.print(\"\\tG:\\t\"); Serial.print(green);\n Serial.print(\"\\tB:\\t\"); Serial.print(blue);\n uint32_t sum = clear;\n float r,g,b;\n r = red; r /= sum;\n g = green; g /= sum;\n b = blue; b /= sum;\n r *= 256; g *= 256; b *= 256;\n Serial.print(\"\\t\");\n Serial.print((int)r, HEX); Serial.print((int)g, HEX);Serial.print((int)b, HEX);\n Serial.println();\n //Serial.print((int)r); Serial.print(\" \"); Serial.print((int)g); Serial.println((int)b );\n analogWrite(redpin, gammatable[(int)r]);\n analogWrite(greenpin, gammatable[(int)g]);\n analogWrite(bluepin, gammatable[(int)b]);\n }\n \n```\n\n二酸化炭素センサーと色感センサーを連動させ、フルカラーLEDを制御することができません。教えていただけると嬉しいです。よろしくお願い致します。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T15:38:46.617",
"favorite_count": 0,
"id": "91569",
"last_activity_date": "2022-10-17T02:44:35.003",
"last_edit_date": "2022-10-13T00:38:24.723",
"last_editor_user_id": "3060",
"owner_user_id": "54811",
"post_type": "question",
"score": 0,
"tags": [
"arduino"
],
"title": "Arduino でセンサーを2つ使ってLEDを制御したい",
"view_count": 194
} | [
{
"body": "```\n\n float val = co2Sensor.read();\n \n```\n\nとあり、`val`がCO2センサの値ですから、 \n`val`の値に応じてLEDの出力をどうするか決めればいいです。\n\n```\n\n float val = co2Sensor.read();\n if(val >= 2500){\n 10個つける\n }else if(val >= 1000){\n 20個つける\n }\n else{ // 質問文から350以下のときが不明だが、全灯と同じ扱いとしている\n 全部つける\n }\n \n \n \n LEDの色を制御する\n \n \n```\n\n* * *\n\nソフトウェアの話かと思っていましたが \nひょっとしたらハードウェアも含んだ質問だったかもしれないので一応解説します\n\n各LEDごとに色は共通で、個別に点灯/消灯は制御したいということですから、 \nフルカラーLEDのR,G,B端子はそれぞれ色ごとに全LED共通で接続します。 \nこれをPWM出力で制御するわけですが、LEDを30個もArduinoのピンから駆動したら可哀想なので、何かしらドライバをかましたほうがいいでしょう。\n\nコモン端子については全LEDそれぞれ独立にデジタル出力につなぎます。 \nArduinoではピン数が足らないでしょうからこちらはシフトレジスタかなにかにつなぎます。\n\n[](https://i.stack.imgur.com/wZtLZ.png) \n※ 抵抗などは省略しています",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-13T23:37:27.007",
"id": "91582",
"last_activity_date": "2022-10-17T02:44:35.003",
"last_edit_date": "2022-10-17T02:44:35.003",
"last_editor_user_id": "13127",
"owner_user_id": "13127",
"parent_id": "91569",
"post_type": "answer",
"score": 0
}
] | 91569 | null | 91582 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "npmで入れたグローバル汚染(グローバルスコープに変数や関数を定義)している外部のライブラリをWebpackでバンドルした場合、グローバル汚染の問題は解消されますか?(Webpackでいい感じにしてくれますか?) \nそうでない場合、外部ライブラリがグローバル汚染しているかどうか分かる方法などはありますか?",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T17:42:29.917",
"favorite_count": 0,
"id": "91570",
"last_activity_date": "2022-10-19T10:27:13.990",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "40137",
"post_type": "question",
"score": 0,
"tags": [
"javascript",
"webpack"
],
"title": "Webpackを使用すればグローバル汚染は起こりませんか?",
"view_count": 185
} | [
{
"body": "いいえ、webpackはグローバル汚染を完全に防いでくれません。これはwebpackの限界と言うより、ESモジュール、CommonJS、AMDの限界です。\n\nwebpackはCommonJSやAMDを用いてモジュール化されたJavaScript群を一つのJavaScriptとして結合するために作られました。ES2015からECMAScriptの仕様自体にモジュールの機能(ESモジュール)が加わり、最新のwebpackはESモジュールにも対応しました。現在において、ESモジュールを用いることが多いかと思いますので、以下、主にESモジュールを使用している場合について述べますが、CommonJS等でもほぼ同じかと思います。\n\nまず、グローバル変数が定義されたり上書きされる場合は次のパターンです。\n\n 1. トップレベルで`var`を用いた変数宣言や`function`を用いた関数宣言。\n 2. 非strictモードで、宣言されていない変数への代入。\n 3. グローバルオブジェクトのプロパティへの代入。\n\n上記のうち2については、既に推奨されない方法であり、また、ESモジュールでは必ずstrictモードになるため、無視していいかと思います。(非strictモードでないと動作しないコードは古すぎて保守されていないと考えられるため、そもそも使用しない方が良いでしょう)\n\nJavaScriptの黎明期、もっとも問題だったものの一つがが1によってグローバル変数がどんどん作られてしまうことです。ブラウザで複数のJavaScriptを読み込んだ場合、それぞれのトップレベルにあった変数や関数は勝手にグローバル変数になってしまうため、変数のコンフリクトなどが起きることがありました。これが所謂グローバル汚染というものです。グローバル変数化を防ぐためにIIFE等のテクニックが必要になるなど、JavaScriptをやけに難しいものにしていました。そのような状況で生まれたのがCommonJS等のモジュール化技術です。さらに、それらの技術を参考にESモジュールが仕様として策定され、普及していくことになりました。\n\nESモジュールなどのモジュール化技術が防ぐことは1のみです。その仕組みは単純で、トップレベルをトップレベルでは無いスコープとするということです。IIFEが自動的に入っているといっても良いでしょう。各変数はモジュール内に閉じ込められ、必要なものだけexportしてimportするようにしました。これによって、グローバル汚染の問題はほとんど無くなりました。\n\nこうやってほとんどの場合は解決できたのですが、3がいまだに残っています。JavaScritpのグローバル変数はグローバルオブジェクトのプロパティでもあるので、グローバルオブジェクトを直接変えられてしまえば、それを防ぎようはありません。webpackを使おうが、純粋なESモジュールとして作ろうが、`globalThis.x\n= 42;`みたいに書かれた場合は、結局グローバル変数`x`が全ての所に現れてしまいます。\n\nただ、これが絶対に悪いというわけではありません。例えば、Polyfillのような仕組みはグローバル変数を再定義出来なければ実現出来ないでしょう。HTMLでのonclick等で直接関数を呼び出したいというのもあるでしょうが、それもグローバル変数でなければ使えません。グローバル変数は必要最低限にすべきではありますが、できなくなればなったで、困ったことになってしまうので、仕方がない面があるのだと思います。ただ、(Polyfill等を除き)多数のグローバル変数を定義するようなライブラリは行儀が悪いと言うべきなので、使うできではないかと思います。\n\nなお、グローバル汚染されているかどうかですが、グローバルオブジェクトのプロパティを網羅的に調べるぐらいしか無いかと思います。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T10:27:13.990",
"id": "91680",
"last_activity_date": "2022-10-19T10:27:13.990",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "7347",
"parent_id": "91570",
"post_type": "answer",
"score": 3
}
] | 91570 | null | 91680 |
{
"accepted_answer_id": "91595",
"answer_count": 2,
"body": "HTMLとCSSを使ってサイトのコーディングの練習をしているのですが、クラス名の指定のルール、ネストの深さのルールをどう決めたらいいかわからないので質問させていただきました。\n\n何かどのエンジニアさんも共通のルールを持っているか様々なコードを見ましたが、共通項が見出せませんでした。\n\nルールを決められなければサイトのコーディングに余計な時間がかかってしまうので困っています。",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T21:53:41.767",
"favorite_count": 0,
"id": "91571",
"last_activity_date": "2022-10-23T12:57:23.570",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54812",
"post_type": "question",
"score": 0,
"tags": [
"html"
],
"title": "HTMLを書く上でのクラス名指定や、ネストの深さのルールがわからない",
"view_count": 163
} | [
{
"body": "クラス名の考え方ですが、はっきり言って開発者と後任のメンテナンスを行う人間が理解できるか否かが最も重要です。 \nたまにやたら短い名称とかありますが、省略文字などで行うと1か月後の自分が見返しても理解できないことがあります。\n\n以下はhtml系ではなく、一般的にC言語やpythonなどと呼ばれるような言語系で”関数名”や”変数名”を決定する際にこのようなワードを接続して表現することで表現の一致を目指したらどうか? \nという例文です。 \nこの単語がわかりやすいなど選り好みが異なるとは思いますので参考程度になれば幸いです。 \n<https://qiita.com/KeithYokoma/items/2193cf79ba76563e3db6>\n\n自分が見てきた中でクラス名で最も長かったのは6単語接続の英語で20文字弱くらいだったかなと思います。 \n何はともあれ後から見返して何を示すクラス名ID名か理解できる名前を付けることを心掛けたほうが良いかなと思います。\n\nネストの深さに関しては実質無限と言えますが、まず表現したいサイトの理想の見た目について、絵として書き出してみてください。PowerPointなどでレイアウトしてもいいです。\n\nその時、最小の四角範囲(ボタンだったりコラムブロック)に対しては大体1~3ネストくらい存在します。 \nその最小ブロックを括るのに1ネスト、さらに上位のブロックに括って1ネスト・・・。 \nとなるのでサイトの中で表現したい要素が複雑になればなるほどネストも自動的に深くなってしまいます。\n\nネスト量からサイトの構築の是非を判断するのは無理だと思います。 \nなので余計な装飾効果のない括りを削除するなど(例えば意味もなくdivが2重で括られているなど)することで最小限度に努める事は大事ですが、CSS装飾の際に「なぜかこの括りでは表現が正常に出力されないから1段階ネストする」など例外はそこそこの頻度でありますので気に病まない方が良いかなと思います。\n\n実際ネスト数だけでカウントすると自分が関わった実際の案件でMAX30弱の案件もありました。 \n※サイト規模がとっても大きい為\n\n追記: \nネストに関しては例えばヘッダー・フッター・メニューバー部分などで同一の構成要素を設置したりします。 \nサイト内でページが変わってもヘッダーフッターは変わらないなどありますね。\n\nこれが原因でメインコンテンツ部分のネスト初期値が+8とかよくある話です。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T08:41:29.090",
"id": "91595",
"last_activity_date": "2022-10-14T08:48:54.207",
"last_edit_date": "2022-10-14T08:48:54.207",
"last_editor_user_id": "51823",
"owner_user_id": "51823",
"parent_id": "91571",
"post_type": "answer",
"score": 0
},
{
"body": "## CSS のクラス名\n\nまず、HTML や CSS\nの仕様としてはクラス名をどのように付けなければならないという強い慣習はありません。つまり、質問者さんが試してみたい方法があれば、それを試してみて全く問題ありません。\n\nそのうえで、無秩序に名前をつけていると生産性が落ちたりリファクタリングがしづらくなったりするためプログラマーが別途ルールを定めて運用している場合があります。たとえばクラス名については\n[BEM](https://getbem.com/introduction/) や\n[FLOCSS](https://github.com/hiloki/flocss)\nなどのルールが知られています。これらには長所・短所があるので、利用するかどうかも含めてプロジェクトごとに方針が異なります。\n\nまた React などの宣言的なフレームワークの台頭に伴い、[CSS in JS](https://b.0218.jp/202202182358.html)\nというやり方も流行しています。[Emotion](https://emotion.sh/docs/introduction) や [styled-\ncomponents](https://styled-components.com/) が有名です。フレームワークにもよりますが、CSS in JS\nでは人間が CSS のクラス名を付けない場合があります。\n\n更に、何かしらのデザインフレームワーク、CSS フレームワークを使っている場合は、フレームワークの側でクラス名が決まっている場合があります。例として\n[Tailwind CSS](https://tailwindcss.com/) や\n[Bootstrap](https://getbootstrap.jp/)、[Chakra UI](https://chakra-\nui.com/)、[MUI](https://mui.com/) などがあります。\n\n## HTML や CSS のネスト\n\nこれはどのようにコーディングを行っているかによって、ネスト数を制限するかどうか、制限するにしてもどこまでにするか相当幅がある状態と思います。何か困ることがあれば困ってから考えるで良いのではないかなと個人的には思います。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-23T12:57:23.570",
"id": "91767",
"last_activity_date": "2022-10-23T12:57:23.570",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "19110",
"parent_id": "91571",
"post_type": "answer",
"score": 0
}
] | 91571 | 91595 | 91595 |
{
"accepted_answer_id": "91575",
"answer_count": 1,
"body": "Scheme言語を使って与えられたnまでの素数を出し、そのリストが昇順であるコードを書いています。(またcondとconsを使う必要があります)\n\n例)10を与えられたら、2,3,5,7をプリントする\n\n素数を確認するコードはたぶん機能すると思うのですが、昇順にするためのコードがうまくいきません。 \nどなたか何かいい案をお持ちでしたらシェアしていただけると幸いです。 \nよろしくお願いします。\n\n自分のコード\n\n```\n\n (define (prime n)\n (cond(\n (if (< n 2) )\n (if (= n 2)2)\n (else (= isPrime checkPrime(n,2)))\n (if(isPrime)(prime(- n 1))\n (else (prime(- n 1))))))\n \n (define (checkPrime n i))\n (cond(\n (if( = i n) #t)\n (if(= (modulo n i) 0)#f)\n (else (checkPrime(n,(+ n 1))))))\n \n```",
"comment_count": 3,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-12T22:57:55.640",
"favorite_count": 0,
"id": "91572",
"last_activity_date": "2022-10-13T05:06:20.570",
"last_edit_date": "2022-10-13T00:59:06.153",
"last_editor_user_id": "3060",
"owner_user_id": "54742",
"post_type": "question",
"score": 1,
"tags": [
"scheme"
],
"title": "n以下のすべての素数を含むリストを返す関数",
"view_count": 152
} | [
{
"body": "色々な方法がありますが素朴で効率が良い方法としては「エラトステネスの篩」が知られています。\n小さな値から順番に素数を探すのですからすでに見つかった素数で割れるかどうかを検査すればよいのです。 (最初にわかっている素数として 2 だけ与える。)\nまた、あらたに見つかった素数は `cons` で結果のリストに追加していきます。\n線形リストの頭に追加するのはコストが小さいのでこういった形で結果を蓄積するのは Scheme (を含む LISP 系言語) では一般的なイディオムです。\n\nしかしながらリストの頭に結果を追加していく方法だと見つかった逆の順番になるので最後に `reverse` でリストを逆転します。\n\n以上を踏まえてコードにすると以下のようになります。 (実際には割るのを試すのは `n` の平方根までで十分ですが手続きの分割のしやすさのため省略しています。\nまた、ここでは R5RS を前提としていますが Scheme\nの仕様には改定があって若干の非互換が存在するので想定する版によっては動かない可能性があります。)\n\n```\n\n (define (divide? n1 n2)\n (zero? (modulo n1 n2)))\n \n (define (divide-any? n ls)\n (do ((ls ls (cdr ls)))\n ((or (null? ls)\n (divide? n (car ls)))\n (not (eqv? '() ls)))))\n \n (define (primes-less-than n)\n (let loop ((result '(2))\n (i 3))\n (cond ((>= i n) (reverse result))\n (else (loop\n (if (divide-any? i result) result (cons i result))\n (+ i 2))))))\n \n ;; テストケース。 100 以下の素数を返す\n (write (primes-less-than 100))\n \n \n```",
"comment_count": 4,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-13T05:06:20.570",
"id": "91575",
"last_activity_date": "2022-10-13T05:06:20.570",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3364",
"parent_id": "91572",
"post_type": "answer",
"score": 2
}
] | 91572 | 91575 | 91575 |
{
"accepted_answer_id": "91574",
"answer_count": 1,
"body": "`rsync` コマンドでファイルをコピーする時、destのユーザを維持したままコピーするようなオプションはあるでしょうか? \n現状、パーミッションは維持してくれますが、オーナー・グループはrsyncコマンドの実行ユーザになってしまいます。 \n`--no-perm`, `--no-owner`, `--no-group` あたりのオプションがそれに該当すると思っていましたが・・\n\n```\n\n [root@server /]# ls -l /tmp/*/*\n /tmp/dest_test/dir:\n -rwxr-xr-x 1 hogeuser hogegrp 0 10月 13 09:49 file\n /tmp/src_test/dir:\n -rw-r--r-- 1 root root 7 10月 13 10:01 file\n \n *** rsync 実行\n [root@server /]# rsync -lrc --no-perms --no-owner --no-group /tmp/src_test/dir /tmp/dest_test\n [root@server /]# ls -l /tmp/*/*\n /tmp/dest_test/dir:\n -rwxr-xr-x 1 root root 7 10月 13 10:17 file ←★hogeuser:hogegrpのままにしたい\n /tmp/src_test/dir:\n -rw-r--r-- 1 root root 7 10月 13 10:01 file\n \n```\n\n※/tmp/src_test/dir/fileはroot:rootの予定ですが、hogeuser:hogegrpにして実行しても結果は変わりませんでした。\n\n以下、バージョン情報 \nrsync version 3.1.2 protocol version 31\n\n余談ですが、最終的にはAnsibleのsynchronizeモジュール(rsync)を使う予定で、 \ngitからチェックアウトした大量のファイルを権限周りを変えずにコピーしたいというのが本来の目的です。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-13T01:37:45.940",
"favorite_count": 0,
"id": "91573",
"last_activity_date": "2022-10-13T05:06:01.593",
"last_edit_date": "2022-10-13T02:39:37.810",
"last_editor_user_id": "3060",
"owner_user_id": "40690",
"post_type": "question",
"score": 0,
"tags": [
"linux",
"ansible",
"rsync"
],
"title": "rsyncコマンドでdest側のオーナー・グループを維持したまま上書きしたい",
"view_count": 286
} | [
{
"body": "`--inplace` オプションを使用してみてください。\n\n```\n\n # rsync -rlc --inplace SRC DST\n \n```\n\n参考: \n[rsync but keep destination ownership without setting to source ownership -\nServer Fault](https://serverfault.com/a/1042187/480984)",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-13T02:38:04.750",
"id": "91574",
"last_activity_date": "2022-10-13T05:06:01.593",
"last_edit_date": "2022-10-13T05:06:01.593",
"last_editor_user_id": "53097",
"owner_user_id": "3060",
"parent_id": "91573",
"post_type": "answer",
"score": 0
}
] | 91573 | 91574 | 91574 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "# 状況\n\nDriverHubというソフトウェアを使用し、ドライバーを更新後、PC起動時に以下のメッセージダイアログが出るようになった。\n\n```\n\n [システムのプロパティ]\n コンピューターの開始時にページングファイル構成に問題が発生したため、一時ページングファイルが作成されました。全ディスクドライブの総ページングファイルサイズが指定したサイズよりも大きくなっている可能性があります。\n \n```\n\nPCにOSを再インストール(出荷設定)をしても、ダイアログが表示されます。\n\nシステムのプロパティをOK通すと、パフォーマンスオプションダイアログが開かれ、仮想メモリの変更を行っても、再起動後には設定が反映されず、同じダイアログが表示されます。\n\n# 試したこと\n\n * 工場出荷設定によるOS再インストール\n\n * 以下のサイトに書かれていること。\n\n[PC起動時に、ページングファイルに関するエラーが出ます。](https://answers.microsoft.com/ja-\njp/windows/forum/all/pc%E3%81%AE%E8%B5%B7%E5%8B%95%E6%99%82%E3%81%AB/d6372e86-5074-48f9-833a-9833471f513b)\n\n * sfc /scannow\n * DISM /Online /Cleanup-image /Restorehealth\n * 不要一時ファイルの削除\n * !および?マークのあるデバイスマネージャでの削除\n\n# 知りたいこと\n\nこのダイアログ表示が出ないように修復したい。",
"comment_count": 3,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-13T08:17:52.093",
"favorite_count": 0,
"id": "91578",
"last_activity_date": "2022-10-14T23:33:56.833",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "32891",
"post_type": "question",
"score": 0,
"tags": [
"windows-10"
],
"title": "Widows10 ページングファイル設定の異常",
"view_count": 457
} | [
{
"body": "リカバリしてもエラーが出るってのは、ハードウエアのトラブルです。 \nまずは、HDD/SSDを交換してみよう\n\n#それでもダメなら、メモリ異常あるいはPC本体の異常",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T23:33:56.833",
"id": "91607",
"last_activity_date": "2022-10-14T23:33:56.833",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "27481",
"parent_id": "91578",
"post_type": "answer",
"score": -1
}
] | 91578 | null | 91607 |
{
"accepted_answer_id": null,
"answer_count": 2,
"body": "UDPのソケット通信をC++で実装しています。\n\n受信バッファサイズの設定方法がわかりません。どの程度のバッファを送信したかを確認するツールなどはありますでしょうか。\n\n作る際に参考にしたページのコードでは2048bitに設定しています。\n\n[UDP / IP でパケットの送受信を行う](https://hensa40.cutegirl.jp/archives/780)\n\n環境 \nUbuntu 20.04 LTS",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T01:05:46.427",
"favorite_count": 0,
"id": "91583",
"last_activity_date": "2022-10-18T09:36:12.187",
"last_edit_date": "2022-10-14T02:55:59.063",
"last_editor_user_id": "3060",
"owner_user_id": "54466",
"post_type": "question",
"score": 0,
"tags": [
"socket",
"udp"
],
"title": "ソケット通信のバッファサイズについて",
"view_count": 1695
} | [
{
"body": "短い答え \nバッファサイズは 2048 バイトでよいです\n\n長い答え \nEthernet 上での UDP パケットの最大サイズは MTU で決めてよいです。 MTU の最大値は 1500 byte ないし PPPoE\n等が入ると小さくなって 1492 だったり 1454 だったりします。なので「1回で転送できる最大バイト数」は 1454 としておくのが無難です。\n\nバッファサイズは 1454 より大きい値であればいいので、いくつでもいいです。極端な話、1ギガバイトのバッファを用意して 1454\nバイトしか使わないというのもアリです。無意味ですが。あとは CPU の L1/L2/L3\nキャッシュの境界にうまく載るように(コンパイラや実行環境が載せてくれることを期待して)2のべき乗サイズにしておくのが無難で、となると 1454\n以上の2のべきは 2048 だからこれを採用しておけば十分です。\n\nローカルイントラネットで全機器がジャンボフレーム対応なら MTU\nを大きくできますが、では具体的にいくつにするとよいかは機器によって違うので最適値は現場によって異なります。いちいち調査してられないので、ソフト作成側はそんなことは気にせず\nMTU=1454 バイトを採用しておけば十分。\n\nUDP を Ethernet 上で実装するなら UDP\nは成功するか失敗するかしかありえないので「どの程度のバッファを送信したか」なんてものは意味がありません。受信側から見て、転送が成功するか失敗するかしかないです。成功時は\n`sendto()` で送ったバイト数が正確に得られ、失敗時は何も得られません(成功か失敗かすら不明)",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T02:34:31.580",
"id": "91586",
"last_activity_date": "2022-10-14T02:34:31.580",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "8589",
"parent_id": "91583",
"post_type": "answer",
"score": 2
},
{
"body": "質問が曖昧なため, 解釈によって捉え方が違ってきそう \n可能なら, 状況を詳しく記したほうがよいでしょう\n\n* * *\n\n#### メッセージ長を調べる方法\n\n最大メッセージサイズ(UDPのパケットサイズ) は設計段階で(本来は) 決めることです\n\n送信側プログラムの構造(詳細)が不明などの場合, 送信内容の確認には\n\n * tcpdump や Wireshark, eBPF などのツールで確認することが可能\n * ユーザーアプリでもとりあえず可能 ( **Ubuntu** 20.04 LTS での例) \n 1. [recv, recvfrom, recvmsg](https://manpages.ubuntu.com/manpages/focal/ja/man2/recv.2.html) のフラグ: `MSG_PEEK`, `MSG_TRUNC` を指定することでパケットの長さがわかる\n 2. バッファーが足りなければ拡張\n 3. (`MSG_PEEK`無しで) 実際の読み込み\n\n* * *\n\n#### 受信バッファーサイズ設計\n\n受信バッファーサイズの設計としては, 他の解にも出てる通り\n\n * ハードウェアおよびネットワークの現実に最大限マッチするようにサイズ値は比較的小さい 2の累乗\n * 送信側を考慮できるなら, MTU - 30バイト前後(各種ヘッダー長) までのサイズで送るとよい\n\nまた, 送信の際 Ubuntu含む最近の OSでは, MTU超えると (そのままでは)送信できない場合もあるので注意\n\n参考: [udp - IPv4 の\nユーザーデータグラムプロトコル](https://manpages.ubuntu.com/manpages/focal/ja/man7/udp.7.html)\n\n> デフォルトでは、Linux の UDP は Path MTU Discovery を行う。 つまり、カーネルは特定の宛先 IP アドレスの MTU\n> (Maximum Transmission Unit; 最大転送単位) を記録し、UDP パケットの書き込みが MTU を超えた場合\n> `EMSGSIZE` を返す。 `EMSGSIZE` を返された場合、アプリケーションはパケットサイズを小さくすべきである。 ソケットオプション\n> `IP_MTU_DISCOVER` または`/proc/sys/net/ipv4/ip_no_pmtu_disc` ファイルを使って Path MTU\n> Discovery を無効にすることもできる (詳細は\n> [ip](https://manpages.ubuntu.com/manpages/jammy/ja/man7/ip.7.html)(7) を参照)。\n> Path MTU Discovery を無効にした場合は、パケットサイズが インターフェースの MTU よりも大きいと UDP はそのパケットを\n> フラグメント化して送出する。 しかしながら、性能と信頼性の理由から Path MTU Discovery を 無効にするのは推奨できない。\n\n* * *\n\n### 追記\n\n質問にある「参考にしたページのコード」について\n\nあまり参考にすべきプログラムに見えないです\n\n * `recvfrom()` の引数 `from_addr`, `sin_size` の初期化が行われていない (`sin_size` は入出力両用)\n * それなのに受信バッファーは `memset()` してる (必要ない)\n\nAPIドキュメント参考に, 正しい使い方してるサイトを参考にしたほうがよいでしょう \n(パッと検索してみると, NULL指定で無視してるところが多く 変数指定は見当たらなかったけど, どこかにあるはず)\n\n* * *\n\n### 追記2\n\nPythonでのバッファ確認スクリプト (たぶん Linuxのみ動作) \n(送信された・到着した バッファの確認ツール)\n\n```\n\n import logging\n logging.basicConfig(\n level=logging.DEBUG,\n format='{asctime},{msecs:05.1f} {levelname}: {message}',\n datefmt='%X', style='{',\n )\n echolog = logging.getLogger('udpecho')\n \n import socket\n import select\n \n MSG_PEEK = 0x02 # Linuxのヘッダーからもってきた値, 他では動かないかも\n MSG_TRUNC = 0x20 #\n \n def echo_server(sk, args={}):\n echolog.info(f'UDP echo {sk.getsockname()}')\n buffsize = args.get('buffsize', 4096)\n while True:\n # 必要なら select などで受信バッファー確認\n \n if args.get('peek', False):\n mesg, addr = sk.recvfrom(buffsize, MSG_PEEK|MSG_TRUNC)\n echolog.info(f'PEEK {addr}, len={len(mesg)}')\n mesg, addr = sk.recvfrom(buffsize)\n echolog.info(f'recvfrom {addr}, len={len(mesg)} {mesg=}')\n \n if args.get('echo', True):\n r = sk.sendto(mesg, addr)\n echolog.info(f'sendto {r=}')\n \n if __name__ == '__main__':\n sk = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)\n sk.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)\n sk.bind(('', 9999))\n \n try:\n echo_server(sk, {'select': True, 'peek': True, 'buffsize': 16})\n except KeyboardInterrupt:\n print('---')\n finally:\n sk.close()\n import sys\n sys.exit()\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T07:02:50.017",
"id": "91592",
"last_activity_date": "2022-10-18T09:36:12.187",
"last_edit_date": "2022-10-18T09:36:12.187",
"last_editor_user_id": "43025",
"owner_user_id": "43025",
"parent_id": "91583",
"post_type": "answer",
"score": 0
}
] | 91583 | null | 91586 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "以下のクラスをPropatyGridのオブジェクトとして用いて、 \nリストボックスにx1、x2、x3が選択可能な表示状態になります。\n\nこの選択肢(x1、x2、x3)を実行中に動的に表示変更する方法はありますでしょうか。 \n(例えば、y1、y2,y3の表示に変更する。)\n\n```\n\n public class Apx8816_EepromProperty\n {\n public enum SELECT_VALUE\n {\n x1 = 0,\n x2 = 1,\n x3 = 2\n }\n \n SELECT_VALUE _SelValue = 0;\n [Category(\" Parameter\")]\n [RefreshProperties(RefreshProperties.All)]\n [Description(\"Select Value.\")]\n public SELECT_VALUE SelSetValue\n {\n get { return _SelValue; }\n set { _SelValue = (SELECT_VALUE)value; }\n }\n }\n \n```",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T01:15:31.007",
"favorite_count": 0,
"id": "91584",
"last_activity_date": "2022-10-14T01:17:46.900",
"last_edit_date": "2022-10-14T01:17:46.900",
"last_editor_user_id": "54831",
"owner_user_id": "54831",
"post_type": "question",
"score": 0,
"tags": [
"c#"
],
"title": "プロパティグリッドのリスト選択肢(表示文字列)を変更する方法",
"view_count": 125
} | [] | 91584 | null | null |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "### 経緯\n\nAlma Linuxを動かしてサーバを構築している途中です。 \nAlma LinuxにVNCサーバを入れることで、リモートからGUI環境で作業したいと思っています。\n\n#### 知りたいこと\n\nVNCサーバーを入れる手順で手こずっており、 \nもし適切な手順をご存知のかたおられましたらご教示お願いします。\n\n### 現状\n\nVNCサーバーをインストールして、一時的に起動するまではいくのですが、すぐにinactive(dead)になってしまいます。\n\n参考資料を基にvncserverをインストール・設定\n\n起動手順\n\n```\n\n sudo systemctl start vncserver@:2\n sudo systemctl status vncserver@:2\n \n```\n\n起動時の実行結果\n\n```\n\n ● vncserver@:2.service - Remote desktop service (VNC)\n Loaded: loaded (/etc/systemd/system/vncserver@:2.service; enabled; vendor preset: disabled)\n Active: active (running) since Fri 2022-10-14 18:48:27 JST; 1s ago\n Process: 8388 ExecStartPre=/usr/libexec/vncsession-restore :2 (code=exited, status=0/SUCCESS)\n Main PID: 8408 (vncsession)\n Tasks: 0 (limit: 409535)\n Memory: 1.0M\n CGroup: /system.slice/system-vncserver.slice/vncserver@:2.service\n ? 8408 /usr/sbin/vncsession nemoto :2\n \n 10月 14 18:48:27 localhost.localdomain systemd[1]: Starting Remote desktop service (VNC)...\n 10月 14 18:48:27 localhost.localdomain systemd[1]: Started Remote desktop service (VNC).\n \n```\n\n`sudo systemctl status vncserver@:2` を再び入力すると下記の画面になってしまいます。\n\n```\n\n ● vncserver@:2.service - Remote desktop service (VNC)\n Loaded: loaded (/etc/systemd/system/vncserver@:2.service; enabled; vendor preset: disabled)\n Active: inactive (dead) since Fri 2022-10-14 18:45:55 JST; 1min 55s ago\n Process: 8281 ExecStart=/usr/libexec/vncsession-start :2 (code=exited, status=0/SUCCESS)\n Process: 8261 ExecStartPre=/usr/libexec/vncsession-restore :2 (code=exited, status=0/SUCCESS)\n Main PID: 8281 (code=exited, status=0/SUCCESS)\n \n 10月 14 18:45:48 localhost.localdomain systemd[1]: Starting Remote desktop service (VNC)...\n 10月 14 18:45:48 localhost.localdomain systemd[1]: Started Remote desktop service (VNC).\n 10月 14 18:45:55 localhost.localdomain systemd[1]: vncserver@:2.service: Succeeded.\n \n```\n\n`/etc/systemd/system/vncserver@:2.service`\nの設定ファイルで不備等があるのかと考えていますが、どのように変更したらいいか分かりませんでした。 \nよろしくお願いします。\n\n**設定ファイル**\n\n```\n\n [Unit]\n Description=Remote desktop service (VNC)\n After=syslog.target network.target\n \n [Service]\n Type=simple\n ExecStartPre=+/usr/libexec/vncsession-restore %i\n ExecStart=/usr/libexec/vncsession-start %i\n PIDFile=/run/vncsession-%i.pid\n SELinuxContext=system_u:system_r:vnc_session_t:s0\n \n [Install]\n WantedBy=multi-user.target\n \n \n```\n\n**VNC Server 起動時のログ**\n\n```\n\n Using desktop session gnome\n \n New 'localhost.localdomain:2 (nemoto)' desktop is localhost.localdomain:2\n \n Starting desktop session gnome\n \n \n Xvnc TigerVNC 1.12.0 - built Apr 18 2022 14:13:34\n Copyright (C) 1999-2021 TigerVNC Team and many others (see README.rst)\n See https://www.tigervnc.org for information on TigerVNC.\n Underlying X server release 12011000, The X.Org Foundation\n \n \n Fri Oct 14 21:30:19 2022\n vncext: VNC extension running!\n vncext: Listening for VNC connections on all interface(s), port 5902\n vncext: created VNC server for screen 0\n xinit: XFree86_VT property unexpectedly has 0 items instead of 1\n xinit: connection to X server lost\n ^M\n waiting for X server to shut down\n Fri Oct 14 21:30:24 2022\n ComparingUpdateTracker: 0 pixels in / 0 pixels out\n ComparingUpdateTracker: (1:-nan ratio)\n \n```\n\n**実行環境:** \ntigervnc server 1.12.0 \nAlmaLinux 8.4 (Electric Cheetah)\n\n**参考資料** \n[CentOS 7 で GNOME デスクトップ用の VNC リモート\nアクセスをインストールおよび設定する方法](https://arquidiamantina.org/ja/centos-7-%E3%81%A7-gnome-%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97%E7%94%A8%E3%81%AE-\nvnc-%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88-%E3%82%A2%E3%82%AF%E3%82%BB%E3%82%B9%E3%82%92%E3%82%A4/) \n[alma linuxにTigerVNCを入れて動かした](https://note.com/pien2021/n/nbdf9794e7d5e)",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T01:22:28.543",
"favorite_count": 0,
"id": "91585",
"last_activity_date": "2022-10-14T12:40:29.390",
"last_edit_date": "2022-10-14T12:40:29.390",
"last_editor_user_id": "54832",
"owner_user_id": "54832",
"post_type": "question",
"score": 1,
"tags": [
"linux",
"centos",
"systemd",
"vnc"
],
"title": "Alma Linux で TigerVNC をsystemd 経由のサービスとして起動したい",
"view_count": 685
} | [
{
"body": "`Type=simple` ではなく、`Type=forking` でいいはず。 \nその他、/etc/tigervnc/vncserver.users でディスプレイ番号(:2)とユーザーの紐付けが必要です。 \nVNC Server 起動時のログは、ユーザーの .vnc/ホスト名:2.log に出力されますので、そちらも確認ください。",
"comment_count": 8,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T12:06:03.360",
"id": "91601",
"last_activity_date": "2022-10-14T12:06:03.360",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "4603",
"parent_id": "91585",
"post_type": "answer",
"score": 1
}
] | 91585 | null | 91601 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "Firebase cliによって環境構築を行いました。 \nビルドされる前に落ち実行が停止されます。 \n新しいブロジェクトを作成して同じ環境にて実行しても同じエラーが発生しました。 \nfirebase_core: ^1.24.0\n\n**エラーメッセージ**\n\n```\n\n /C:/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core_platform_interface- \n 4.5.1/lib/src/pigeon/messages.pigeon.dart:242:7: Error: 'clathrow' isn't a type.\n clathrow PlatformException(\n ^^^^^^^^\n /C:/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core_platform_interface- \n 4.5.1/lib/src/pigeon/messages.pigeon.dart:242:16: Error: Expected ';' after this.\n clathrow PlatformException(\n ^^^^^^^^^^^^^^^^^\n /C:/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core_platform_interface- \n 4.5.1/lib/src/pigeon/messages.pigeon.dart:243:13: Error: Expected ')' before this.\n \n code: 'null-error',\n ^\n /C:/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core_platform_interface- \n 4.5.1/lib/src/pigeon/messages.pigeon.dart:243:9: Error: The getter 'code' isn't defined \n for the class 'FirebaseCoreHostApi'.\n - 'FirebaseCoreHostApi' is from \n 'package:firebase_core_platform_interface/src/pigeon/messages.pigeon.dart' \n ('/C:/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core_platform_interface- \n 4.5.1/lib/src/pigeon/messages.pigeon.dart').\n package:firebase_core_platform_interface/…/pigeon/messages.pigeon.dart:1\n Try correcting the name to the name of an existing getter, or defining a getter or field \n named 'code'.\n \n code: 'null-error',\n ^^^^\n /C:/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core_platform_interface- \n 4.5.1/lib/src/pigeon/messages.pigeon.dart:222:33: Error: A non-null value must be \n returned since the return type 'PigeonFirebaseOptions' doesn't allow null.\n - 'PigeonFirebaseOptions' is from \n 'package:firebase_core_platform_interface/src/pigeon/messages.pigeon.dart' \n ('/C:/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core_platform_interface- \n 4.5.1/lib/src/pigeon/messages.pigeon.dart').\n package:firebase_core_platform_interface/…/pigeon/messages.pigeon.dart:1\n Future<PigeonFirebaseOptions> optionsFromResource() async {\n ^\n 3\n \n FAILURE: Build failed with an exception.\n \n * Where:\n Script 'C:\\flutter\\packages\\flutter_tools\\gradle\\flutter.gradle' line: 1159\n \n * What went wrong:\n Execution failed for task ':app:compileFlutterBuildDebug'.\n > Process 'command 'C:\\flutter\\bin\\flutter.bat'' finished with non-zero exit value 1\n \n * Try:\n > Run with --stacktrace option to get the stack trace.\n > Run with --info or --debug option to get more log output.\n > Run with --scan to get full insights.\n \n * Get more help at https://help.gradle.org\n \n BUILD FAILED in 33s\n Exception: Gradle task assembleDebug failed with exit code 1\n Exited (sigterm)\n \n```\n\n**main.dart**\n\n```\n\n import 'package:firebase_core/firebase_core.dart';\n import 'package:flutter/material.dart';\n \n import 'firebase_options.dart';\n \n void main() async {\n WidgetsFlutterBinding.ensureInitialized();\n await Firebase.initializeApp(\n options: DefaultFirebaseOptions.currentPlatform,\n );\n runApp(const MyApp());\n }\n class MyApp extends StatelessWidget {\n const MyApp({super.key});\n \n @override\n Widget build(BuildContext context) {\n return MaterialApp(\n title: 'Flutter Demo',\n theme: ThemeData(\n primarySwatch: Colors.blue,\n ),\n home: const MyHomePage(title: 'Flutter Demo Home Page'),\n );\n }\n }\n \n class MyHomePage extends StatefulWidget {\n const MyHomePage({super.key, required this.title});\n \n final String title;\n \n @override\n State<MyHomePage> createState() => _MyHomePageState();\n }\n \n class _MyHomePageState extends State<MyHomePage> {\n int _counter = 0;\n \n void _incrementCounter() {\n setState(() {\n _counter++;\n });\n }\n \n @override\n Widget build(BuildContext context) {\n return Scaffold(\n appBar: AppBar(\n title: Text(widget.title),\n ),\n body: Center(\n child: Column(\n mainAxisAlignment: MainAxisAlignment.center,\n children: <Widget>[\n const Text(\n 'You have pushed the button this many times:',\n ),\n Text(\n '$_counter',\n style: Theme.of(context).textTheme.headline4,\n ),\n ],\n ),\n ),\n floatingActionButton: FloatingActionButton(\n onPressed: _incrementCounter,\n tooltip: 'Increment',\n child: const Icon(Icons.add),\n ),\n );\n }\n }\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T04:56:17.613",
"favorite_count": 0,
"id": "91589",
"last_activity_date": "2022-10-16T04:12:08.153",
"last_edit_date": "2022-10-16T04:12:08.153",
"last_editor_user_id": "3060",
"owner_user_id": "52762",
"post_type": "question",
"score": 0,
"tags": [
"firebase",
"flutter"
],
"title": "Flutter Firebase にて立ち上げ出来ずに落ちる",
"view_count": 188
} | [
{
"body": "根本原因は分かりませんが、Flutter自体を再インストールしたら問題なく実行できました。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T01:49:12.937",
"id": "91623",
"last_activity_date": "2022-10-16T01:49:12.937",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "52762",
"parent_id": "91589",
"post_type": "answer",
"score": 0
}
] | 91589 | null | 91623 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "eclipseで以下のエラーが表示されます。 \njdkやgradleの見直しが必要なのでしょうか。\n\n```\n\n FAILURE: Build failed with an exception.\n \n * What went wrong:\n Execution failed for task ':bootRun'.\n > Process 'command 'C:\\Program Files\\Java\\jdk-11.0.1\\bin\\java.exe'' finished with non-zero exit value 1\n \n * Try:\n Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.\n \n * Get more help at https://help.gradle.org\n \n BUILD FAILED in 1s\n 4 actionable tasks: 1 executed, 3 up-to-date\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T05:25:47.343",
"favorite_count": 0,
"id": "91590",
"last_activity_date": "2022-10-14T05:55:43.367",
"last_edit_date": "2022-10-14T05:55:43.367",
"last_editor_user_id": "3060",
"owner_user_id": "25636",
"post_type": "question",
"score": 0,
"tags": [
"java",
"eclipse",
"gradle"
],
"title": "eclipseでbuildエラーが発生する",
"view_count": 468
} | [] | 91590 | null | null |
{
"accepted_answer_id": null,
"answer_count": 3,
"body": "Amazon のような通販サイト、総合モールを作りたいです。 \n色々な会社の商品を扱う通販モールサイトを作りたいです。 \nAmazon はプログラミング言語は何を使って作られていますか?\n\nAmazon に使われてるようなソフトの開発などもしたいですが、何の言語から勉強したらいいか分かりません。 \nプログラミングは初心者であり、よろしくお願い致します。",
"comment_count": 4,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T06:12:34.967",
"favorite_count": 0,
"id": "91591",
"last_activity_date": "2022-10-14T14:04:54.077",
"last_edit_date": "2022-10-14T14:04:54.077",
"last_editor_user_id": "3054",
"owner_user_id": "54838",
"post_type": "question",
"score": 2,
"tags": [
"プログラミング言語"
],
"title": "Amazon のサイトはどの言語で作られていますか?",
"view_count": 617
} | [
{
"body": "chromeでの確認方法になりますが、適当なアマゾンのページを開いて右クリック。 \n「ページのソースを表示」するとhtml構文・Javascript構文が確認できます。\n\nこのことから最低限度html + css + javasriptは確定で含まれております。\n\n次に、F12キーを押して開発者モードを表示し、おそらく開発者モード上部にあるだろう「ソース」をクリックすると、フォルダ・ファイル形式でそのページで読み込んでいる外部ファイル群が表示されます。ファイルの末尾が.jpegなどのものは画像なので無視するとして、.jsファイルが含まれる事からも外部インポートのJavascriptファイルも使用していることがわかります。\n\nまた、一般的な話としてこのようなサイト構成の場合、phpを使用していると考えるのが妥当ですが、phpの記述に関しては原則、外部からソースコードの表示やダウンロードを行った場合において強制的に非表示になり存在が秘匿されます。これは個人情報のブロックを分解してページ内にちりばめたりする時にセキュリティ的に露呈してはいけない部分をphpで書くのが一般的なためです。\n\n以上のことから自力でガリガリ書く上では、少なくとも書式としてhtml + css + Javascript + phpの勉強は必要となるでしょう。\n\nまた、サイト自体を設計するだけであればこれらの勉強で済みますが、実際に個人情報などのデータを個別管理するような部分に関してはデータベース(DB)をどのように使うのか?\n\nや\n\n大量のトラフィック(ユーザがアクセスしてきた際の通信の量)をどのように捌くのかというネットワーク周り、サーバー設計周りと無尽蔵に派生していってしまいます。\n\n特にアマゾン・楽天・ヤフーなどの大手レベルになってくると大の大人が束になって年単位でこれらすべての仕様・要件を設計しながら開発していきます。\n\n初歩的な機能の開発→影響のある部分を後で修正→追加でできた機能を実装→影響のある部分を修正と個人で行いながらこの分量を捌くのは無理があります。\n\nまずはざっと簡単に、ページ構造の構築(html)・装飾(css)を行い、phpの類系で個人アカウントの設営にまつわる勉強・購入者アカウント/販売者アカウント/管理者アカウントの開設の勉強をして組込・商品を出品する構造や購入する構造・・・・etcと「ざっと簡単に」と簡易化しても数秒で思いつくだけでこれくらいの分量があります。\n\nさらにセキュリティ対策という地獄もございます。(漏洩したら…損★害★賠★償という)\n\n個人で作成するにはあまりにも膨れ上がりすぎているので十分な心の余裕を持って挑戦してください。\n\nまた、現在メルカリやミンネなどの販売サイトを開設したい場合、完成済みの基礎フレームに画像や色などのレイアウト修正のみを行う小規模な開発方法が出回ってます。 \nワードプレスなどで完成済みの基礎フレームをサイト規模と比較したら格安で販売していたりします。そちらで購入したものに肉付けするなどの改修を行う方法が安価となってきています。\n\n詳しくは「通販サイト作成」とかでネットで見つかると思います。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T08:24:01.910",
"id": "91593",
"last_activity_date": "2022-10-14T08:24:01.910",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "51823",
"parent_id": "91591",
"post_type": "answer",
"score": 0
},
{
"body": "Amazon は巨人です。現在出ている[求人情報](https://www.amazon.jobs/jp)をざっと見るだけでも、\n\n> C、C++、Scala、Java、Python、Ruby、Go、C#\n\nと多肢に渡っています。他にも使っている言語が有るのは確実です。基盤のアーキテクチャも尋常ならざる物で、AWS\nとして販売されています。プログラミング初心者が参考にするには厳しい相手かと思います。利用者として AWS を使うことで、ある意味 Amazon\nと同じ技術構成にはなるかもしれませんが。\n\n巨人の真似をするのでは無く、もうすこし気軽に始められる物を選ぶのが良いでしょう。\n\nWebサービスを作るにあたり、ライブラリやフレームワークが揃っていて、初心者向けの書籍などが期待できる言語としては、以下が有ります。(主観を排してリストアップしたつもりです。順序に意味は有りません)\n\n * Ruby\n * Python\n * JavaScript (Node.js)\n * PHP\n * Java",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T08:33:08.060",
"id": "91594",
"last_activity_date": "2022-10-14T08:33:08.060",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3054",
"parent_id": "91591",
"post_type": "answer",
"score": 5
},
{
"body": "[GitHub](https://github.com/amzn)で公開されているAmazon製プログラムでは、Python/Java/Swift/JavaScript/PHPなどが使われています。 \nまた[Hacker\nNews](https://news.ycombinator.com/item?id=19495225)によるとJava/C++/Python/Ruby/Go/Perl/Scala/Rustなどが使われているそうです。\n\nですが他の回答にもあるように、Amazonは多数のユーザーからの無数の商品への大量のアクセスを安定的に捌くために大規模なシステムの上になりなっているので、個人で真似するのには向きません。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T09:08:33.753",
"id": "91596",
"last_activity_date": "2022-10-14T09:08:33.753",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "241",
"parent_id": "91591",
"post_type": "answer",
"score": 1
}
] | 91591 | null | 91594 |
{
"accepted_answer_id": null,
"answer_count": 2,
"body": "TkinterとSeleniumを使ったアプリケーションで,スタートを押すとChromeが起動し,スタートを押すと \n`input('>何かを入力すると,コンソールにp要素のテキストを表示')` \nが動作し,コンソールでエンターキーなりを押すまでp要素の取得を待ちます. \n次に \n`input('>何かを入力すると,コンソールにh2要素のテキストを表示')` \nが動作し,同じくh2要素の取得を待ちます.\n\nこのような動作の「コンソールでエンターキーなりを押す」を「次へボタンを押す」に対応させて,次へボタンを押すまで次の処理を待つといった処理を行いたいのですが,どのように実装すればよいでしょうか.\n\n処理を止めたい理由は,出力を一つずつ,目視で確認した後に,次の処理へ進むようにしたいためです.\n\n現状,next()は何も行いませんが,本来は次へボタンを押すとnext()が動作し,次の処理へ進めればと思っています.\n\n * 処理1 \nnext()が実行されるまで待つ\n\n * 処理2 \nnext()が実行されるまで待つ\n\n * 処理3 \n︙\n\n※処理のあとにウィンドウが閉じてしまうのを防ぎたいわけではありません.\n\nご教示くださいませ.\n\n[](https://i.stack.imgur.com/nvWXu.jpg)\n\n```\n\n import ctypes\n import tkinter as tk\n import tkinter.ttk as ttk\n from selenium import webdriver\n from selenium.webdriver.common.by import By\n from selenium.webdriver.chrome.service import Service\n from webdriver_manager.chrome import ChromeDriverManager\n from selenium.webdriver.chrome.options import Options\n \n try:\n ctypes.windll.shcore.SetProcessDpiAwareness(True)\n except BaseException:\n pass\n \n \n def next():\n pass\n \n \n def start():\n global driver\n \n chrome_options = Options()\n chrome_options.add_experimental_option(\"detach\", True)\n \n driver = webdriver.Chrome(\n service=Service(ChromeDriverManager().install()),\n options=chrome_options\n )\n \n driver.get('https://scrape-b276b.web.app/')\n input('>何かを入力すると,コンソールにp要素のテキストを表示')\n print(driver.find_element(By.CSS_SELECTOR, '#app > div > main > div > div > div > div > section > div.text > p').text)\n input('>何かを入力すると,コンソールにh2要素のテキストを表示')\n print(driver.find_element(By.CSS_SELECTOR, 'h2').text)\n input('>何かを入力すると,終了')\n \n \n def main():\n frame = tk.Tk()\n frame.title('title')\n frame.geometry(\"230x60+400+440\")\n \n button1 = ttk.Button(frame, text='次へ', command=next)\n button1.place(x=10, y=10, width=100)\n button2 = ttk.Button(frame, text='スタート', command=start)\n button2.place(x=120, y=10, width=100)\n \n frame.mainloop()\n \n \n if __name__ == '__main__':\n main()\n \n```",
"comment_count": 7,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T09:54:09.817",
"favorite_count": 0,
"id": "91598",
"last_activity_date": "2022-10-17T10:00:08.860",
"last_edit_date": "2022-10-17T10:00:08.860",
"last_editor_user_id": "3054",
"owner_user_id": null,
"post_type": "question",
"score": 1,
"tags": [
"python",
"selenium",
"tkinter"
],
"title": "Tkinterにてボタンが押されるまで次の処理を待機したい",
"view_count": 1342
} | [
{
"body": "「Tkinterにてボタンが押されるまで次の処理を待機する方法」というのはTkinterの基本的な機能として備わっているもので、ユーザーの作成するプログラム上で後から追加するものではありません。\n\n質問のプログラムで言えば`frame.mainloop()`の行が実行されることで開始し、これが実行されている間はボタンや他のウィジェット・マウス・キーボード等のイベント発生を待ち、発生したイベントに対応する処理がデフォルトで存在したりユーザープログラムから登録されていればそれを呼び出す動作をしています。 \nこんな記事に解説があります。 \n[【Python】tkinterのmainloopについて解説](https://daeudaeu.com/mainloop/)\n\nなので質問のようなプログラムで「`def\nstart():`関数の中でサイトを表示させかつボタンのクリックを待って処理を進めて行く」というのはGUI的には行儀の悪い振る舞いであり、Tkinterを使う意味が無いようなやり方です。\n\nGUI的には前の質問の回答やこの質問のコメントで示したように、以下のようにすれば良いでしょう。\n\n * `def start():`関数はサイト表示を行うだけ\n * サイト内の要素を検索して表示する作業にはそれぞれ専用のボタンと関数を必要な数だけ用意して個々に呼び出す\n * 処理順番が決まっているならボタンのテキストに対応する数値を表示しておく\n\nそれでもボタンを1個で済ませたいならば、処理を何処まで行ったかを示す変数を用意して以下のように変数を判定して処理を変えるといった方法が考えられます。 \n変更する部分だけ提示して前後は省略します。\n\n```\n\n import traceback\n phase = -1 #### 処理の段階を保存する変数:-1はブラウザが起動していない状態\n def next():\n global phase #### グローバル変数を使用する宣言\n \n #### 以下は処理の段階を保存する変数の値に従ってそれぞれの処理を行い、変数を次の段階に進める\n try:\n if phase == 0:\n print('最初の「次へ」がクリックされたので,コンソールにp要素のテキストを表示')\n print(driver.find_element(By.CSS_SELECTOR, '#app > div > main > div > div > div > div > section > div.text > p').text)\n phase += 1 #### 変数を次の段階へ\n elif phase == 1:\n print('2回目の「次へ」がクリックされたので,コンソールにh2要素のテキストを表示')\n print(driver.find_element(By.CSS_SELECTOR, 'h2').text)\n phase += 1 #### 変数を次の段階へ\n elif phase == 2:\n print('3回目の「次へ」がクリックされたので,ブラウザを終了')\n phase = -1 #### 変数をブラウザ起動前の段階へ\n driver.quit()\n except Exception as e:\n print(f'{phase}段階の処理で {e.__class__.__name__}例外が発生')\n print(traceback.format_exc())\n phase += 1 #### 変数を次の段階へ\n if phase > 2:\n phase = -1 #### 範囲オーバーなので変数をブラウザ起動前の段階へ\n pass\n \n def start():\n global driver\n global phase #### グローバル変数を使用する宣言\n \n chrome_options = Options()\n chrome_options.add_experimental_option(\"detach\", True)\n \n driver = webdriver.Chrome(\n service=Service(ChromeDriverManager().install()),\n options=chrome_options\n )\n driver.get('https://scrape-b276b.web.app/')\n \n print('ブラウザが起動し,サイトが表示されて準備完了')\n phase = 0 #### 変数を最初の段階に設定\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T09:46:32.930",
"id": "91610",
"last_activity_date": "2022-10-16T03:54:34.773",
"last_edit_date": "2022-10-16T03:54:34.773",
"last_editor_user_id": "26370",
"owner_user_id": "26370",
"parent_id": "91598",
"post_type": "answer",
"score": 2
},
{
"body": "### 待機の難しさ\n\n「ボタンが押されるまで待機してから次の処理に進む」という要望は、イベント駆動のプログラムが持つ難しさを表わにします。\n\n * イベントを「待機」するためには、コールバック関数を終了してイベントループに戻らなければならない\n * しかし、関数を終了してしまうと、「次の処理」がどこかへ行ってしまう\n\nということです。\n\n### `wait_variable`\n\ncubick\nさんのコメントで[紹介されているリンク先](https://stackoverflow.com/questions/44790449/making-\ntkinter-wait-untill-button-is-pressed)では `tkinter` の `wait`\n系の機能を使う方法が回答されています。詳しくは無いですが、これで問題無い状況も多いかも知れません。しかし、この機能を呼び出すとちょっと複雑な状態(「local\nevent loop」が作成されるとか何とか)になるようで、`wait`\nしている間はプログラムを終了できないなどの問題があります。イベントループに対するある種のハックなのか、Tcl/Tk\nレベルで理解していないと安心して使えない機能という印象です。\n\n### 一般的な解決策\n\n上のような Tck/Tk 特有の機能を排すと、解決策としては2種が考えられます。\n\n * コールバック関数に工夫をする\n * GUIとその他を別のプロセス(スレッド)で実行する\n\nこの回答では前者を扱います。\n\n### 「次の処理」の登録の連鎖\n\n[kunif\nさんの回答](https://ja.stackoverflow.com/a/91610/3054)は一つのコールバック関数内で、呼び出される度にどの処理を行なうか計算する物です。これがシンプルで解り易いと思います。\n\nもう一つ、「次の処理」を関数にして明示的に扱う方法が有ります。これはやや複雑ですが、future や promise\nといった考え方にもつながる手法だと思うので、説明します。\n\n * 最初に行なう処理をコールバック関数として登録\n * 最初のコールバック関数は、呼ばれて自身の処理を終えると、「次の処理」をコールバック関数として登録\n * 次のコールバック関数も、同じように「次の処理」をコールバック関数として登録\n * 以下繰り返し\n\nという流れです。\n\n#### 関数の連鎖\n\nこれを素直に書くと、下のようなコードになります。\n\n```\n\n def start(root, next_button):\n \n # ...\n \n def proc_01():\n print('-- 処理 1 --')\n # 次の処理を行なうコールバック関数 (command) に変更\n next_button.configure(command=proc_02)\n \n def proc_02():\n print('-- 処理 2 --')\n # 次の処理を行なうコールバック関数 (command) に変更\n next_button.configure(command=proc_03)\n \n def proc_03():\n print('-- 終了 --')\n root.quit()\n \n # 最初のコールバック関数 (command) を設定\n next_button.configure(command=proc_01)\n print('-- スタート --')\n \n```\n\n#### イテレータ / ジェネレータの利用\n\nPython\nには、「次の処理(値)」を扱う方法として[イテレータ](https://docs.python.org/ja/3/tutorial/classes.html#iterators)が用意されています。また、それを簡潔に書ける[ジェネレータ](https://docs.python.org/ja/3/tutorial/classes.html#generators)も有りますので、上の煩雑なコードの代わりに使えます。\n\n```\n\n def start(root, next_button):\n \n # ...\n \n def proc_gen():\n print('-- 処理 1 --')\n yield\n \n print('-- 処理 2 --')\n yield\n \n print('-- 終了 --')\n root.quit()\n yield\n \n # イテレータを生成\n # `proc_itr` は `next` される度に、次の yield の箇所まで処理を進める\n proc_itr = proc_gen()\n \n # コールバック (command) には `next` を呼び出す処理を設定\n next_button.configure(command=lambda: next(proc_itr))\n print('-- スタート --')\n \n```\n\nこういった「次の処理」に対する構文糖衣を[非同期\nIO](https://docs.python.org/ja/3/library/asyncio.html)などのイベント駆動処理に与える物として、「async/await\n構文」があります。いずれ GUI ツールキットとの組み合わせも良くなるかも知れません。\n\n* * *\n\n動くコード: \n動作確認したコードです。手元で動かすため、質問とは処理の内容を少し変えています。 **`next` は Python\nの組込み関数です。自作の関数で上書きするのは避けています。**\n\n```\n\n import tkinter as tk\n import tkinter.ttk as ttk\n from selenium import webdriver\n from selenium.webdriver.common.by import By\n from selenium.webdriver.chrome.service import Service\n from webdriver_manager.chrome import ChromeDriverManager\n from selenium.webdriver.chrome.options import Options\n \n url = 'https://google.com/'\n \n \n def start(root, next_button):\n chrome_options = Options()\n chrome_options.add_experimental_option(\"detach\", True)\n \n driver = webdriver.Chrome(\n service=Service(ChromeDriverManager().install()),\n options=chrome_options\n )\n \n driver.get(url)\n \n def proc_gen():\n print('-- div 要素 --')\n print(driver.find_element(By.CSS_SELECTOR, 'div').text)\n yield\n \n print('-- a 要素 --')\n print(driver.find_element(By.CSS_SELECTOR, 'a').text)\n yield\n \n print('-- 終了 --')\n root.quit()\n yield\n \n # イテレータを生成\n # `proc_itr` は `next` される度に、次の yield の箇所まで処理を進める\n proc_itr = proc_gen()\n \n # コールバック (command) には `next` を呼び出す処理を設定\n next_button.configure(command=lambda: next(proc_itr))\n print('-- スタート --')\n \n \n def main():\n frame = tk.Tk()\n frame.title('title')\n frame.geometry(\"230x60+400+440\")\n \n button1 = ttk.Button(frame, text='次へ')\n button1.place(x=10, y=10, width=100)\n button2 = ttk.Button(frame, text='スタート', command=lambda: start(frame, button1))\n button2.place(x=120, y=10, width=100)\n \n frame.mainloop()\n \n \n if __name__ == '__main__':\n main()\n \n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T16:53:45.477",
"id": "91619",
"last_activity_date": "2022-10-17T09:50:43.357",
"last_edit_date": "2022-10-17T09:50:43.357",
"last_editor_user_id": "3054",
"owner_user_id": "3054",
"parent_id": "91598",
"post_type": "answer",
"score": 1
}
] | 91598 | null | 91610 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "AndroidのSDKバージョンアップ対応の際に、Javaのバージョンアップや、ライブラリのバージョンをアップしました。 \nその後、Android Studioでビルドして動作確認しており問題は発生しませんでした。 \nしかし、Bitriseを使用して、apkを生成して動作確認した所、以下のエラーが発生しました。\n\n```\n\n java.lang.NoClassDefFoundError: Failed resolution of: Landroid/view/contentcapture/DataShareRequest;\n \n```\n\n調べてみた所、類似のエラーではライブラリのバージョンが問題のようですが、上記の「DataShareRequest」が含まれているライブラリがわかりません。\n\nご存知の方、ご教示をお願い致します。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T11:37:13.540",
"favorite_count": 0,
"id": "91600",
"last_activity_date": "2022-10-14T11:37:13.540",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54846",
"post_type": "question",
"score": 0,
"tags": [
"java",
"android",
"android-studio"
],
"title": "java.lang.NoClassDefFoundError: Failed resolution of: Landroid/view/contentcapture/DataShareRequest;",
"view_count": 155
} | [] | 91600 | null | null |
{
"accepted_answer_id": "91616",
"answer_count": 2,
"body": "時間のかかる処理(例えばネットワーク通信処理など)を並行実行するコードを作成しました。 \nこれに加え、時間のかかる処理の内部で例外が発生した場合は、 \n未実行の処理を実行させないようにしたいのですが、どのようにすればよいでしょうか? \n(並行で実行中のメソッドはそのまま実行されるのは仕方ないと考えています。)\n\nまた応用として、時間のかかる処理で10回以上例外が発生したら、以降の処理は実行しないようにしたい(キャンセルしたい)のですが、可能でしょうか。 \nキャンセルする条件が成り立ったら、全てのfutureオブジェクトに対し、cancelメソッドを実行すればできそうなのですが、 \nループとなるためスマートでなく、他によい方法があるのではないのかと思い質問しました。\n\n```\n\n import time\n from concurrent.futures import ThreadPoolExecutor\n \n def func(value: int) -> str:\n # この関数内部で例外が発生したら、他のスレッドも停止状態にしたい。\n time.sleep(1)\n return f'Value:[{value}]'\n \n with ThreadPoolExecutor(max_workers=2) as executor:\n future_list = executor.map(func, range(0, 10), timeout=5)\n \n for value in future_list: # 実行結果を表示\n print(value)\n \n```\n\n以下、サンプルの実行結果です。\n\n```\n\n Value:[0]\n Value:[1]\n Value:[2]\n Value:[3]\n Value:[4]\n Value:[5]\n Value:[6]\n Value:[7]\n Value:[8]\n Value:[9]\n \n```",
"comment_count": 3,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-14T14:28:59.210",
"favorite_count": 0,
"id": "91604",
"last_activity_date": "2022-12-04T12:17:39.850",
"last_edit_date": "2022-10-15T07:11:14.540",
"last_editor_user_id": "35267",
"owner_user_id": "35267",
"post_type": "question",
"score": 2,
"tags": [
"python",
"python3"
],
"title": "例外発生時に並行処理をキャンセルさせたい",
"view_count": 860
} | [
{
"body": "他の方のコメントのような、元々の処理がこれを適用して良い物かどうかは横に置いておいて、私のコメントで紹介した以下記事を応用して、こんな風に出来ると考えられます。 \n[並列処理を含むプログラムを強制終了させたい](https://teratail.com/questions/207950)\n\n```\n\n import random #### 例外発生シミュレーション用に追加\n import time\n from concurrent.futures import ThreadPoolExecutor\n \n #### 例外発生シミュレーション用に例外クラス追加\n class OriginalError(Exception):\n pass\n \n #### 例外発生カウンタ 0初期化\n excepcount = 0\n \n def func(value: int) -> str:\n #### 処理開始前に例外発生回数が限度をオーバーしているかチェック\n global excepcount\n if excepcount >= 3: #### ここで回数を調節\n return f'Value:[{value}] excepcount >= 3 check'\n \n # この関数内部で例外が発生したら、他のスレッドも停止状態にしたい。\n try:\n time.sleep(1)\n #### 例外発生のシミュレーション処理\n num = random.randint(0, 100)\n if num < 25:\n raise OriginalError(\"OriginalErrorです。\")\n except Exception as e:\n excepcount += 1 #### 例外発生回数を加算\n return f'Value:[{value}] exception occurred' ####このスレッドは例外終了\n \n return f'Value:[{value}]'\n \n with ThreadPoolExecutor(max_workers=2) as executor:\n future_list = executor.map(func, range(0, 15), timeout=5) ####スレッド数増加\n \n for value in future_list: # 実行結果を表示\n print(value)\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T14:05:30.830",
"id": "91616",
"last_activity_date": "2022-10-15T14:27:32.013",
"last_edit_date": "2022-10-15T14:27:32.013",
"last_editor_user_id": "26370",
"owner_user_id": "26370",
"parent_id": "91604",
"post_type": "answer",
"score": 1
},
{
"body": "回答出てるけど一応\n\n* * *\n\n`concurrent.futures`の\n[`Executor.map()`](https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.Executor.map)\nには以下のように記されてます\n\n> The returned iterator raises a\n> [`concurrent.futures.TimeoutError`](https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.TimeoutError)\n> if `__next__()` is called and the result isn’t available after _timeout_\n> seconds from the original call to\n> [Executor.map()](https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.Executor.map).\n> _timeout_ can be an int or a float. If _timeout_ is not specified or `None`,\n> there is no limit to the wait time. \n> If a _func_ call raises an exception, then that exception will be raised\n> when its value is retrieved from the iterator.\n\n * `Executor.map()` が返すのは iterator でタイムアウト時は …\n * _func_ の呼び出しが例外を送出した場合、その例外はイテレータから値を受け取る時に送出されます\n\nなので, `value == 1` のときに例外が発生しても, その次までは実行されてしまうかも\n\n> 時間のかかる処理で10回以上例外が発生したら\n\nこちらは別回答が参考になるでしょう\n\n* * *\n\nまた with の使い方で, 例えば `with open() as fp:` のインデント内で処理を記述する必要があり, 外側で `fp.write()`\nとしても書き込まれない (エラー or 無効)\n\n`ThreadPoolExecutor` の場合も, スレッド実行中に何らかのアクション起こすなら\nそのインデント内に記述しないと意味はないでしょう。(インデント外では既に終了してる)\n\n上記 `Executor.map()` のことも踏まえると以下の通り\n\n```\n\n import time\n from concurrent.futures import ThreadPoolExecutor, TimeoutError\n \n def func(value: int, ch: str) -> str:\n # この関数内部で例外が発生したら、他のスレッドも停止状態にしたい。\n print(ch*3, value)\n time.sleep(1)\n if value == 1:\n raise Exception(f'なんらか {value=}')\n return f'Value:[{value}]'\n \n with ThreadPoolExecutor(max_workers=2) as executor:\n it = executor.map(func, range(0, 10), list('ABCDEFGHIJ'), timeout=5)\n try:\n future_list = list(it)\n except TimeoutError:\n print('タイムアウト')\n except Exception as e:\n print(f'generated an exception: {e}')\n else:\n print('正常終了')\n for value in future_list: # 実行結果を表示\n print(value)\n \n # (結果)\n AAA 0\n BBB 1\n CCC 2\n DDD 3\n generated an exception: なんらか value=1\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T04:36:51.187",
"id": "91624",
"last_activity_date": "2022-12-04T12:17:39.850",
"last_edit_date": "2022-12-04T12:17:39.850",
"last_editor_user_id": "43025",
"owner_user_id": "43025",
"parent_id": "91604",
"post_type": "answer",
"score": 0
}
] | 91604 | 91616 | 91616 |
{
"accepted_answer_id": "91638",
"answer_count": 1,
"body": "READMEなどのドキュメントを複数の言語に翻訳する際のやり方について、少なくとも2つメジャーなやり方があるように見受けられました。\n\n### 1\\. README-ja.md (ファイル名に含める)\n\n例: <https://github.com/iamkun/dayjs/blob/dev/docs/ja/README-ja.md>\n\n### 2\\. README.ja.md (2つ目の拡張子にする)\n\n例: <https://github.com/ruby/ruby/blob/master/README.ja.md>\n\n### 質問\n\nこれらについて、(おそらくは好みだと思うものの)どちらを採用すべきかの意見を教えていただきたいです(メジャーなXXXのプロジェクトではこちら、YYYのライブラリの恩恵を受けるならこちら、など)",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T08:46:31.343",
"favorite_count": 0,
"id": "91608",
"last_activity_date": "2022-10-17T00:48:41.123",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "26110",
"post_type": "question",
"score": 2,
"tags": [
"markdown"
],
"title": "README-ja.md / README.ja.md のような、同じファイルを言語別に作成する形式について詳しく知りたいです。",
"view_count": 296
} | [
{
"body": "例えば `gcc` などではどちらでもない手段となっていて \n`gcc-11.2.0/gcc/po/ja.po` \n`gcc-11.2.0/gcc/po/es.po` \n`gcc-11.2.0/gcc/po/fr.po` \n`gcc-11.2.0/gcc/po/zh-CN.po` \n`gcc-11.2.0/libcpp/po/ja.po` \n`gcc-11.2.0/libcpp/po/zh_Tw.po` \nのようにメッセージディレクトリの下に各国語ファイルが配置されています。\n\n`find` 等でメッセージファイルを探す際に `find . -name '*.md'` としたいであろうことから `README.md.ja`\nのように「拡張子が変わる」運用としないほうがよさそう以外に規則はなさそう・・\n\n自分で作るプロジェクトでは自分で命名規則を決めて明文化しておけばOKでしょう。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T00:48:41.123",
"id": "91638",
"last_activity_date": "2022-10-17T00:48:41.123",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "8589",
"parent_id": "91608",
"post_type": "answer",
"score": 1
}
] | 91608 | 91638 | 91638 |
{
"accepted_answer_id": null,
"answer_count": 3,
"body": "実行環境 \nrails 7.0.3 \nruby 3.1.2 \nrspec 3.11\n\nブラウザで操作した際には期待したpathに遷移することが確認できるのですが、RSpecのsystemテストでは期待したpathになっておらず、テストが落ちてしまいます。\n\n著者の名前を登録するだけのシンプルなフォームのテストで名前が空欄の時には、エラーメッセージが表示され、新規登録画面をレンダリングするというテストでなぜ失敗するのかわからず質問させていただきます。\n\n### 実装内容\n\nroutes.rb\n\n```\n\n resources :authors\n \n```\n\napp/model/author.rb\n\n```\n\n validates :name, presence: true\n \n```\n\napp/controller/authors_controller\n\n```\n\n def new\n @author = Author.new\n end\n \n def create\n @author = Author.new(author_params)\n if @author.save\n redirect_to authors_path, notice: \"#{@author.name}を登録しました\"\n else\n render :new, status: :unprocessable_entity\n end\n end\n \n private\n \n def author_params\n params.require(:author).permit(:name)\n end\n \n```\n\napp/views/authors/new.html.haml\n\n```\n\n = simple_form_for @author do |f|\n = f.input :name\n = f.button :submit\n \n```\n\nspec/system/authors_spec.rb\n\n```\n\n context '必須項目の名前が入力されていない時' do\n it '作成できない' do\n visit new_author_path\n click_button '登録する'\n \n expect(page).to have_content '著者名を入力してください'\n expect(page).to have_current_path new_author_path\n end\n end\n \n```\n\n上記の`author_spec.rb`の実行結果が著者の一覧画面を期待するとなってしまい、失敗します。\n\n` 1) 著者の新規登録 必須項目の名前が入力されていない時 作成できない Failure/Error: expect(page).to\nhave_current_path new_author_path expected \"/authors\" to equal \"/authors/new\"`",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T09:53:39.717",
"favorite_count": 0,
"id": "91611",
"last_activity_date": "2022-10-17T02:11:14.153",
"last_edit_date": "2022-10-17T01:44:26.447",
"last_editor_user_id": "54856",
"owner_user_id": "54856",
"post_type": "question",
"score": 0,
"tags": [
"ruby-on-rails",
"ruby"
],
"title": "railsで新規登録フォームを作成し、RSpecで名前が空欄の時に失敗するというテストを書いた際に、have_current_pathで失敗後の遷移先として新規登録画面を期待するというテストを書いたのですが、なぜか一覧画面を期待してしまいテストが失敗してしまいます。",
"view_count": 186
} | [
{
"body": "自分は経験が浅いですが、気になったので書き込みました。 \nユーザーログインをして登録というかたちでしょうか? \nユーザー作成、ログインなどの記載がみられていないところから、 \nログインしていないので、一覧画面に遷移しているのかと思いました。 \n検討違いなことを言っていたら申し訳ないです。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T12:16:30.167",
"id": "91630",
"last_activity_date": "2022-10-16T12:16:30.167",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54507",
"parent_id": "91611",
"post_type": "answer",
"score": 0
},
{
"body": "> ブラウザで操作した際には、期待したpathに遷移することが確認できる\n\n確認: \nこれは「著者名を入力してください」が表示されている画面の URL パスが `/authors/new` になっているということでしょうか?\n表示される画面の内容は /authors/new テンプレートの内容であるものの、URL パスは `/authors` であったりしないでしょうか?\n\n説明: \n通常 routes.rb で `resources :authors` とすると `create` アクションは `post /authors`\nと関連付けられます。そして `create` アクションではエラー、つまり `@author.save` が `falsy` の場合は\n`redirect_to` せず `render :new` しています。これは `post /auhtors` によって authors/new\nテンプレートを表示するものなので、URL パスは `/authors` から変わらないはずです。\n\nまた、この URL パスは一覧 = `index` アクション = `get /authors`と同じものであり、実際にテストで actual value\nとして報告されているものです。\n\n> ブラウザで操作した際には、期待したpathに遷移することが確認できる\n\n繰り返しになりますが、エラー発生時の path は `/authors` ※1 になっていないでしょうか? 表示される内容は authors/new\nテンプレートのもの※2 だと思います。 \n※1 `create` アクション `post /authors` の HTTP メソッドを除いた URL パス \n※2 `render :new` の結果\n\n補足: \nなのでテストとしては次の 2点を expect することになると思います。\n\n * URL パスは authros_path であること\n * ページの内容が新規登録画面フォームであること",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T14:30:50.940",
"id": "91635",
"last_activity_date": "2022-10-16T14:30:50.940",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54859",
"parent_id": "91611",
"post_type": "answer",
"score": 0
},
{
"body": "> これは「著者名を入力してください」が表示されている画面の URL パスが /authors/new になっているということでしょうか?\n\nそうです。\n\n> 表示される画面の内容は /authors/new テンプレートの内容であるものの、URL パスは /authors であったりしないでしょうか?\n\n著者の作成に失敗すると、エラーメッセージが表示され、エラー発生時のURLパスもちゃんと /authors/newになっています。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T02:09:00.423",
"id": "91639",
"last_activity_date": "2022-10-17T02:11:14.153",
"last_edit_date": "2022-10-17T02:11:14.153",
"last_editor_user_id": "54856",
"owner_user_id": "54856",
"parent_id": "91611",
"post_type": "answer",
"score": 0
}
] | 91611 | null | 91630 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "AWSの勉強のためにGlue Crawlerを使って、S3からCSVをData Catalog化してAthenaでデータを読み込むことにトライしています。 \nデータセットはKaggleの \n<https://www.kaggle.com/datasets/mkechinov/ecommerce-behavior-data-from-multi-\ncategory-store> \nからダウンロードしたものです。 \nこれをS3に入れ、crawlerを設定し、Data catalogを作成しました。\n\nカタログを見るとカラム名も拾えており問題ないように思えます。 \nしかし、View_dataからデフォルトの \nSELECT * FROM \"AwsDataCatalog\".\"データベース名\".\"2019_nov_csv\" limit 10; \nを実行すると結果が0件しか返ってきません(カラム名は返ってきます)。 \nこの場合、一連のプロセスのどこに問題があると考えると良いでしょうか。\n\nどうぞよろしくお願いします。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T10:04:42.447",
"favorite_count": 0,
"id": "91612",
"last_activity_date": "2022-10-15T10:04:42.447",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54857",
"post_type": "question",
"score": 0,
"tags": [
"aws",
"amazon-s3"
],
"title": "Glue crawlerで作成したcatalog tableでデータがヒットしない",
"view_count": 82
} | [] | 91612 | null | null |
{
"accepted_answer_id": "91615",
"answer_count": 1,
"body": "現在、[AIZU ONLINE JUDEGE\nALDS1_4_C](https://onlinejudge.u-aizu.ac.jp/courses/lesson/1/ALDS1/4/ALDS1_4_C)をやっています。 \nその中で、ダブルハッシュを使用したオープンアドレス法を学んでいます。\n\n以下がオープンアドレス法のコードです。\n\n```\n\n #include <stdio.h>\n #include <string.h>\n \n using namespace std;\n using ll =long long;\n \n #define M 1000003\n #define L 14\n \n char H[M][L]; /* Hash Table */\n \n int GetChar(char ch){\n if ( ch == 'A') return 1;\n else if ( ch == 'C') return 2;\n else if ( ch == 'G') return 3;\n else if ( ch == 'T') return 4;\n return 0;\n }\n \n ll GetKey(char str[]){\n ll sum=0, p=1, i;\n for (i=0; i<strlen(str); i++){\n sum += p*(GetChar(str[i]));\n p *= 5;\n }\n return sum;\n }\n \n int Hash1(ll key){ return key % M; }\n int Hash2(ll key){ return (1 + (key%(M - 1)); }\n \n int find(char str[]){\n ll key = GetKey(str);\n int k=0;\n while(true){\n int hash_index = (Hash1(key) + k*Hash2(key)) % M;\n if(strcmp(H[hash_index],str) == 0) return 1;\n if(strlen(H[hash_index]) == 0){\n return 0;\n }\n k++;\n }\n return 0;\n }\n \n int insert(char str[]){\n ll key = GetKey(str);\n int k=0;\n while(true){\n ll hash_index = (Hash1(key) + k*Hash2(key)) % M;\n if(strcmp(H[hash_index],str) == 0) return 1;\n if(strlen(H[hash_index]) == 0){\n strcpy(H[hash_index], str);\n return 1;\n }\n k++;\n }\n return 0;\n }\n \n int main(){\n int i, n;\n char str[L], com[9];\n for (i=0; i<M; i++) H[i][0] = '\\0';\n \n scanf(\"%d\", &n);\n \n for(i=0; i<n; i++){\n scanf(\"%s %s\", com, str);\n \n if (com[0]=='i'){\n insert(str);\n }else{\n if(find(str)){\n printf(\"yes\\n\");\n }else{\n printf(\"no\\n\");\n }\n }\n }\n \n return 0;\n }\n \n```\n\nこの中で、文字を数値に変える関数`GetKey`の中でやっていることが分かりません。 \n具体的には、\n\n```\n\n sum += p*(GetChar(str[i]));\n p *= 5;\n \n```\n\nこのpが存在している意味が分かりません。 \n似ている文字だったら、この後ハッシュ関数に変えたインデックスの値が近くなるので \nそれを避けるために、文字列の数によって`p`を掛けたり、`p`を1回のループが終わるごとに5を乗算しているでしょうか? \nネット上で、`ここで5を乗算しているのは、文字を1から4の数値に置き換えているため`というのを見たのですがどういうことか理解できません。\n\nご教授宜しくお願い致します。",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T12:09:02.000",
"favorite_count": 0,
"id": "91613",
"last_activity_date": "2022-10-15T13:15:08.203",
"last_edit_date": "2022-10-15T12:44:04.310",
"last_editor_user_id": "7347",
"owner_user_id": "47147",
"post_type": "question",
"score": 0,
"tags": [
"アルゴリズム",
"データ構造"
],
"title": "ダブルハッシュを使用したオープンアドレス法について",
"view_count": 127
} | [
{
"body": "簡単に言えば、ACGTからなる文字列を[文字無し]=0,A=1,C=2,G=3,T=4とした逆順の5進数とみなして、Keyとしているというものです。入力例に出てくる文字列を5進数(0pXXX)で表現すると次のようになります。\n\n```\n\n AAA = 0p111 = 31\n AAC = 0p211 = 56 # 1文字目が1桁目に相当することに注意\n CCC = 0p222 = 62\n AGA = 0p131 = 41\n AGG = 0p331 = 91\n TTT = 0p444 = 124\n T = 0p4 = 4\n \n```\n\n上の例にあるとおり、1文字目が1桁目なので1を掛けますが、2文字目は5、3文字目は25(5*5)とn文字目には5のn乗を掛けるとなります。`p *=\n5;`というのがその5のn乗の`p`ということです。\n\nなお、この方法では文字列とKeyは1対1に対応しています。コードではKeyはハッシュ値を求める所でしか使用していませんが、Keyをそのままテーブルに入れて利用した方が比較などがより高速になるはずです。また、最大でも、12文字`TTTTTTTTTTTT`\n= `0p444444444444` = `244140624`なので、`long\nlong`ではなく`long`でも十分のはずで、そこらへんも最適化はできそうです。",
"comment_count": 5,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T13:15:08.203",
"id": "91615",
"last_activity_date": "2022-10-15T13:15:08.203",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "7347",
"parent_id": "91613",
"post_type": "answer",
"score": 1
}
] | 91613 | 91615 | 91615 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "可能でしょうか?\n\nクエリビルダを使用して複数のクエリに分ければ簡単に実現できますが、 \nEloquent のリレーションの機能などを使用して、Laravelらしい方法で実現できないでしょうか?",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T13:07:07.353",
"favorite_count": 0,
"id": "91614",
"last_activity_date": "2022-10-15T13:07:07.353",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "50616",
"post_type": "question",
"score": 0,
"tags": [
"php",
"mysql",
"laravel"
],
"title": "Laravel 9 リレーション先のテーブルで条件を指定(where)して、リレーション元のテーブルをUpdateしたい",
"view_count": 126
} | [] | 91614 | null | null |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "勉強のためGKEのクイックスタートを試してみようとしています。 \n<https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster?hl=ja>\n\nクイックスタートに従ってコマンドを叩いているのですが、下記のようにコマンドを叩くと、\n\n```\n\n gcloud container clusters create-auto hello-cluster --region=asia-northeast1-a\n \n```\n\n以下のようなエラーが返ってきます。(一部伏せ字にしてます)\n\n```\n\n % gcloud container clusters create-auto hello-cluster --region=asia-northeast1-a\n Note: The Pod address range limits the maximum size of the cluster. Please refer to https://cloud.google.com/kubernetes-engine/docs/how-to/flexible-pod-cidr to learn how to optimize IP address allocation.\n ERROR: (gcloud.container.clusters.create-auto) ResponseError: code=400, message=Failed precondition when calling the ServiceConsumerManager: tenantmanager::******: Consumer ************ should enable service:container.googleapis.com before generating a service account.\n com.google.api.tenant.error.TenantManagerException: Consumer ************ should enable service:container.googleapis.com before generating a service account.\n \n```\n\nServiceConsumerManagerというものを呼び出すのに失敗していて、Consumerはサービスアカウントを作らないと使えないというようなことが書いてあると読み取ったのですが、よくわかりません。\n\nサービスアカウントとは、GCPのあるサービスが、他のGCPサービスを操作するときに必要なアカウントですよね。 \nサービスアカウントを作ったとして、私はそれをどのサービス対して設定すればよいのでしょうか。\n\nそもそもクイックススタートではサービスアカウントを事前に作成せよとは書いていないですが、なぜこのようになるのでしょうか。\n\nクイックススタート通りにやっているので、APIの有効化は済んでます。\n\nどなたかご教示いただけると幸いです。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T14:09:27.753",
"favorite_count": 0,
"id": "91617",
"last_activity_date": "2022-10-15T14:09:27.753",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "47142",
"post_type": "question",
"score": 0,
"tags": [
"kubernetes",
"google-kubernetes-engine"
],
"title": "GKEのクイックスタートでいきなりクラスタ作成に躓いてます。",
"view_count": 23
} | [] | 91617 | null | null |
{
"accepted_answer_id": "91620",
"answer_count": 1,
"body": "Scoop 経由でインストールしたものとなります。 \n右クリックメニューでできたほうが楽なので、出したいのですが何故かできず。 \nScoopで管理するのが楽なため解決したいのですが、いい方法はないでしょうか。\n\n環境は Windows 11 Home (64bit) です。Windows 10でも同様の問題が発生します。\n\n[](https://i.stack.imgur.com/vwGTb.png)",
"comment_count": 3,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T14:09:38.673",
"favorite_count": 0,
"id": "91618",
"last_activity_date": "2022-10-23T03:41:08.953",
"last_edit_date": "2022-10-23T03:41:08.953",
"last_editor_user_id": "7347",
"owner_user_id": "54375",
"post_type": "question",
"score": 0,
"tags": [
"windows"
],
"title": "シェルコンテキストメニューに 7zip を登録できない",
"view_count": 649
} | [
{
"body": "「シェルコンテキストメニューに7-Zipを登録」を変更する場合は、7-Zip File Managerを「管理者として実行」する必要があります。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-15T22:13:33.610",
"id": "91620",
"last_activity_date": "2022-10-15T22:13:33.610",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "7291",
"parent_id": "91618",
"post_type": "answer",
"score": 1
}
] | 91618 | 91620 | 91620 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "【動物と鳴き声の一覧】 \n動物 「鳴く」などの動詞 \n犬(dog) bark(吠える) \n猫(cat) meow(吠える) \n鳥(bird) sing (歌う感じでさえずる) \n羊(sheep) bleat(メーと鳴く) \n豚(pig) grunt (ブーブー鳴く)\n\nコンソールには以下を表示させたいです。\n\n私の名前は、山田太郎です! \nこれから、私のペットを紹介します! \n名前は、ポチです! \n2020/07/27で7歳になります! \nわんわん!\n\n作成中のコードは下記です。\n\n【メインメソッド】\n\n```\n\n package animal;\n \n public class Main {\n \n public static void main(String[] args) {\n \n // 問① 下部の問④のメソッドを作成後、自身の姓名を引数にセットしなさい\n Main.printMyName(\"山田\", \"太郎\");\n \n // 問② 以下の変数に適切な値を格納しなさい。\n String name = pet;\n int age = 7;\n }\n \n // 問③ 以下の条件で、任意の動物クラスをインスタンス化し、適切なメソッドを呼び出しなさい。\n // 1: メソッドの引数には、問②で作成したローカル変数を使用すること。\n void show() {\n System.out.println(\"私の名前は\" + name + \"です!。\");\n }\n \n void showAnimal() {\n System.out.println(\"こから、私のペットを紹介します!\");\n Animal animal = new Animal();\n }\n \n // 問④ 以下1〜3の条件で、自身の名前とペットを紹介する旨の内容をコンソールへ出力する printMyName メソッドを作成しなさい。\n //\n // - 1. アクセス修飾子 = private\n // - 2. 引数:\n // - 2-1. 姓(セイ)\n // - 2-2. 名(メイ)\n // - 3. 戻り値 = なし\n private static void printMyName(String firstName, String lastName) {\n System.out.println(\"名前は\" + fullName(firstName, lastName) + \"です\");\n }\n }\n }\n \n```\n\n【任意の動物クラスメソッド】\n\n```\n\n package animal;\n \n // 問⑥ 以下の条件で、任意の動物クラスを作成しなさい。\n // - 1: 対象の動物は、backlogの【動物と鳴き声の一覧】を参考とすること\n // - 2: Animalを継承すること\n \n public class 任意の動物クラス名 {\n \n public void Animal() {\n super();\n }\n \n public void Animal(String name, int age) {\n super(name, age);\n }\n \n ⇩\n \n public class 任意の動物クラス名 extends Animal {\n \n public 任意の動物クラス名(String name, int age) {\n super(name, age);\n }\n \n public class dog extends Animal {\n \n public dog(String name, int age) {\n super(name, age);\n }\n \n // 問⑦ 以下の条件で、当該クラスに合う動物の鳴き声をコンソールへ出力するメソッドを作成しなさい。\n // - 1: 対象の動物の鳴き声は、backlogの【動物と鳴き声の一覧】を参考とすること\n // - 2. アクセス修飾子 = protected\n // - 3. 引数 = なし\n // - 4. 戻り値 = なし\n class Dog extends Animal {\n public void bark() {\n System.out.println(\"わんわん!\");\n }\n }\n }\n \n \n```\n\n【アニマルメソッド】\n\n```\n\n package animal;\n \n import java.text.SimpleDateFormat;\n \n public class Animal {\n \n private String name;\n private int age;\n \n public Animal() {\n }\n \n public Animal(String name, int age) {\n this.name = name;\n this.age = age;\n }\n \n protected void setName(String name) {\n this.name = name;\n }\n \n protected void setAge(int age) {\n this.age = age;\n }\n \n protected String getName() {\n return this.name;\n }\n \n protected int getAge() {\n return this.age;\n }\n \n protected void introduce() {\n System.out.println(\"名前は、\" + this.getName() + \"です!\");\n \n // 問⑤ 以下の条件で、Calendarクラスを使用して、yyyy/MM/dd形式で誕生日を取得しなさい\n // - 1: Calendarクラスの変数名 = calendar\n // - 2: 実行する日より「5ヶ月15日後」の日付を表示しなさい\n SimpleDateFormat sdf = new SimpleDateFormat(\"ここへ日付のフォーマットを記述\");\n System.out.println(sdf.format(calendar.getTime()) + \"で\" + this.getAge() + \"歳になります!\");\n }\n }\n \n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T05:48:44.647",
"favorite_count": 0,
"id": "91625",
"last_activity_date": "2022-10-23T14:22:11.097",
"last_edit_date": "2022-10-19T11:12:56.303",
"last_editor_user_id": "54869",
"owner_user_id": "54869",
"post_type": "question",
"score": -6,
"tags": [
"java"
],
"title": "Javaのメソッドに関する質問です。 以下の書き方を教えてください。",
"view_count": 491
} | [
{
"body": "実行環境:paiza.io \n※paiza.ioに合わせた書き方になっている可能性があります。\n\nMain.java\n\n```\n\n import java.util.*;\n \n public class Main {\n \n public static void main(String[] args) {\n \n // 問1 下部の問④のメソッドを作成後、自身の姓名を引数にセットしなさい\n // Main.printMyName(\"山田\", \"太郎\");\n \n // 問2 以下の変数に適切な値を格納しなさい。\n String name = \"ポチ\";\n int age = 7;\n \n show(fullName(\"山田\", \"太郎\"));\n showAnimal(name, age);\n }\n \n // 問3 以下の条件で、任意の動物クラスをインスタンス化し、適切なメソッドを呼び出しなさい。\n // 1: メソッドの引数には、問2で作成したローカル変数を使用すること。\n static void show(String name) {\n System.out.println(\"私の名前は\" + name + \"です!\");\n }\n \n static void showAnimal(String name, int age) {\n System.out.println(\"これから、私のペットを紹介します!\");\n Animal animal = new Dog(name, age);\n animal.introduce();\n animal.bark();\n }\n \n // 問4 以下1〜3の条件で、自身の名前とペットを紹介する旨の内容をコンソールへ出力する printMyName メソッドを作成しなさい。\n //\n // - 1. アクセス修飾子 = private\n // - 2. 引数:\n // - 2-1. 姓(セイ)\n // - 2-2. 名(メイ)\n // - 3. 戻り値 = なし\n private static void printMyName(String firstName, String lastName) {\n System.out.println(\"名前は\" + fullName(firstName, lastName) + \"です\");\n }\n \n private static String fullName(String firstName, String lastName) {\n return firstName + \" \" + lastName;\n }\n }\n \n```\n\nAnimal.java\n\n```\n\n import java.text.SimpleDateFormat;\n import java.util.Calendar;\n \n public class Animal {\n \n private String name;\n private int age;\n \n public Animal() {\n }\n \n public Animal(String name, int age) {\n this.name = name;\n this.age = age;\n }\n \n protected void setName(String name) {\n this.name = name;\n }\n \n protected void setAge(int age) {\n this.age = age;\n }\n \n protected String getName() {\n return this.name;\n }\n \n protected int getAge() {\n return this.age;\n }\n \n protected void introduce() {\n System.out.println(\"名前は、\" + this.getName() + \"です!\");\n \n // 問⑤ 以下の条件で、Calendarクラスを使用して、yyyy/MM/dd形式で誕生日を取得しなさい\n // - 1: Calendarクラスの変数名 = calendar\n // - 2: 実行する日より「5ヶ月15日後」の日付を表示しなさい\n Calendar calendar = Calendar.getInstance();\n SimpleDateFormat sdf = new SimpleDateFormat(\"yyyy/MM/dd\");\n System.out.println(sdf.format(calendar.getTime()) + \"で\" + this.getAge() + \"歳になります!\");\n }\n \n protected void bark() {}\n }\n \n```\n\nDog.java\n\n```\n\n // 問7 以下の条件で、当該クラスに合う動物の鳴き声をコンソールへ出力するメソッドを作成しなさい。\n // - 1: 対象の動物の鳴き声は、backlogの【動物と鳴き声の一覧】を参考とすること\n // - 2. アクセス修飾子 = protected\n // - 3. 引数 = なし\n // - 4. 戻り値 = なし\n public class Dog extends Animal {\n \n public Dog(String name, int age) {\n super(name, age);\n }\n \n protected void bark() {\n System.out.println(\"わんわん!\");\n }\n }\n \n```\n\n出力結果\n\n```\n\n 私の名前は山田 太郎です!\n これから、私のペットを紹介します!\n 名前は、ポチです!\n 2022/10/16で7歳になります!\n わんわん!\n \n```\n\n* * *\n\nMain.javaを修正しました。\n\n```\n\n import java.util.*;\n \n public class Main {\n \n public static void main(String[] args) {\n \n // 問1 下部の問④のメソッドを作成後、自身の姓名を引数にセットしなさい\n // Main.printMyName(\"太郎\", \"山田\");\n \n // 問2 以下の変数に適切な値を格納しなさい。\n String name = \"ポチ\";\n int age = 7;\n \n printMyName(\"山田\", \"太郎\", name, age);\n }\n \n // 問3 以下の条件で、任意の動物クラスをインスタンス化し、適切なメソッドを呼び出しなさい。\n // 1: メソッドの引数には、問2で作成したローカル変数を使用すること。\n static void show(String name) {\n System.out.println(\"私の名前は\" + name + \"です!\");\n }\n \n static void showAnimal(String name, int age) {\n System.out.println(\"これから、私のペットを紹介します!\");\n Animal animal = new Dog(name, age);\n animal.introduce();\n animal.bark();\n }\n \n // 問4 以下1〜3の条件で、自身の名前とペットを紹介する旨の内容をコンソールへ出力する printMyName メソッドを作成しなさい。\n //\n // - 1. アクセス修飾子 = private\n // - 2. 引数:\n // - 2-1. 姓(セイ)\n // - 2-2. 名(メイ)\n // - 3. 戻り値 = なし\n private static void printMyName(String firstName, String lastName, String petName, int petAge) {\n System.out.println(\"名前は\" + fullName(firstName, lastName) + \"です!\");\n showAnimal(petName, petAge);\n }\n \n private static String fullName(String firstName, String lastName) {\n return firstName + \" \" + lastName;\n }\n }\n \n```",
"comment_count": 62,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T10:38:22.193",
"id": "91629",
"last_activity_date": "2022-10-23T14:22:11.097",
"last_edit_date": "2022-10-23T14:22:11.097",
"last_editor_user_id": "39819",
"owner_user_id": "39819",
"parent_id": "91625",
"post_type": "answer",
"score": 1
}
] | 91625 | null | 91629 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "以下の条件で、Calendarクラスを使用して、`yyyy/MM/dd`形式で誕生日を取得しなさい。\n\n 1. Calendarクラスの変数名 = calendar\n 2. 実行する日より「5ヶ月15日後」の日付を表示しなさい\n\n```\n\n SimpleDateFormat sdf = new SimpleDateFormat(\"ここへ日付のフォーマットを記述\");\n System.out.println(sdf.format(calendar.getTime()) + \"で\" + this.getAge() + \"歳になります!\");\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T06:41:46.820",
"favorite_count": 0,
"id": "91627",
"last_activity_date": "2022-10-17T11:21:32.760",
"last_edit_date": "2022-10-17T11:21:32.760",
"last_editor_user_id": "14334",
"owner_user_id": "54869",
"post_type": "question",
"score": -5,
"tags": [
"java"
],
"title": "Javaのクラスに関する質問です。 以下の書き方を教えてください。",
"view_count": 190
} | [
{
"body": "`this.getAge()`でエラーになるのでこちらを除外したコードになります。\n\n```\n\n import java.util.*;\n import java.text.SimpleDateFormat;\n \n public class Main {\n public static void main(String[] args) throws Exception {\n \n SimpleDateFormat sdf = new SimpleDateFormat(\"yyyy/MM/dd\");\n Calendar calendar = Calendar.getInstance();\n \n System.out.println(sdf.format(calendar.getTime()) + \"で\" + \"歳になります!\");\n calendar.add(Calendar.MONTH, 5);\n calendar.add(Calendar.DAY_OF_MONTH, 15);\n System.out.println(sdf.format(calendar.getTime()));\n \n }\n }\n \n // 2022/10/16で歳になります!\n // 2023/03/31\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T09:20:08.490",
"id": "91628",
"last_activity_date": "2022-10-16T09:20:08.490",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "39819",
"parent_id": "91627",
"post_type": "answer",
"score": 0
}
] | 91627 | null | 91628 |
{
"accepted_answer_id": "91637",
"answer_count": 1,
"body": "### 前提\n\n自作アプリのdatetime型のカラムにデータが,コントローラの記述で正しく入れられません.(Rails c では入れられます.以下の試したことに記載) \nイマイチなんでかわからないので,皆さんの力を貸してください.\n\n### 実現したいこと\n\nUser作成時点で,created_atのようなdatetime型のデータを入れたいです.\n\n### 発生している問題・エラーメッセージ\n\n[[\"email\", \"xxxxx.com\"], \n[\"encrypted_password\", \"[FILTERED]\"], \n[\"created_at\", \"2022-10-16 21:32:18.541640\"], [\"updated_at\", \"2022-10-16\n21:32:18.541640\"], [\"name\", \"xxxx\"], [\"birthday\", \"2022-09-25\"],\n[\"received_at\", nil]]\n\nこのreceived_atがUser作成時点でcreated_atらと同様に入っていてほしいです.\n\n### 該当のソースコード\n\n```\n\n before_action :authenticate_user!\n \n def new\n @user = User.new\n end\n \n def initialize\n @user.received_at = params[received_at: :Time.current]\n end\n \n def create\n @user = User.new(user_params)\n @user.received_at = Time.now\n if @user.save\n @user.send_activation_email\n flash[:info] = \"Please check your email to activate your account.\"\n redirect_to root_url, notice: \"Please check your email to activate your account.\"\n else\n render 'new'\n end\n end\n \n \n```\n\n### 試したこと\n\n実はこのアプリ自体作り直していて,その際は以下のコードで動いていました.(received_atが期待通りの値を取得していた.)\n\n```\n\n def initialize\n @user.received_at = params[received_at: :Time.now]\n end\n \n \n def create\n @user = User.new(user_params)\n #params[:user]実装は終わっていないことに注意!\n #マスアサインメント脆弱性\n if @user.save\n @user.send_activation_email\n flash[:info] = \"Please check your email to activate your account.\"\n redirect_to root_url, notice: \"Please check your email to activate your account.\"\n else\n render 'new'\n end\n end\n \n```\n\nなので,一旦そのままコードをコピペしたらなぜか動かなくて,???ってなっています.\n\nまた,コンソールから確認してみたらそっちではできたので,カラムを追加していないとか,そういったことではなさそうです.\n\n```\n\n irb(main):001:0> user = User.create\n TRANSACTION (0.1ms) BEGIN\n => #<User id: nil, email: \"\", created_at: nil, updated_at: nil, name: nil, birthday: nil, received_at: nil>\n irb(main):002:0> user.received_at = Time.now\n => 2022-10-16 21:04:36.530002067 +0900\n irb(main):003:0> p user\n #<User id: nil, email: \"\", created_at: nil, updated_at: nil, name: nil, birthday: nil, received_at: \"2022-10-16 21:04:36.530002000 +0900\">\n => #<User id: nil, email: \"\", created_at: nil, updated_at: nil, name: nil, birthday: nil, received_at: \"2022-10-16 21:04:36.530002000 +0900\">\n \n```\n\n### 補足情報(FW/ツールのバージョンなど)\n\nRuby 3.1.2 \nRails 7.0.4 \nDevise Gem でユーザー登録実装",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T12:52:40.690",
"favorite_count": 0,
"id": "91632",
"last_activity_date": "2022-10-16T17:05:18.610",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "40091",
"post_type": "question",
"score": 0,
"tags": [
"ruby-on-rails",
"ruby",
"devise"
],
"title": "Rails でdatetime型の値を正しく入れられません.",
"view_count": 123
} | [
{
"body": "`received_at` は `rails generate migration AddReeivedAtToUser\nreceived_at:datetime` などで users テーブルにカラムを追加するマイグレーションを作成し、`rails db:migrate` で\nDB に反映されているでしょうか? app/models/user.rb の User クラスに `attribute :received_at,\n:datetime` を追加して済ませていないでしょうか?\n\n後者の場合、rails 上で仮想的なカラムが追加されるだけで save しても DB には反映されません。※DB の users\nテーブルにはカラム自体が存在しない。\n\n「rails console では入れられる」とのことですが、DB に反映できているか確認されているでしょうか? 具体的には `user.save;\nuser.reload` の様に save 後に reload で DB から読み込み直すと `received_at` が nil\nになっていないでしょうか?\n\n「アプリ自体作り直していて」とのことですが、マイグレーションファイルの内容は引き継げているでしょうか?\n\n以上の点をまず確認されると良いと思います。\n\nと、実は `received_at` が登録されない件とは直接関係ないと思うので、以降は興味本位の内容です。 \n提示されたコードに含まれる `initialize` メソッドには突っ込み所が多いです。実際存在するのでしょうか? \n突っ込み所:\n\n 1. 先の回答にある通り、通常 `initialize` を書きません。\n 2. その上で、`initialize` が実行されるタイミングでは `@user` は nil (存在しない)ので `@user.received_at = ` はエラー `undefined method 'received_at=' for nil:NilClass` が発生するはずです。\n 3. `initialize` 内での `params[...]` はエラー `undefined method 'filered_parameters' for nil:NilClass` が発生します。※私も詳しくは理解していませんが、Rails 7.0.4 で発生しました。\n 4. `:Time.current` とされていますが、 `:Time` はクラスではなくシンボルです。なので `undefined method 'current' for :Time:Symbol` というエラーが発生するはずです。\n 5. `params[recieved_at: Time.current]` は `{ received_at: Time.current }` というキーで `params` から値と取得するものです。通常 params はハッシュをキーとした値を持たないので `nil` になると思います。なので仮に 2~4 の問題がないとしても `@user.received_at =` には `nil` が代入されると思います。",
"comment_count": 6,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T17:05:18.610",
"id": "91637",
"last_activity_date": "2022-10-16T17:05:18.610",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54859",
"parent_id": "91632",
"post_type": "answer",
"score": 2
}
] | 91632 | 91637 | 91637 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "Arduinoで二酸化炭素センサーと色感センサーを用いてフルカラーLEDを点灯させたいです。 \n具体的には、色感センサーで読み取った色と同じ色にフルカラーLEDを光らせながら同時に、二酸化炭素センサーで読み取った二酸化炭素濃度の値が350〜999ppmのときフルカラーLEDを30個、二酸化炭素濃度の値が1000〜2499ppmのときにフルカラーLEDを20個、二酸化炭素濃度の値が2500ppm以上のときフルカラーLEDを10個点灯できるようにしたいです。\n\n下記のコードではフルカラーLEDが光の色が変化せず、困っています。\n\n * [フルカラーLEDデーターシート](https://akizukidenshi.com/download/ds/optosupply/OSTA5131A-RPGB.pdf)\n * [色感センサー](https://akizukidenshi.com/catalog/g/gM-08220/)\n * [CO2センサーデータシート](https://akizukidenshi.com/download/ds/winsen/mg812.pdf)\n\n```\n\n #include \"Adafruit_TCS34725.h\"\n #include \"CO2Sensor.h\"\n \n const int SER = 2;\n const int RCLK = 3;\n const int SRCLK = 4;\n const int SRCLR = 5;\n \n boolean red[] = {0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1};\n #define commonAnode false\n byte gammatable[256];\n \n Adafruit_TCS34725 tcs = Adafruit_TCS34725(TCS34725_INTEGRATIONTIME_50MS,TCS34725_GAIN_4X);\n \n CO2Sensor co2Sensor(A0, 0.99, 100);\n \n void setup() {\n Serial.begin(9600);\n Serial.println(\"=== Initialized ===\");\n co2Sensor.calibrate();\n Serial.println(\"Color view Test!\");\n \n if (tcs.begin()){\n Serial.println(\"Found sensor\");\n }else {\n Serial.println(\"No TCS34725 found ... check your connections\");\n while(1); // halt!\n }\n for (int i=0; i<256; i++){\n float x = i;\n x /= 255;\n x = pow(x, 2.5);\n x *= 255;\n \n if (commonAnode) {\n gammatable[i] = 255 - x;\n } else {\n gammatable[i] = x;\n }\n }\n pinMode(SER, OUTPUT);\n pinMode(RCLK, OUTPUT);\n pinMode(SRCLK, OUTPUT);\n pinMode(SRCLR, OUTPUT); \n \n digitalWrite(SRCLR, LOW);\n digitalWrite(SRCLR, HIGH);\n \n }\n \n void loop() {\n \n for (int j = 0; j < 30; j++) {\n digitalWrite(RCLK, LOW);\n for(int j =0 ; j < 30 ; j++){\n digitalWrite(SER,1);\n digitalWrite(SRCLK,1);\n digitalWrite(SRCLK,0); \n }\n // shiftOut(SER, SRCLK, LSBFIRST, 1<<j);\n digitalWrite(RCLK, HIGH);\n delay(250);\n }\n float val = co2Sensor.read();\n Serial.print(\"CO2 value: \");\n Serial.println(val);\n \n uint16_t clear,red,green,blue;\n \n tcs.setInterrupt(false); \n \n delay(60);\n \n tcs.getRawData(&red, &green, &blue, &clear);\n \n tcs.setInterrupt(true);\n \n Serial.print(\"C:\\t\"); Serial.print(clear);\n Serial.print(\"\\tR:\\t\"); Serial.print(red);\n Serial.print(\"\\tG:\\t\"); Serial.print(green);\n Serial.print(\"\\tB:\\t\"); Serial.print(blue);\n \n uint32_t sum = clear;\n float r,g,b;\n r = red; r /= sum;\n g = green; g /= sum;\n b = blue; b /= sum;\n r *= 256; g *= 256; b *= 256;\n Serial.print(\"\\t\");\n Serial.print((int)r, HEX); Serial.print((int)g, HEX);Serial.print((int)b, HEX);\n Serial.println();\n \n //Serial.print((int)r); Serial.print(\" \"); Serial.print((int)g); Serial.println((int)b );\n \n analogWrite(SER, gammatable[(int)r]);\n analogWrite(RCLK, gammatable[(int)g]);\n analogWrite(SRCLR, gammatable[(int)b]);\n }\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T13:19:23.903",
"favorite_count": 0,
"id": "91633",
"last_activity_date": "2022-10-16T16:25:07.810",
"last_edit_date": "2022-10-16T16:25:07.810",
"last_editor_user_id": "3060",
"owner_user_id": "54811",
"post_type": "question",
"score": 0,
"tags": [
"arduino"
],
"title": "Arduinoでセンサー2つを使ってLEDを制御するプログラムを組みたい",
"view_count": 88
} | [] | 91633 | null | null |
{
"accepted_answer_id": "91640",
"answer_count": 1,
"body": "FlutterでAnimatedListのitemBuilder内でSizeTransitionを使ってListの要素の追加時と削除時にアニメーションしているのですが、より早いアニメーション(アニメーションの開始から終了までを早くしたい)にするにはどうすればいいのでしょうか?\n\n今はSizeTransitionのデフォルトのアニメーションなのですが、これを変更するにはどうすればいいですか?\n\n```\n\n Widget _buildItem(Host host, Animation<double> animation) {\n return SizeTransition(\n sizeFactor: animation,\n child: ListTile(\n title: Text(host.name),\n trailing: PopupMenuButton(\n itemBuilder: (context) {\n return [\n PopupMenuItem(child: Text(\"Edit\"), value: host),\n PopupMenuItem(\n child: Text(\"Delete\"),\n onTap: () {\n AnimatedListRemovedItemBuilder builder =\n (context, animation) {\n return _buildItem(host, animation);\n };\n hosts.removeAt(host.own_index);\n \n _listKey.currentState!.removeItem(host.own_index, builder,\n duration: Duration(milliseconds: 200));\n }),\n ];\n },\n icon: Icon(Icons.more_vert),\n ),\n ),\n );\n }\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-16T14:07:04.073",
"favorite_count": 0,
"id": "91634",
"last_activity_date": "2022-10-17T04:44:41.187",
"last_edit_date": "2022-10-17T00:10:32.383",
"last_editor_user_id": "3060",
"owner_user_id": "5246",
"post_type": "question",
"score": 0,
"tags": [
"flutter",
"dart"
],
"title": "FlutterでAnimatedListのitemBuilderに適用されるアニメーション速度を変更したい",
"view_count": 109
} | [
{
"body": "`AnimatedListState`の`insertItem`と`removeItem`の`duration`パラメータに短い時間設定をしたらできませんか。\n\n提示されたコードであれば、`_listKey.currentState`が`AnimatedListState`のオブジェクトに当たると思います。\n\n提示されたコード上は、削除を200msに設定してありますが、それを50msとかに設定するとか。 \n`insertItem`部分のコードは提示されていないけど、そちらも似たような実装で実現できると思います。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T04:44:41.187",
"id": "91640",
"last_activity_date": "2022-10-17T04:44:41.187",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54446",
"parent_id": "91634",
"post_type": "answer",
"score": 1
}
] | 91634 | 91640 | 91640 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "Play Consoleにてaabファイルアップロード時に、以下のエラーが表示されアップロードすることが出来ません。\n\n```\n\n アップロードされた APK または Android App Bundle には、インテント フィルタを使用するアクティビティ、アクティビティ エイリアス、サービス、またはブロードキャスト レシーバが含まれていますが、'android:exported' プロパティ セットは使用されていません。このファイルは Android 12 以降にはインストールできません。詳細: developer.android.com/about/versions/12/behavior-changes-12#exported\n \n```\n\nAndroidManifestにて`android:exported=\"true\"`は設定済みです。\n\nAndroidManifestの抜粋\n\n```\n\n <activity\n android:name=\".MainActivity\"\n android:configChanges=\"keyboard|keyboardHidden|orientation|screenSize|uiMode\"\n \n android:label=\"@string/app_name\"\n android:launchMode=\"singleTask\"\n android:screenOrientation=\"portrait\"\n android:theme=\"@style/Theme.App.SplashScreen\"\n android:windowSoftInputMode=\"adjustResize\"\n android:exported=\"true\">\n <intent-filter>\n <action android:name=\"android.intent.action.MAIN\" />\n <category android:name=\"android.intent.category.LAUNCHER\" />\n </intent-filter>\n <intent-filter>\n <action android:name=\"android.intent.action.VIEW\" />\n \n <category android:name=\"android.intent.category.DEFAULT\" />\n <category android:name=\"android.intent.category.BROWSABLE\" />\n \n <data android:scheme=\"appid\" />\n <data android:scheme=\"appid\" />\n </intent-filter>\n </activity>\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T05:51:51.243",
"favorite_count": 0,
"id": "91641",
"last_activity_date": "2022-10-17T05:51:51.243",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54884",
"post_type": "question",
"score": 0,
"tags": [
"android",
"react-native"
],
"title": "Play Consoleへaabファイルをアップロード出来ない",
"view_count": 194
} | [] | 91641 | null | null |
{
"accepted_answer_id": "91645",
"answer_count": 3,
"body": "Linuxコマンドで以下のようにテキストファイル (test.txt) を加工したいです。\n\n**加工前:**\n\n```\n\n -- SQL\n \n```\n\n**加工後:**\n\n```\n\n header\n -- SQL\n footer\n \n```\n\n以下のようなシェルスクリプトを実行してもうまくいきませんでした。 \nうまくいく方法を教えていただけますと嬉しいです。\n\ntest.sh\n\n```\n\n # not foundになる。\n sed -i '1s/^/header\\\\n/' test.txt\n \n # なぜかtest.txt・というファイル名が作られる\n echo footer >> test.txt\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T06:59:21.620",
"favorite_count": 0,
"id": "91642",
"last_activity_date": "2022-10-17T09:34:39.463",
"last_edit_date": "2022-10-17T09:34:39.463",
"last_editor_user_id": "3054",
"owner_user_id": "36855",
"post_type": "question",
"score": 1,
"tags": [
"linux",
"shellscript",
"sed"
],
"title": "Linux コマンドでテキストファイルにヘッダーとフッターを追加したい",
"view_count": 338
} | [
{
"body": "```\n\n $ sed -i -E -e '1iheader' -e '$afooter' test.txt\n $ cat test.txt\n header\n -- SQL\n footer\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T07:11:47.460",
"id": "91643",
"last_activity_date": "2022-10-17T07:11:47.460",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "47127",
"parent_id": "91642",
"post_type": "answer",
"score": 1
},
{
"body": "`sed` を使わない別の例です。\n\n```\n\n #!/bin/sh\n \n echo \"header\" >> result.txt\n cat test.txt >> result.txt\n echo \"footer\" >> result.txt\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T07:37:52.790",
"id": "91645",
"last_activity_date": "2022-10-17T07:37:52.790",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3060",
"parent_id": "91642",
"post_type": "answer",
"score": 4
},
{
"body": "質問のコードに大きな間違いは有りません。このコードで「not\nfoundになる」「test.txt・というファイル名が作られる」という現象は起きません。色々と試している時に、なにか手順を誤ったのでしょう。\n\n小さな間違いとして、`\\\\n` が有ります。これは `\\n` が正しいです。(`\\n` が使えるのは GNU 拡張のようですが、そもそも `-i`\nオプションが GNU 拡張なので、使える環境だと考えられます)",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T09:33:36.990",
"id": "91649",
"last_activity_date": "2022-10-17T09:33:36.990",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3054",
"parent_id": "91642",
"post_type": "answer",
"score": 3
}
] | 91642 | 91645 | 91645 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "`Twitter API v2のCompliance Streams`が何なのかを調べているのですが、実際にAPIを叩いてもても何も返ってきません。\n\n使用用途としてはオフラインに保存しているツイートデータなどが、削除された際に、オフライン上のツイートデータも削除するといったもののはずなのですが、実際にデータが返ってくるパターンがわかりません。\n\n<https://developer.twitter.com/en/docs/twitter-\napi/compliance/streams/introduction>\n\nドキュメントには載っていないですが、`start_time`, `end_time`が設定できるようです。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T07:33:27.583",
"favorite_count": 0,
"id": "91644",
"last_activity_date": "2022-10-17T08:18:17.640",
"last_edit_date": "2022-10-17T08:18:17.640",
"last_editor_user_id": "40856",
"owner_user_id": "40856",
"post_type": "question",
"score": 0,
"tags": [
"twitter"
],
"title": "Twitter API v2のCompliance Streamsの使い方がわからない。",
"view_count": 33
} | [] | 91644 | null | null |
{
"accepted_answer_id": "91647",
"answer_count": 1,
"body": "Rを使用してデータをクリーニングしています。 \n下記に3つの列(ID, s1, s2)があり、s1には2つの欠測があります。 \ns1に欠測がある場合、s2の同じ行をNAに置き換えた列を作成したいのですが、どなたかおしえていただけますか?\n\nID s1 s2 \n1 2 1 \n2 3 1 \n3 2 3 \n4 NA 2 ← ここにs1のNAを入れたい \n5 NA 2 ← ここにs1のNAを入れたい",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T08:01:26.407",
"favorite_count": 0,
"id": "91646",
"last_activity_date": "2022-10-20T02:39:12.277",
"last_edit_date": "2022-10-20T02:39:12.277",
"last_editor_user_id": "47127",
"owner_user_id": "54886",
"post_type": "question",
"score": 0,
"tags": [
"r",
"tidyverse",
"rstudio"
],
"title": "Rを使用して列の値を他の列にあるNAに置き換えたい",
"view_count": 195
} | [
{
"body": "`dplyr` を使う場合。\n\n```\n\n suppressMessages(library(dplyr))\n \n df <- data.frame(\n ID = 1:5, s1 = c(2, 3, 2, NA, NA), s2 = c(1, 1, 3, 2, 2)\n )\n \n df <- df %>% mutate(s2 = replace(s2, is.na(s1), NA))\n df\n \n #\n ID s1 s2\n 1 1 2 1\n 2 2 3 1\n 3 3 2 3\n 4 4 NA NA\n 5 5 NA NA\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T08:08:25.337",
"id": "91647",
"last_activity_date": "2022-10-17T08:08:25.337",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "47127",
"parent_id": "91646",
"post_type": "answer",
"score": 0
}
] | 91646 | 91647 | 91647 |
{
"accepted_answer_id": "91653",
"answer_count": 1,
"body": "現在VSCodeでPythonのプログラミングに挑戦しており、Flake8をインストールしていますが、E241が表示できません。E501やE401は表示されるのですが、空白を無駄に開けてしまう癖に対応できるE241が表示されなくて困っています。 \nこれはなぜ起きてしまうのでしょうか。\n\n**実行環境:** \nFlake8 5.4.1 / 3.6.0 \nPython 3.8.3",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T09:54:01.013",
"favorite_count": 0,
"id": "91650",
"last_activity_date": "2022-10-17T16:21:10.073",
"last_edit_date": "2022-10-17T12:13:06.747",
"last_editor_user_id": "3060",
"owner_user_id": "54888",
"post_type": "question",
"score": 4,
"tags": [
"python",
"python3",
"vscode"
],
"title": "Flake8のE241が表示されない",
"view_count": 107
} | [
{
"body": "E241 はデフォルトでは無効にされています。その他にもいくつかのルールが、満場一致で受け入れられておらず、PEP\n8でも必須とされていないことから、デフィルトでは無効にされています。(参考: [Error\ncodes](https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes))\n\n[extend-\nselect](https://flake8.pycqa.org/en/latest/user/options.html#cmdoption-\nflake8-extend-select) に E241 を追加し、有効にするとよいでしょう。\n\n### 設定ファイルで有効にするには\n\n[Configuration\nLocations](https://flake8.pycqa.org/en/latest/user/configuration.html#configuration-\nlocations) で説明されている(いずれかの)設定ファイルに以下を追加します。\n\n```\n\n [flake8]\n extend-select = E241\n \n```\n\n### コマンドラインオプション で有効にするには\n\n```\n\n flake8 --extend-select=E241\n \n```\n\nとして実行します。VSCode 上で実行する際のオプションの設定は `Python › Linting: Flake8 Args` です。これに\n`--extend-select=E241` を追加します。(参考: [Linting Python in Visual Studio\nCode](https://code.visualstudio.com/docs/python/linting#_flake8))",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T16:21:10.073",
"id": "91653",
"last_activity_date": "2022-10-17T16:21:10.073",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3054",
"parent_id": "91650",
"post_type": "answer",
"score": 2
}
] | 91650 | 91653 | 91653 |
{
"accepted_answer_id": null,
"answer_count": 3,
"body": "utf-8形式のテキストファイルへ以下のコードで書き出し、再度インポートを行うとbase64のデータをstring型で保持してしまい、元の変数のデータと一致が取れなくなってしまう。\n\n```\n\n base64.b64encode(string型変数.encode())\n \n```\n\n### 下記状況\n\nインポートしたテキストの状態 = b'abc'(※string型) \nbase64.b64encode(string型変数.encode()) = b'abc'(※bytes型)\n\nif文内でインポートしたテキストと変換元のワードが一致するかチェック処理を行いたいが、インポートしたテキストがstring型の状態でbase64時のテキストを保持しており、デコードができない。\n\n**出てくるエラー:**\n\n```\n\n 'str' object has no attribute 'decode'\n \n```\n\nエンコード元の変数をインポートした直後の状態に合わせようとするとbyte型からstring変換できません(当たり前) \n\nどのようにすれば一致させることができますか? \nまた、以下のエラーをなんと解釈するべきかわからないのですが教えていただけますでしょうか。\n\n```\n\n エラーコード'utf-8' codec can't decode byte 0xcd in position 3: invalid continuation byte\n \n```",
"comment_count": 6,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-17T10:19:25.737",
"favorite_count": 0,
"id": "91651",
"last_activity_date": "2022-10-21T14:00:50.993",
"last_edit_date": "2022-10-18T02:34:25.360",
"last_editor_user_id": "51823",
"owner_user_id": "51823",
"post_type": "question",
"score": -2,
"tags": [
"python",
"python3",
"base64"
],
"title": "base64変換した文字列をテキストファイルとしてエクスポートすると再インポートした時、値が一致させる方法がわからない",
"view_count": 622
} | [
{
"body": "色々模索した結果、以下の方法で解決に至りました。 \nまた、未解決部分までの再現コードも書き残します。\n\n```\n\n # text.py\n # ※書き出しファイルのディレクトリをCドライブ直下(仮)にしているため、\n # pyファイル実行時にアナコンダプロンプトを管理者権限で実行する前提\n import base64\n \n #書き出すテキスト\n inputTxt = 'aiueotext'\n print(inputTxt , type(inputTxt))\n #=> aiueotext <class 'str'>\n \n exportText = base64.b64encode(inputTxt.encode()) #...■1\n \n print(exportText , type(exportText))\n #=> b'YWl1ZW90ZXh0' <class 'bytes'>\n \n #書き出し\n txtfl = open('C:\\\\textfile_utf8.txt', 'w')\n txtfl.write(str(exportText))\n txtfl.close()\n \n #読み込み\n readfl = open('C:\\\\textfile_utf8.txt', 'r')\n txt = readfl.read()\n readfl.close()\n \n print(txt , type(txt))\n #=> b'YWl1ZW90ZXh0' <class 'str'>\n #これが型がbytes型とstr型で異なる為、値が同一と判定できなかった\n \n \n #ここまでが再現コード\n \n \n #解決方法\n \n # txt と inputTxt の一致が取りたかったが、\n # 以下の記述で読み込みファイル側のデータを何とかエンコードできました。\n #base64.b64decode(txt[2:-1].encode()).decode('utf-8')\n \n txt = base64.b64decode(txt[2:-1].encode()).decode('utf-8') #...■2\n \n print(txt , type(txt))\n #=> aiueotext <class 'str'>\n \n```\n\n追記: \nデコードするときに変数の一部を除外する処理に納得できなかったので調べたところ、 \n以下のような対応で処理することができました。\n\n```\n\n #修正箇所\n #...■1\n exportText = base64.b64encode(inputTxt.encode()).decode('utf-8')\n \n #...■2\n txt = base64.b64decode(txt.encode()).decode('utf-8')\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T02:13:03.320",
"id": "91657",
"last_activity_date": "2022-10-18T03:50:57.833",
"last_edit_date": "2022-10-18T03:50:57.833",
"last_editor_user_id": "3060",
"owner_user_id": "51823",
"parent_id": "91651",
"post_type": "answer",
"score": 0
},
{
"body": "`b'YWl1ZW90ZXh0'`という **長さ12** のデータを\n\n```\n\n txtfl = open('C:\\\\textfile_utf8.txt', 'w')\n txtfl.write(str(exportText))\n txtfl.close()\n \n```\n\nで書き出した時、 **15バイトに増えていた** ことに疑問は無かったでしょうか。\n\nファイルに書かれた `b''`の部分に疑問を感じなかったのでしょうか。\n\nそれが本当にbase64でエンコードされたデータの一部だと思っていたのでしょうか。\n\n**そもそもファイルの中身を見たのでしょうか。**\n\nbytes型のデータを書き出すのにテキストモードでファイルを開いて、Pythonでのリテラルを表現する余計なもの(`b''`のこと)が付いた状態で書き出してのが失敗です。\n\nbytes型とstr型の理解がまだのようですのでそのあたりを触ってみるとよさそうですが、それはおいておいて、こうなっていればよかったであろうコードを書いておきます。\n\n```\n\n import base64\n \n # 書き出すテキスト\n inputTxt = 'aiueotext'\n print(inputTxt , type(inputTxt))\n #=> aiueotext <class 'str'>\n \n # UTF-8でデコードして得たbytes型のデータを、base64でエンコードする\n exportText = base64.b64encode(inputTxt.encode())\n \n print(exportText , type(exportText))\n #=> b'YWl1ZW90ZXh0' <class 'bytes'>\n \n # バイナリモードで書き出し\n binfl = open('textfile_ascii.txt', 'wb')\n binfl.write(exportText)\n binfl.close()\n \n # バイナリモードで読み込み\n readfl = open('textfile_ascii.txt', 'rb')\n txt_as_bytes = readfl.read()\n readfl.close()\n \n print(txt_as_bytes , type(txt_as_bytes))\n # => b'YWl1ZW90ZXh0' <class 'bytes'>\n \n # base64でデコードしたbytes型のデータを、UTF-8でデコードしてstr型を得る\n txt = base64.b64decode(txt_as_bytes).decode()\n \n print(txt , type(txt))\n # => aiueotext <class 'str'>\n \n```\n\n* * *\n\nところで\n\n<https://docs.python.org/ja/3/library/base64.html#base64.b64decode>\n\n> Base64 エンコードされた bytes-like object または ASCII 文字列 s をデコードし、デコードされた bytes\n> を返します。\n\nなので読み込みの方は\n\n```\n\n # ファイルの中身は間違いなくasciiの範囲内なのでエンコーディングの指定が\n # UTF-8だろうがasciiだろうがShift-JISだろうが結果は変わらない\n readfl = open('textfile_ascii.txt', 'r')\n txt_as_str = readfl.read()\n readfl.close()\n \n print(txt_as_str , type(txt_as_str))\n # => YWl1ZW90ZXh0 <class 'str'>\n \n # base64でデコードしたbytes型のデータを、UTF-8でデコードしてstr型を得る\n txt = base64.b64decode(txt_as_bytes).decode()\n \n print(txt , type(txt))\n # => aiueotext <class 'str'>\n \n```\n\nでもいいですね。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T16:14:37.550",
"id": "91667",
"last_activity_date": "2022-10-18T16:14:37.550",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "12274",
"parent_id": "91651",
"post_type": "answer",
"score": 0
},
{
"body": "コメントで御指摘のように質問の仕方には多少なりとも難はありましたが,質問された方がコメントに対応してコードを提供して頂いたので,個人的には\npythonによる Base64 処理について改めて学ぶ機会を得ました。\n\nそこで,質問された方の追記の方法を日本語の文字列でも確かめてみたところ,少なくとも私の環境(MacOS 12.6, Terminal(utf-8),\nPython 3.10.8)では問題なさそうでした。御参考までにコードと出力を転記いたします。\n\n```\n\n import base64\n \n input_str = ('文字列を Base64 エンコードして'\n 'テキストファイルに書き込む\\n'\n 'テキストファイルを読み込み'\n ' Base64 デコードして文字列を取得\\n')\n print(f'input_str:\\n{input_str}')\n \n write_str = base64.b64encode(input_str.encode()).decode()\n \n with open('tmp_base64.txt', 'w') as f:\n f.write(write_str)\n \n with open('tmp_base64.txt', 'r') as f:\n read_str = f.read()\n \n return_str = base64.b64decode(read_str).decode()\n print(f'return_str:\\n{return_str}')\n \n print(f'input_str == return_str:\\n{input_str == return_str}')\n \n```\n\n```\n\n input_str:\n 文字列を Base64 エンコードしてテキストファイルに書き込む\n テキストファイルを読み込み Base64 デコードして文字列を取得\n \n return_str:\n 文字列を Base64 エンコードしてテキストファイルに書き込む\n テキストファイルを読み込み Base64 デコードして文字列を取得\n \n input_str == return_str:\n True\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-21T14:00:50.993",
"id": "91729",
"last_activity_date": "2022-10-21T14:00:50.993",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54588",
"parent_id": "91651",
"post_type": "answer",
"score": 2
}
] | 91651 | null | 91729 |
{
"accepted_answer_id": "91780",
"answer_count": 2,
"body": "Iotデバイス開発の初心者です。初歩的なご質問をお許しください。\n\nSPRESENSEを用いて、音声を録音して録音したデータをSD内に保存することには成功したのですが \nAWSサーバ上にそのデータをアップロードできないかと考えています。\n\nSPRESENSE公式のチュートリアルを見ると、MQTTでのメッセージをPublishすることは可能だということは \n分かっております。 \n参考:<https://developer.sony.com/develop/spresense/docs/arduino_tutorials_ja.html#_aws%E3%82%B5%E3%83%BC%E3%83%90%E3%81%ABgnss%E4%BD%8D%E7%BD%AE%E6%83%85%E5%A0%B1%E3%82%92publish%E3%81%99%E3%82%8B>\n\n動作環境: \n・SPRESENSE IDE版 \n・SPRESENSE メインボード \n・SPRESENSE LTE拡張ボード \n・SIMカード \n・microSDカード\n\nしかしながら、調べてみるとMQTTはファイルの送信には向かないようでなにか良い方法はあるかと行き詰っております。 \nご助言を頂きたいです。プロフェッショナルの方どうかお助け下さい。 \nよろしくお願い致します。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T02:35:05.483",
"favorite_count": 0,
"id": "91658",
"last_activity_date": "2022-10-24T02:18:20.007",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "49229",
"post_type": "question",
"score": 0,
"tags": [
"spresense",
"arduino"
],
"title": "SPRESENSEを用いて録音した音声を、AWSサーバにアップロードしたい",
"view_count": 199
} | [
{
"body": "MQTTは、ファイルを送ることもできますが、軽めのメッセージをやり取りすることを前提とした通信プロトコルだと思います。 \n比較的大きいサイズのデータを送るような場合、別途HTTPなど別のプロトコルで転送する、という手法が一般的なようです。\n\nちょっと記事の趣旨が違っていますが、以下の記事など参考になるかと思います。\n\n<https://aws.amazon.com/jp/blogs/news/securely-ingesting-large-sized-payloads-\nfrom-iot-devices-to-the-aws-cloud/>",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-24T01:46:37.930",
"id": "91780",
"last_activity_date": "2022-10-24T01:46:37.930",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "44240",
"parent_id": "91658",
"post_type": "answer",
"score": 0
},
{
"body": "私も同様のことを試したくてこの1ヶ月ほど同基板を検証していますが、 \nそもそも、\n\ntools/config.py examples/audio_pcm_capture examples/lte_awsiot\n\nというビルドの結果が、\"Out of memory\"というエラーを生じてしまっているが故に、 \nオーディオとAWSIoTの同時使用は今のところ諦めています。\n\nで、代替案としては、以下を全て満たすことでAWSへのファイル送信を実現しました。 \n(1) Spresenseを\"gs2200m\"にてWi-Fi通信可能にする \n(2) Spresenseを\"ftpc\"にてFTPクライアント機能実装する \n(3) Spresenseを\"mqtt_pub\"にてMQTTパブリッシャー機能実装する \n(4) Wi-Fiでアクセス可能なFTPサーバーとMQTTブローカーを設置する \n(5) AWS-IoTを実装した別コンピュータから(4)の情報を取得してAWSへ送信する\n\n私の手元では、(4)(5)をRaspberry Pi Zeroにて実装することでやりたいことをなんとか実現できました。\n\nご参考になれば幸いです。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-24T01:50:25.423",
"id": "91781",
"last_activity_date": "2022-10-24T02:18:20.007",
"last_edit_date": "2022-10-24T02:18:20.007",
"last_editor_user_id": "54630",
"owner_user_id": "54630",
"parent_id": "91658",
"post_type": "answer",
"score": 0
}
] | 91658 | 91780 | 91780 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "現在、spresense上でwavファイルから音声を読み取りstart\nstopを繰り返すプログラムを作っているのですが、2回目のstartでbufferが足りなくなってしまいます。 \nbufferをクリアしようとclearbuf()を実行しようとすると、宣言されていないため使えないです。どのようにすればbufferを削除することができるでしょうか。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T05:25:23.713",
"favorite_count": 0,
"id": "91660",
"last_activity_date": "2022-10-18T05:25:23.713",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54897",
"post_type": "question",
"score": 0,
"tags": [
"spresense",
"audio"
],
"title": "SPRESENSEにおいてbufferが足りなくなってしまう問題について",
"view_count": 69
} | [] | 91660 | null | null |
{
"accepted_answer_id": "91663",
"answer_count": 2,
"body": "ディレクトリを移動してcsvデータを保存するという作業を行うために、ipynbファイルでいろいろ試行錯誤しておりました。 \nipynbで問題なく動くことが確認できたため、pyファイルにコードをフルコピーして実行したところディレクトリが見つからないというエラーがでました。 \nそこで、ipynbとpyのカレントディレクトリを確認(sample.ipynb, sample.py)すると1階層ずれていることがわかりました。\n\nディレクトリ確認のために実行したコードは以下のコードです。\n\n```\n\n import os\n print(os.getcwd())\n os.chdir('../')\n print(os.getcwd())\n \n```\n\n実行結果は、このようになりました。\n\n### sample.ipynb\n\n```\n\n d:\\Data\\XXX\\Python\n d:\\Data\\XXX\n \n```\n\n### sample.py\n\n```\n\n D:\\Data\\XXX\n D:\\Data\n \n```\n\nたしかにずれているのですが、両ファイルのディレクトリは同じ階層に存在します(以下参考)。\n\n```\n\n D:\n └─Data\n └─XXX\n └─Python\n ├─sample.ipynb\n └─sample.py\n \n```\n\n実行に関しては、移動の際、\"..\"を\".\"に変えるだけで動くので問題ないのですが、同じ階層にあるにもかかわらずディレクトリがずれることが気になって仕方ありません。 \nなぜ、このようなことになるのでしょうか。\n\n追記 \nどちらもVSCodeでおこないました。 \n.pyファイルは、VSCodeでデバッグ開始をクリックしました。\n\nsettings.jsonは以下となっております。\n\n### settings.json\n\n```\n\n {\n \"workbench.colorTheme\": \"Default Dark+\",\n \"python.linting.flake8Enabled\": true,\n \"editor.formatOnSave\": true,\n \"workbench.iconTheme\": \"material-icon-theme\",\n \"launch\": {\n \n \"configurations\": [],\n \"compounds\": []\n }\n }\n \n```",
"comment_count": 4,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T09:46:29.243",
"favorite_count": 0,
"id": "91661",
"last_activity_date": "2022-10-18T12:07:13.040",
"last_edit_date": "2022-10-18T11:33:00.960",
"last_editor_user_id": "54778",
"owner_user_id": "54778",
"post_type": "question",
"score": 0,
"tags": [
"python"
],
"title": ".pyファイルと.ipynbファイルでカレントディレクトリがずれるのはなぜ?",
"view_count": 233
} | [
{
"body": "`.ipynb` (Jupyter Notebook, JupyterLab) の場合 \nNotebookの位置するディレクトリではなく \nJupyterを起動したディレクトリ (Jupyter Kernelのディレクトリ)がカレントディレクトリです \n(以下の場合, jupyter labを起動した位置になる)\n\n```\n\n $ cd /home/USER/lang/Python\n $ jupyter lab\n \n```\n\n`.py`の場合もそれは同様 \n(以下の場合 `Python/sample.py`を実行してても, `getcwd()`は Python実行した位置)\n\n```\n\n ─home\n └─USER\n └─lang\n └─Python\n └─sample.py\n \n $ cd /home/USER/lang/\n \n $ python Python/sample.py\n /home/USER/lang\n /home/USER\n \n```\n\n* * *\n\n#### 追記\n\nVS Codeでの `.ipynb` は, (そのプロジェクト) ワークスペース の位置のはず",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T11:03:29.210",
"id": "91663",
"last_activity_date": "2022-10-18T12:07:13.040",
"last_edit_date": "2022-10-18T12:07:13.040",
"last_editor_user_id": "43025",
"owner_user_id": "43025",
"parent_id": "91661",
"post_type": "answer",
"score": 1
},
{
"body": "`os.getcwd()` が返す結果はあくまで **作業ディレクトリ** であり、必ずしも実行したプログラムの保存場所とは限りません。\n\n.py ファイル等と同じディレクトリにいる状態で実行すれば同じ結果になるでしょうが、実行の仕方次第で結果は変わってきます。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T11:38:46.197",
"id": "91665",
"last_activity_date": "2022-10-18T11:38:46.197",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "3060",
"parent_id": "91661",
"post_type": "answer",
"score": 0
}
] | 91661 | 91663 | 91663 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "Googleカレンダーにおいて、管理コンソールより \n会議室等のリソース登録が可能かと思います。\n\n他のシステムで保持するマスターデータを、リソース \nデータとしてAPI連携でデータを取り込むことはできます \nでしょうか。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T10:14:43.740",
"favorite_count": 0,
"id": "91662",
"last_activity_date": "2022-10-18T10:14:43.740",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54902",
"post_type": "question",
"score": 0,
"tags": [
"google-calendar-api"
],
"title": "Googleカレンダーのリソースのデータ登録について",
"view_count": 45
} | [] | 91662 | null | null |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "jupyter notebook上で.ipynbを開こう(view)としたところ、Something went wrong with displaying\nwebpage ということでページが開かれないエラーが発生しました。 \nterminal上ではkernelもスタートしていますし、別の.ipynbはviewで開けています。 \n結局、応急処置として、visual studio codeにて回しています。 \n対策として何ができるでしょうか?",
"comment_count": 3,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T11:14:24.757",
"favorite_count": 0,
"id": "91664",
"last_activity_date": "2022-10-18T11:40:55.940",
"last_edit_date": "2022-10-18T11:40:55.940",
"last_editor_user_id": "3060",
"owner_user_id": "54391",
"post_type": "question",
"score": 0,
"tags": [
"python",
"google-chrome",
"jupyter-notebook"
],
"title": "jupyter notebookの.ipynbがchrome上でloadできなくて困っています...。",
"view_count": 171
} | [] | 91664 | null | null |
{
"accepted_answer_id": "91668",
"answer_count": 1,
"body": "`nuxt ver:3.0.0-rc.11`\n\n以下の構成で、composableのfetchメソッドを呼び出すコンポーネントを作成し、 \npagesで2回呼び出したところ、APIリクエストを1回しかcallしません\n\n## tree\n\n```\n\n components: composable define fetch method call\n composable: callAPI fetch typescript\n pages: view page\n \n```\n\n### composable/api.ts\n\n```\n\n export const useAnalyze = async (body: object): Promise<string> => {\n const { data, pending, refresh, error } = await useAsyncData(\n 'key-analyze',\n () =>\n $fetch('/analyze', {\n method: 'POST',\n body: body,\n async onResponse({ request, response }) {\n console.log('FETCH', request, response.status)\n }\n }),\n {\n initialCache: false\n }\n )\n console.log('RESULT', data.value, error)\n \n return data.value\n }\n \n```\n\n### components/Parts.vue\n\n```\n\n <template>\n <div>\n {{ props.name }}:{{ resultValue }}\n </div>\n </template>\n <script lang=\"ts\" setup>\n \n interface PartsProps {\n name: string\n }\n const props = withDefaults(defineProps<PartsProps>(), {})\n \n const resultValue = ref('')\n onMounted(async() => {\n const result = await useAnalyze(props.name)\n resultValue.value = result\n })\n </script>\n \n```\n\n### pages/view.vue\n\n```\n\n <template>\n <div>\n <Parts :name='value1' />\n <Parts :name='value2' />\n </div>\n </template>\n \n```\n\n## result\n\nnetworkの情報を見たところ1回分のリクエストのみ行っています\n\n[](https://i.stack.imgur.com/Lfwpu.png)\n\n### log\n\nconsole.log FETCH :1行出力 \nconsole.log RESULT:2行出力\n\n2回リクエストを飛ばしてほしいのですが、こちらの解決方法を知ってる方がいればよろしくお願いします。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T13:27:00.590",
"favorite_count": 0,
"id": "91666",
"last_activity_date": "2022-10-18T16:46:56.073",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54904",
"post_type": "question",
"score": 0,
"tags": [
"nuxt.js"
],
"title": "nuxt3 2回fetchしても1回しかリクエストを飛ばさない",
"view_count": 312
} | [
{
"body": "`useAsyncData`のkeyを固定値にしてしまっているために見えます。\n\n> **key** : a unique key to ensure that data fetching can be properly de-\n> duplicated across requests. \n> \\-- [useAsyncData · Nuxt\n> Composables](https://v3.nuxtjs.org/api/composables/use-async-data/)\n\nとあるように、keyはそのリクエストの識別(サーバーとブラウザなと)につかわれ、多重リクエストの回避を担います。ブラウザ内で複数箇所から呼び出された場合も同様です。異なるリクエストに用いるのであれば、それぞれがユニークになるキーの設定が必要でしょう。\n\nもっとも、今回のケースにおいてuseAsyncDataの使用が適切なのかはわかりませんが。",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T16:46:56.073",
"id": "91668",
"last_activity_date": "2022-10-18T16:46:56.073",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "2376",
"parent_id": "91666",
"post_type": "answer",
"score": 0
}
] | 91666 | 91668 | 91668 |
{
"accepted_answer_id": "91672",
"answer_count": 2,
"body": "マルチスレッドでwebスクレイピングをしているのですが、リクエストに失敗してしまうことが多いです。 \nWindows 10の同時リクエスト数制限はいくつなんでしょうか? \nまた、変更することはできるのでしょうか?",
"comment_count": 7,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T21:39:50.433",
"favorite_count": 0,
"id": "91670",
"last_activity_date": "2022-10-20T21:06:52.197",
"last_edit_date": "2022-10-19T00:57:41.607",
"last_editor_user_id": "3060",
"owner_user_id": "37297",
"post_type": "question",
"score": -2,
"tags": [
"windows-10"
],
"title": "Windows 10 からの同時リクエスト数の制限はいくつか",
"view_count": 478
} | [
{
"body": "ご質問の本文から特定はできませんが、ポートの枯渇問題というのはよくある話なので、こちらのトラブルシューティングを参照してください。 \n[ポートの枯渇問題のトラブルシューティング](https://learn.microsoft.com/ja-jp/windows/client-\nmanagement/troubleshoot-tcpip-port-exhaust)\n\n問題が再現しているときに、netstat・イベントログを確認する。",
"comment_count": 7,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T00:15:29.887",
"id": "91672",
"last_activity_date": "2022-10-19T00:15:29.887",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "2238",
"parent_id": "91670",
"post_type": "answer",
"score": -1
},
{
"body": "htbさんの回答はWindowsのポート枯渇の観点で書かれていますが、WebSurferさんもコメントされているようにWindows側はポート枯渇していない可能性が高いです。\n\nそれとは別に昨今の日本のインターネット環境では **IPoE** (IPv4 over IPv6)\nが普及しています。IPoEの場合、実際のIPv4ポートを管理しているのはISP側であり、ポート枯渇対策のためISP側が同時コネクション数を制限している場合があります。制限方法もISPによって様々ですが、クライアントから見てレスポンスが遅く異様に待たされることもあります。その場合にクライアントはタイムアウトと判断することもあるかもしれません。\n\nIPoEの同時コネクション数制限か否かは、接続方式をPPPoEに切り替えることで判断できます。\n\n(FTPは1ファイル1コネクションなので、ftpクライアント開発では簡単に枯渇します…)\n\n* * *\n\n何にせよ、この質問は[XY問題](https://ja.meta.stackoverflow.com/q/2701/4236)であり、推測を重ねた上で質問(Windows\n10の同時リクエスト数制限)するのではなく、具体的に起こった問題(リクエストの失敗)を尋ねるべきです。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-20T21:06:52.197",
"id": "91703",
"last_activity_date": "2022-10-20T21:06:52.197",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "4236",
"parent_id": "91670",
"post_type": "answer",
"score": 2
}
] | 91670 | 91672 | 91703 |
{
"accepted_answer_id": "91876",
"answer_count": 1,
"body": "はじめて仮想環境を構築している際のエラーであり、つまり、一度も起動しません。 \n導入しようとしているOSはCent OS 8です。\n\n[](https://i.stack.imgur.com/KHSXV.png)\n\n```\n\n 仮想マシン\"CentOs 8\"のセッションを開けませんでした。 Not in a hypervisor partition (HVP=0)\n (VERR_NEM_NOT_AVAILABLE). VT-x is disabled in the BIOS for all CPU\n modes (VERR_VMX_MSR_ALL_VMX_DISABLED). 終了コード : E_FAIL (0x80004005)\n コンポーネント: ConsoleWrap インターフェース: IConsole\n {872da645-4a9b-1727-bee2-5585105b9eed}\n \n```\n\n### 試したこと\n\n * Hyper-V関連 \nもともとHyper-Vは無効にしていました。\n\n * VirtualBox\n\n再インストール、および、他のバージョンでの確認。 \n6.1.28は問題が生じるため、バージョンダウンを解決方法としているページもありました。 \n加えて、6.1.30で修正済みとの情報があったため、確認しましたが下記すべてで同じ現象です。\n\n6.1.26, 6.1.28, 6.1.40\n\n * Disable Device Guard and Credential Guard \n未定義だったため、無効化。\n\n * セキュリティツール \nESETが動作しているので、ファイヤーウォールとコンピュータ保護の無効化\n\n同様の現象が多いようで情報はたくさん見受けるのですが、解決に至りません。 \nなにか分かる方がいらっしゃいましたら、アドバイス願えますでしょうか。",
"comment_count": 10,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-18T23:36:10.897",
"favorite_count": 0,
"id": "91671",
"last_activity_date": "2022-10-28T08:23:57.050",
"last_edit_date": "2022-10-19T00:59:33.690",
"last_editor_user_id": "3060",
"owner_user_id": "32249",
"post_type": "question",
"score": 0,
"tags": [
"windows",
"virtualbox"
],
"title": "Windows10のVirtualBoxでのエラー",
"view_count": 283
} | [
{
"body": "自己レスです。 \nいろいろと勘違いがありました。 \nまず、検索で多く見かけるVirtualBoxの問題は6.1.28はHyper-Vと共存できない現象でした。 \nすでに数年前にVirtualBox側で解決しているようです。 \nこれを理解しておらず、Hyper-Vの有効無効を試していました。 \n試していませんが、Hyper-Vが有効であっても、動作しない状態だったと考えます。 \nコメントを参考にチェックしたところ、両方の土台になるVT-Xがハードウエア上で有効になっていなかったためです。 \nBIOSで有効化することで無事解決しました。 \n回答ではありませんでしたが、コメントいただいた方々ありがとうございました。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-28T08:23:57.050",
"id": "91876",
"last_activity_date": "2022-10-28T08:23:57.050",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "32249",
"parent_id": "91671",
"post_type": "answer",
"score": 0
}
] | 91671 | 91876 | 91876 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "非表示消耗型(バナー広告を排除)を実装したいのですが、ユーザーが購入したかを判断するのにcountを使っていたのですが、複数画面に反映すると処理が重くなってフリーズします。 \n皆さんは購入後の判定をどのようしてるのかやアドバイス知りたいです。 \n開発言語:swift \n広告:AdMob\n\n**ViewController**\n\n```\n\n import UIKit\n import GoogleMobileAds\n \n class ViewController: UIViewController,GADBannerViewDelegate,CatchProtcol {\n \n \n @IBOutlet weak var bannerView: GADBannerView!\n \n override func viewDidLoad() {\n super.viewDidLoad()\n \n }\n override func viewWillAppear(_ animated: Bool) {\n super.viewWillAppear(animated)\n \n //もしbuyというキー値に1という数字が入っていたら\n //購入済み = 広告を排除\n \n if let buy = UserDefaults.standard.object(forKey: \"buy\"){\n let count = UserDefaults.standard.object(forKey: \"buy\") as! Int\n if count == 1{\n \n bannerView.removeFromSuperview()\n \n }else{\n \n }\n \n \n }else{\n \n //広告を設定していく\n bannerView.adUnitID = \"広告ID\"\n bannerView.rootViewController = self\n bannerView.load(GADRequest())\n \n }\n \n }\n \n \n func catchData(count: Int) {\n \n if count == 1 {\n \n bannerView.removeFromSuperview()\n }\n \n }\n \n override func prepare(for segue: UIStoryboardSegue, sender: Any?) {\n \n let adRemoveVC = segue.destination as! AdRemoveViewController\n adRemoveVC.delegate = self\n \n } \n \n```\n\n**AdRemoveViewController**\n\n```\n\n import UIKit\n import SwiftyStoreKit\n \n \n protocol CatchProtcol {\n \n func catchData(count:Int)\n \n }\n \n class AdRemoveViewController: UIViewController {\n \n @IBOutlet weak var removeButton: UIButton!\n @IBOutlet weak var restoreButton: UIButton!\n \n \n var delegate:CatchProtcol?\n \n var count:Int = 0\n \n override func viewDidLoad() {\n super.viewDidLoad()\n }\n \n \n @IBAction func removeAdAction(_ sender: Any) {\n \n purchase(PRODUCT_ID: \" \")\n }\n \n \n \n func purchase(PRODUCT_ID:String){\n \n SwiftyStoreKit.purchaseProduct(PRODUCT_ID) { (result) in\n \n switch result{\n \n case .success(_):\n \n //ここに書く\n //購入が成功したとき\n \n if let buy = UserDefaults.standard.object(forKey: \"buy\"){\n let count = UserDefaults.standard.object(forKey: \"buy\") as! Int\n \n }else{\n \n self.count = 1\n UserDefaults.standard.set(1, forKey: \"buy\")\n }\n \n \n self.verifyPurchase(PRODUCT_ID:PRODUCT_ID)\n \n self.delegate?.catchData(count: self.count)\n self.dismiss(animated: true, completion: nil)\n \n break\n case .error(let error):\n print(error)\n \n break\n }\n \n \n }\n \n \n }\n \n func verifyPurchase(PRODUCT_ID:String){\n //共有シークレット リストア\n let appeValidator = AppleReceiptValidator(service: .production, sharedSecret: \" \")\n SwiftyStoreKit.verifyReceipt(using: appeValidator) { (result) in\n \n switch result{\n case .success(let receipt):\n let purchaseResult = SwiftyStoreKit.verifyPurchase(productId: PRODUCT_ID, inReceipt: receipt)\n switch purchaseResult{\n case.purchased:\n //リストア成功\n self.count = 1\n UserDefaults.standard.set(1, forKey: \"buy\")\n break\n case .notPurchased:\n //リストアされていない場合\n \n UserDefaults.standard.set(nil, forKey: \"buy\")\n break\n \n }\n case .error(let error):\n break\n }\n \n }\n \n \n }\n \n \n @IBAction func restore(_ sender: Any) {\n \n //リストア機能\n \n SwiftyStoreKit.restorePurchases { (results) in\n if results.restoreFailedPurchases.count > 0{\n //リストア失敗\n \n }else if results.restoredPurchases.count > 0{\n //リストア成功\n UserDefaults.standard.set(1, forKey: \"buy\")\n self.count = 1\n self.dismiss(animated: true, completion: nil)\n }else{\n \n //リストアするものがない\n }\n }\n \n }\n \n \n \n }\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T01:03:51.230",
"favorite_count": 0,
"id": "91673",
"last_activity_date": "2022-10-19T01:03:51.230",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "54896",
"post_type": "question",
"score": 0,
"tags": [
"swift",
"xcode",
"admob"
],
"title": "Swift 広告排除について",
"view_count": 56
} | [] | 91673 | null | null |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "API Gatewayでメッセージを返すだけのAPIを作成しました。\n\nLambdaのブループリント(API Gateway custom user\nauthorizer)を使ってオーソライザー用のLamda関数を作成して動作することを確認しました。\n\n[API Gateway コンソールを使用した Lambda\nオーソライザーの設定](https://docs.aws.amazon.com/ja_jp/apigateway/latest/developerguide/configure-\napi-gateway-lambda-authorization-with-\nconsole.html)の手順に従ってAPIにオーソライザを設定すると下記のエラーがでます。\n\n```\n\n Invalid token source expression: method.request.header.. The source must be a method request header, matching 'method.request.header.[a-zA-Z0-9._-]+'\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T01:54:22.243",
"favorite_count": 0,
"id": "91674",
"last_activity_date": "2023-01-25T23:54:22.090",
"last_edit_date": "2023-01-25T23:54:22.090",
"last_editor_user_id": "19110",
"owner_user_id": "5285",
"post_type": "question",
"score": 0,
"tags": [
"aws",
"aws-lambda",
"aws-api-gateway"
],
"title": "API Gatewayにオーソライザーを設定できない。",
"view_count": 225
} | [
{
"body": "`オーソライザー`の設定画面で`トークンのソース`にLambdaにトークンを渡すパラメータ名を設定していなかったことが原因でした。\n\nオーソライザーを適用するパスを設定するのだと勘違いして`/foo/*`のような設定も同様なエラーになります。\n\n初歩的な間違いでした。。",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-21T00:11:51.703",
"id": "91705",
"last_activity_date": "2022-10-21T00:11:51.703",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "5285",
"parent_id": "91674",
"post_type": "answer",
"score": 0
}
] | 91674 | null | 91705 |
{
"accepted_answer_id": null,
"answer_count": 1,
"body": "kubernetes を使用しております。 \nGitHub から docker build して docker hub にアップロードするところは自前で用意できます。 \nしかし、pod の作成と更新を自動化したいのですが、どのようなツールがありますか? \n例えば Circle CI はどうでしょうか?\n\nまたは k8s ライブラリを使用して、pod を更新することは可能でしょうか?",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T03:42:34.447",
"favorite_count": 0,
"id": "91675",
"last_activity_date": "2023-03-02T01:12:15.007",
"last_edit_date": "2022-10-20T00:35:05.693",
"last_editor_user_id": "3060",
"owner_user_id": "54909",
"post_type": "question",
"score": 0,
"tags": [
"kubernetes"
],
"title": "kubernetes で pod の作成と更新を自動化したい",
"view_count": 54
} | [
{
"body": "私はGitLab + Jenkins + ArgoCDを利用して自動でPod作成,更新できるよう構築しました。 \nCircleCIでも同じことができるはずなので、可能かと思います。\n\n私は以下のように構築しています。\n\nJenkinsジョブにて以下3点実施\n\n 1. docker build\n 2. docker hubへのアップロード\n 3. GitLabで管理しているマニフェストのイメージ部の更新\n\nArgoCDにて以下実施\n\n 1. GitLabのマニフェストファイルの監視\n 2. 更新があれば自動で適用する\n\nGithub + CircleCI + ArgoCDの場合であれば、CircleCIが出しているこちらの記事が参考になるかと思います。 \n<https://circleci.com/ja/blog/gitops-argocd/>",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2023-02-28T16:18:48.883",
"id": "94043",
"last_activity_date": "2023-03-02T01:12:15.007",
"last_edit_date": "2023-03-02T01:12:15.007",
"last_editor_user_id": "3060",
"owner_user_id": "57326",
"parent_id": "91675",
"post_type": "answer",
"score": 0
}
] | 91675 | null | 94043 |
{
"accepted_answer_id": "91677",
"answer_count": 1,
"body": "下記のデータフレーム(df)で \n`glm(BP ~ age + sex + BMI, data = df)` を実施しています。 \nデータフレームをそのままでグループ別(sex)に分析する方法はありますか?\n\n**対象のデータフレーム:**\n\n```\n\n ID age sex BP BMI\n 1 43 0 120 21\n 2 62 1 130 26\n 3 54 1 132 23\n 4 55 0 110 19\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T04:49:42.510",
"favorite_count": 0,
"id": "91676",
"last_activity_date": "2022-10-20T02:38:51.117",
"last_edit_date": "2022-10-20T02:38:51.117",
"last_editor_user_id": "47127",
"owner_user_id": "54886",
"post_type": "question",
"score": 1,
"tags": [
"r",
"tidyverse",
"rstudio"
],
"title": "Rstudioでグループ別のglmを教えてください",
"view_count": 85
} | [
{
"body": "dplyr を使う場合。\n\n```\n\n suppressMessages(library(dplyr))\n \n df <- data.frame(\n ID = 1:4, age = c(43, 62, 54, 55), sex = c(0, 1, 1, 0),\n BP = c(120, 130, 132, 110), BMI = c(21, 26, 23, 19)\n )\n \n result <- df %>% group_by(sex) %>% do(model = glm(BP ~ age + sex + BMI, data = .))\n \n result$sex\n result$model\n \n```\n\n> summary()を使用した結果もグループ別に見たい\n\n`purrr` ライブラリの `map` を使う場合。\n\n```\n\n library(purrr)\n \n result$model %>% map(summary)\n \n```\n\n**追記**\n\n> グループ別にモデルに出力は可能ですか\n\n少し趣向が異なるかもしれませんが、`names()` でそれぞれに名前を付けることができます。\n\n```\n\n names(result$model) = c(\"men\", \"women\")\n result$model$men\n result$model$women\n \n```",
"comment_count": 6,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T05:13:32.663",
"id": "91677",
"last_activity_date": "2022-10-19T06:29:56.367",
"last_edit_date": "2022-10-19T06:29:56.367",
"last_editor_user_id": "47127",
"owner_user_id": "47127",
"parent_id": "91676",
"post_type": "answer",
"score": 0
}
] | 91676 | 91677 | 91677 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "以下のような構成でnpm workspaceを利用しています\n\n```\n\n .\n ├── package.json\n └── packages\n ├── app\n │ ├── application1\n │ │ └── package.json\n │ └── application2\n │ └── package.json\n └── modules\n └── package.json\n \n```\n\n`app`ディレクトリには、それぞれReactアプリケーションが含まれており、`modules`パッケージには、それぞれのアプリケーションで共通に利用するComponentやCustom\nHookが含まれています。\n\nアプリケーション上で定義されたContextを、modules側のCustom\nHook内で利用しようとすると上手く動かず、常に`createContext`した時のデフォルト値が返ってきます。\n\n`useContext`は、外部パッケージでは動かない仕様なのでしょうか? \n動かす方法はあるのでしょうか?",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T07:10:28.333",
"favorite_count": 0,
"id": "91678",
"last_activity_date": "2022-10-19T07:15:46.997",
"last_edit_date": "2022-10-19T07:15:46.997",
"last_editor_user_id": "7616",
"owner_user_id": "7616",
"post_type": "question",
"score": 0,
"tags": [
"reactjs"
],
"title": "npm workspace利用時にuseContextが動かない",
"view_count": 39
} | [] | 91678 | null | null |
{
"accepted_answer_id": "91689",
"answer_count": 1,
"body": "### 解決したいこと\n\nシミュレーションデータの元データからある条件以上を抽出し←「こちらは完了している」\n\nそのデータをクラスタリングして訪問先の抽出を行おうとしているのですがここでエラーが起きてしまいました\n\n### 実行環境\n\n・Excelに元データがある \n・コマンドプロンプトでpythonを開く \n・メモ帳にプログラミングを書きhoge.pyで保存 \n・コマンドプロンプトで実行\n\n### 発生している問題・エラー\n\n```\n\n C:\\datasyori>python hoge.py\n latitude longitude\n 0 35.693590 139.712202\n 1 35.693497 139.712096\n 2 35.693217 139.712261\n 3 35.693549 139.712430\n 4 35.693621 139.712501\n Traceback (most recent call last):\n File \"C:\\Users\\mable\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\pandas\\core\\indexing.py\", line 769, in _validate_tuple_indexer\n self._validate_key(k, i)\n File \"C:\\Users\\mable\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\pandas\\core\\indexing.py\", line 1378, in _validate_key\n raise ValueError(f\"Can only index by location with a [{self._valid_types}]\")\n ValueError: Can only index by location with a [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, boolean array]\n \n The above exception was the direct cause of the following exception:\n \n Traceback (most recent call last):\n File \"C:\\datasyori\\hoge.py\", line 95, in <module>\n Cn = C.iloc[Tn,0]\n File \"C:\\Users\\mable\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\pandas\\core\\indexing.py\", line 961, in __getitem__\n return self._getitem_tuple(key)\n File \"C:\\Users\\mable\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\pandas\\core\\indexing.py\", line 1458, in _getitem_tuple\n tup = self._validate_tuple_indexer(tup)\n File \"C:\\Users\\mable\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\pandas\\core\\indexing.py\", line 771, in _validate_tuple_indexer\n raise ValueError(\n ValueError: Location based indexing can only have [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types\n \n```\n\n### 該当するソースコード\n\n```\n\n #訪問先の抽出\n \n from matplotlib import pyplot as plt\n from sklearn import datasets, preprocessing\n from sklearn.cluster import KMeans\n import numpy as np\n import pandas as pd\n import cartopy.crs as ccrs\n import cartopy.io.shapereader as shpreader\n \n pd.set_option('display.max_rows',600)\n #前処理後のcsvを読み込み\n yomi=pd.read_csv(\"simulationkai.csv\")\n df=pd.read_csv(\"simulationkai.csv\",usecols=[\"longitude\",\"latitude\"])\n \n # DataFrameに変換\n print(df.head())\n # データの整形\n X = df\n \n \n # クラスタリング\n cls = KMeans(n_clusters=4)\n \n result = cls.fit(X)\n X['cluster'] = result.labels_\n PC= pd.DataFrame(X['cluster'])\n PC\n df.head()\n #yomiのデータフレームにcluster(クラスタ番号)を追加する\n yomi['cluster_id']=PC\n yomi\n \n #yomi(元データにクラスタ番号を追加したもの)をallclsdata.csvに保存する\n yomi.to_csv(\"allclsdata.csv\")\n \n D = X.sort_values(by=\"cluster\")\n D = D.drop_duplicates(subset='cluster')\n D\n # 各クラスタ内のデータ数をカウント\n V = X['cluster'].value_counts()\n V\n # 各クラスタの番号とデータ数をclsvalue.csvに保存\n V.to_csv(\"clsvalue.csv\")\n \n \n # クラスタの重心確認\n C = pd.DataFrame(result.cluster_centers_)\n C\n \n C.iloc[0, :]\n \n \n lat= X['latitude'].tolist()\n lon= X['longitude'].tolist()\n \n clat=C[0].tolist()\n clon=C[1].tolist()\n \n \n #から1800までのクラスタのデータからそれぞれ同じ被験者の重複を省いてデータ人数を取得して順番にCSVにまとめる\n from csv import writer\n #pp = pd.DataFrame\n #ppi = pd.DataFrame\n #yomiからWhile文でN番目のクラスタのデータのみ抽出\n i = 0\n while i <= 3:\n yomic = yomi[yomi['cluster_id']== i]\n #N番目のクラスタdfから被験者idの重複を消す\n yomics = yomic.drop_duplicates(subset=[\"id_questionnaire\"])\n #N番目の加工後データの行数をCSVに付け足す\n #file = [i,len(yomics)]\n #ppi = pp.append([file], ignore_index=True)\n #ppi.to_csv(\"pp.csv\")\n list_data=[i,len(yomics)]\n with open('pp.csv', 'a', newline='') as f_object: \n writer_object = writer(f_object)\n writer_object.writerow(list_data) \n f_object.close()\n i = i + 1\n #else:\n #ppi.to_csv(\"pp.csv\") \n \n #pp.csv内の人数を降順にしたものをpps.csvに保存\n PP = pd.read_csv(\"pp.csv\",names=[\"cls\",\"people\"])\n T = PP.sort_values(by=[\"people\"],ascending=False)\n T.to_csv(\"pps.csv\")\n PP.to_csv(\"pp.csv\")\n \n #pps.csvの上から順番にクラスタ番号を引き出してその番号の座標をCから引き出す\n num = 0\n while num <= 3:\n Tn = T.iloc[num,0]\n #Tno = Tn + 1\n Cn = C.iloc[Tn,0]\n Cn2 = C.iloc[Tn,1]\n list_data2=[Tn,Cn,Cn2]\n with open('point.csv', 'a', newline='') as f_object: \n writer_object = writer(f_object)\n writer_object.writerow(list_data2) \n f_object.close()\n num = num + 1 \n \n dfh = pd.read_csv(\"point.csv\",names=[\"cluster_id\",\"latitude\",\"longitude\"])\n B = pd.read_csv(\"pps.csv\",usecols=[\"people\"])\n #dfh2= pd.DataFrame(B['people'])\n dfh['people']= B\n dfh.to_csv(\"point.csv\")\n \n```\n\n### 自分で試したこと\n\nCnの値に対しての型がエラーが起きているようなのですが勉強不足でよく理解できていないです\n\n### 補足情報\n\nPython 3.10.4 (tags/v3.10.4:9d38120, Mar 23 2022, 23:13:41) [MSC v.1929 64 bit\n(AMD64)] on win32",
"comment_count": 4,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T09:45:42.343",
"favorite_count": 0,
"id": "91679",
"last_activity_date": "2022-10-20T07:23:42.987",
"last_edit_date": "2022-10-20T00:22:56.740",
"last_editor_user_id": "3060",
"owner_user_id": "54916",
"post_type": "question",
"score": 0,
"tags": [
"python"
],
"title": "pythonでK-meansクラスタリングしたいがエラーが出る: ValueError: Can only index by location with a [integer, ...]",
"view_count": 165
} | [
{
"body": "まず,エラー情報ですが 95行目の\n\n```\n\n Cn = C.iloc[Tn,0]\n \n```\n\nで発生し,内容は「位置情報ベースのインデキシング( .iloc[]\n)は『整数,整数スライス,整数リスト,ブール型配列』のみ受け(入れ)ることができる」です。 \nそこで, 95行目の直前に\n\n```\n\n print(num, Tn, type(Tn))\n \n```\n\nを挿入して,適当に入力データ(simulationkai.csv)を作って実行してみたところ,以下のことがわかりました。 \n・1回目の実行ではエラーは発生せず, Tnは整数値(1, 0, 2, 3) \n・2回目以降の実行ではエラーが発生し, Tnは str型(文字列)の 'cls' \nこのことから,恐らく1回目に実行した際に作られた csvファイルが影響していると考え, Tn -> T -> PP -> pp.csv と遡って 76行目の\n\n```\n\n with open('pp.csv', 'a', newline='') as f_object:\n \n```\n\nに辿り着きました。そして,この行が whileループの初回(i = 0)でも実行されているために,過去に作られた pp.csv\nに追記('a')しているようです。そこで,下記のように whileループの初回のみ上書き('w')になるように変更したところエラーは発生しなくなりました。\n\n```\n\n with open('pp.csv', 'w' if i == 0 else 'a', newline='') as f_object:\n \n```",
"comment_count": 4,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-20T06:48:18.423",
"id": "91689",
"last_activity_date": "2022-10-20T07:23:42.987",
"last_edit_date": "2022-10-20T07:23:42.987",
"last_editor_user_id": "54588",
"owner_user_id": "54588",
"parent_id": "91679",
"post_type": "answer",
"score": 0
}
] | 91679 | 91689 | 91689 |
{
"accepted_answer_id": null,
"answer_count": 0,
"body": "package.json に書かれている特定のライブラリのバージョンだけあげる方法はありますか>\n\npackage.json を書き治し\n\n```\n\n yarn install\n \n```\n\n```\n\n ed lock files. To clear this warning, remove package-lock.json.\n [1/4] Resolving packages...\n [2/4] Fetching packages...\n [3/4] Linking dependencies...\n warning \" > @testing-library/[email protected]\" has unmet peer dependency \"@testing-library/dom@>=7.21.4\".\n warning \"react-dnd > [email protected]\" has incorrect peer dependency \"react@^0.14.0 || ^15.0.0 || ^16.0.0\".\n warning \" > [email protected]\" has incorrect peer dependency \"react@^0.14.0 || ^15.0.0-0 || ^16.0.0-0\".\n warning \"react-scripts > @typescript-eslint/eslint-plugin > [email protected]\" has unmet peer dependency \"typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta\".\n warning \" > [email protected]\" has incorrect peer dependency \"react-dnd@^14.0.2\".\n warning \" > [email protected]\" has incorrect peer dependency \"react-dnd-html5-backend@^14.0.0\".\n \n```",
"comment_count": 1,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T17:05:20.270",
"favorite_count": 0,
"id": "91681",
"last_activity_date": "2022-10-20T00:12:32.953",
"last_edit_date": "2022-10-20T00:12:32.953",
"last_editor_user_id": "19110",
"owner_user_id": "44839",
"post_type": "question",
"score": 0,
"tags": [
"yarn"
],
"title": "Yarn で特定のライブラリのバージョンだけ上げたい",
"view_count": 64
} | [] | 91681 | null | null |
{
"accepted_answer_id": null,
"answer_count": 2,
"body": "**前提** \n失礼いたします。 \nPHP初心者です。 \n現在ECサイトを作るため、商品一覧ページを作成しています。\n\n**実現したいこと** \nデータベースに格納しているデータを配列で取得したい。\n\n**発生している問題・エラーメッセージ** \n配列で取得しようとしたところ、1文字の文字列しか取得できません。\n\n**例**\n\n```\n\n var_dump($pro_name[[0])\n \n //結果\n 「item1」という名前の「i」だけ出力される\n \n```\n\n**該当のソースコード**\n\n```\n\n <?php\n $dsn='mysql:dbname=shop;host=localhost;charset=utf8';\n $user='root';\n $password='';\n $dbh=new PDO($dsn,$user,$password);\n $dbh->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);\n \n $sql='SELECT name,price,image FROM mst_product ';\n $stmt=$dbh->prepare($sql);\n $stmt->execute();\n \n $rec=$stmt->fetch(PDO::FETCH_BOTH);\n $pro_name=$rec['name'];\n $pro_price=$rec['price'];\n $pro_image_name=$rec['image'];\n \n \n \n $dbh=null;\n \n \n ?>\n <!DOCTYPE html>\n <html lang=\"ja\">\n <head>\n <meta charset=\"UTF-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <link rel=\"stylesheet\" href=\"/css/style.css\">\n <title></title>\n </head>\n <body>\n \n <div class=\"inner-wrap\">\n <h2 class=\"itemarea-list\">商品一覧</h2>\n <div class=\"item-area\">\n \n \n <div class =\"item-area-item\">\n <?php for($i=0;$i<10;$i++)\n {\n ?>\n <?php echo $pro_image_name[$i].'<br>'; ?>\n <?php echo $pro_name[$i].'<br>';?> \n <?php echo $pro_price[$i].'<br>'; ?>\n <?php\n }\n ?>\n </div>\n \n </div>\n </div>\n <br>\n <a href=\"shop_cartlook.php\">カートを見る</a>\n </body>\n </html>\n \n```\n\n**試したこと** \n$rec=$stmt->fetch(PDO::FETCH_BOTH);を(PDO::FETCH_ASSOC)やfetchallにしてみましたが変わらずでした。 \nお手数ですがどなたかご教示のほどよろしくお願いいたします。",
"comment_count": 2,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-19T19:13:59.900",
"favorite_count": 0,
"id": "91682",
"last_activity_date": "2023-05-26T16:25:53.217",
"last_edit_date": "2022-10-20T00:14:54.560",
"last_editor_user_id": "19110",
"owner_user_id": "40610",
"post_type": "question",
"score": 0,
"tags": [
"php"
],
"title": "PHPでデータベースから配列で取得したいが、一文字しか取得できない",
"view_count": 128
} | [
{
"body": "変数が配列でなければ、オフセットアクセスアクセスせずに \n普通に`var_dump($pro_name)`とすれば文字列が出力されます。\n\n$pro_name[0]のように、文字列の格納された変数を配列の様にオフセットアクセスすると1文字ずつ文字を取り出す事ができます。 \n<https://www.php.net/manual/ja/language.types.string.php#language.types.string.substr>",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2022-10-20T09:03:22.220",
"id": "91694",
"last_activity_date": "2022-10-20T09:03:22.220",
"last_edit_date": null,
"last_editor_user_id": null,
"owner_user_id": "22793",
"parent_id": "91682",
"post_type": "answer",
"score": 3
},
{
"body": "```\n\n $rec=$stmt->fetchAll(PDO::FETCH_BOTH);\n \n```\n\n上記、fetchAllで全部取っておいて、下記3つは不要\n\n```\n\n $pro_name=$rec['name']; // 不要\n $pro_price=$rec['price']; // 不要\n $pro_image_name=$rec['image']; // 不要\n \n```\n\nで出力はこんな感じで回せば良いです。\n\n```\n\n <?php echo $rec[$i]['name'].'<br>'; ?>\n <?php echo $rec[$i]['plice'].'<br>'; ?>\n <?php echo $rec[$i]['image'].'<br>'; ?>\n \n```\n\nそれかもうこれだけ\n\n```\n\n while ($rec = $stmt->fetchAll(PDO::FETCH_ASSOC)) { \n <?php echo $rec['name'].'<br>'; ?>\n <?php echo $rec['plice'] .'<br>'; ?>\n }\n \n```",
"comment_count": 0,
"content_license": "CC BY-SA 4.0",
"creation_date": "2023-05-26T13:52:44.793",
"id": "94986",
"last_activity_date": "2023-05-26T16:25:53.217",
"last_edit_date": "2023-05-26T16:25:53.217",
"last_editor_user_id": "3060",
"owner_user_id": "58462",
"parent_id": "91682",
"post_type": "answer",
"score": 0
}
] | 91682 | null | 91694 |
Subsets and Splits