2021-05-25から1日間の記事一覧

Error: EACCES: permission denied, rename ''

VSCode でWSL2リモート接続で作業中にファイル名なりディレクトリ名なり変更しようとするとpermission denied. gamaspecial@GAMANS-AM:~/rails-6.1-tools/app$ mv libs lib gamaspecial@GAMANS-AM:~/rails-6.1-tools/app$ ls assets channels controllers he…

WIP: ruby StringIO からのStream処理での最適なエンコード方法がわからない

io.string.encode('CP932', 'UTF-8') これはやりたくない、、、 class StringIO (Ruby 3.0.0 リファレンスマニュアル) set_encoding(ext_enc) -> self[permalink][rdoc][edit] set_encoding(ext_enc, int_enc) -> self set_encoding(ext_enc, int_enc, opt) …

WIP: StringIO, set_encoding

docs.ruby-lang.org # cp932 io = ... io.string.encoding -> UTF-8 io = get_s3_client.get_object({ bucket: "bucket", key: "key", :response_content_encoding => 'CP932', :response_content_type => 'text/csv' }).body # :response_content_encoding …