並び順

ブックマーク数

期間指定

  • から
  • まで

121 - 133 件 / 133件

新着順 人気順

renameの検索結果121 - 133 件 / 133件

  • How do I rename an open file in Emacs?

    Is there a way to rename an open file in Emacs? While I'm viewing it? Something like save-as, but the original one should go away.

      How do I rename an open file in Emacs?
    • Easily rename your Git default branch from master to main

      The Internet Engineering Task Force (IETF) points out that "Master-slave is an oppressive metaphor that will and should never become fully detached from history" as well as "In addition to being inappropriate and arcane, the master-slave metaphor is both technically and historically inaccurate." There's lots of more accurate options depending on context and it costs me nothing to change my vocabul

      • Rename Pandas DataFrame Index

        I've a csv file without header, with a DateTime index. I want to rename the index and column name, but with df.rename() only the column name is renamed. Bug? I'm on version 0.12.0 In [2]: df = pd.read_csv(r'D:\Data\DataTimeSeries_csv//seriesSM.csv', header=None, parse_dates=[[0]], index_col=[0] ) In [3]: df.head() Out[3]: 1 0 2002-06-18 0.112000 2002-06-22 0.190333 2002-06-26 0.134000 2002-06-30 0

          Rename Pandas DataFrame Index
        • 窓の杜 - 【Review NEWS】指定したフォルダ内のファイル名をエディターなどで一括変更「E-Rename」

          指定したフォルダ内のファイル名をテキストエディターなどで一括変更できるツール「E-Rename」v1.2が、3月19日に公開された。Windows 95以降に対応するフリーソフトで、編集部で試用したところWindows XPでの動作を確認した。現在作者のホームページからダウンロードできる。 「E-Rename」は、指定したフォルダ内のファイル名をTXTまたはCSV形式で出力し、テキストエディターなどで一括変更できるようにするツール。ファイル名を変更したいファイルのあるフォルダと出力形式を指定し、画面右下の[編集]ボタンを押すとフォルダ内の全ファイル名が1行ごとに記述された状態で、TXT/CSV形式に関連付けられたエディターなどのソフトが起動する。変更したいファイル名を書き換えて保存後、[適用]ボタンを押すとファイル名が変更される仕組み。また、ファイル名のほかにフォルダのフルパスや拡張子の種

          • Tiiduka ☮️4Ukraine on Twitter: "今回の青識亜論凍結騒動でわかった青識の二面性。 裏垢ではフェミ担当してました。 https://t.co/dytxF8J6Hq 旧:@kitanoenishi ←renameする前のフェミ垢 現:@Frozen_Sealion… https://t.co/AO9HOlN1T4"

            今回の青識亜論凍結騒動でわかった青識の二面性。 裏垢ではフェミ担当してました。 https://t.co/dytxF8J6Hq 旧:@kitanoenishi ←renameする前のフェミ垢 現:@Frozen_Sealion… https://t.co/AO9HOlN1T4

              Tiiduka ☮️4Ukraine on Twitter: "今回の青識亜論凍結騒動でわかった青識の二面性。 裏垢ではフェミ担当してました。 https://t.co/dytxF8J6Hq 旧:@kitanoenishi ←renameする前のフェミ垢 現:@Frozen_Sealion… https://t.co/AO9HOlN1T4"
            • Rename files during upload within Wordpress backend

              But it would really be easier to do that before uploading files. Not quite sure about that - this seems fairly easy; /** * @link http://stackoverflow.com/a/3261107/247223 */ function so_3261107_hash_filename( $filename ) { $info = pathinfo( $filename ); $ext = empty( $info['extension'] ) ? '' : '.' . $info['extension']; $name = basename( $filename, $ext ); return md5( $name ) . $ext; } add_filter(

                Rename files during upload within Wordpress backend
              • VSCodeでPerlのコードのRename Symbol機能を提供する拡張機能を書いた - 私が歌川です

                VSCodeには Rename Symbol っていって、変数やメソッドの名前を一括変更する機能があるのだけれど、これをPerlでも使えるようにしたい。ということで、できたものがこちらになります。 marketplace.visualstudio.com App::PRTとApp::EditorToolsを手元にインストールしてからご利用ください。 メソッド名を変える App::PRTは id:hitode909 さんが作ったPerlのリファクタリングツールで、メソッドのリネームなどを安全に行うことができる。 App::PRTを使えばコマンドを叩くだけでリファクタリング成功するのでなんかうまく使えないか、ということで休日を潰して実装した。 提供されているAPIのインタフェースを見るに、ほんとうは、どのトークンを書き換えたらよいかを列挙してreplaceする、ということが求められているのだと

                  VSCodeでPerlのコードのRename Symbol機能を提供する拡張機能を書いた - 私が歌川です
                • Rename powershell.exe to pwsh.exe by SteveL-MSFT · Pull Request #5101 · PowerShell/PowerShell

                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                    Rename powershell.exe to pwsh.exe by SteveL-MSFT · Pull Request #5101 · PowerShell/PowerShell
                  • 「git rename」を使用してGitのブランチ名を変更する方法

                    「git rename」を使用してGitのブランチ名を変更する方法 どんなソフトウェアやウェブアプリケーションを開発するにしても、ワークフローにGitを組み込むことは、ほぼ必須の要件となっています。 特にチームでのコーディングとなると、分散バージョン管理システムが間違いのない選択肢です。Gitはシンプルなコマンドをいくつも備えており、すぐに使いこなすことができます。しかし、必ずしも直感的とは言えません。 ブランチでgit renameのような操作を行う場合には、慎重に手順を検討する必要があります。 チームワークには十分なコミュニケーションが必須であり、ブランチ名には、公開する以上、十分な説明と明確さが求められます。素早く効率的に仕事をこなす中でも、これをしっかりと意識する必要があるのです。そのため、ブランチ名について、プロジェクトを進める中で細かな調整が必要になることは決して珍しくないでし

                      「git rename」を使用してGitのブランチ名を変更する方法
                    • ファイル名の一括変更作業を楽にしてくれる『Better Rename』:ちょっと高めだけど買うべきなの? | ライフハッカー・ジャパン

                      OS X: 生産性アプリの中には値段が少々「高め」のものも存在します。複数ファイルの名前変更にとても便利なアプリ『Better Rename』もそんなものの一つです。 Better Renameが必要な人は? 複数ファイルの名前を変更したい場合は一般的にAutomatorでアクションを設定して実行します。 この方法だと全てが正しく機能するまでに何度かやり直す必要がある場合もよくあります。色々と試してみた挙げ句、最終的には19.95USドル(2013年6月16日現在)という高額を支払ってBetter Renameを購入することにしました。 同アプリはとても簡単に多くのファイルを一括名前変更できます。画像やテキストファイル、MP3ファイルなど頻繁に大量のファイルの管理している人にとっては、削減してくれる作業量を考えると値段相応の価値があるのかもしれません。 Better Renameのクールな

                        ファイル名の一括変更作業を楽にしてくれる『Better Rename』:ちょっと高めだけど買うべきなの? | ライフハッカー・ジャパン
                      • Rename react/lib/* to react/private/* · Issue #6460 · facebook/react

                        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                          Rename react/lib/* to react/private/* · Issue #6460 · facebook/react
                        • How do I rename an mdadm raid array?

                          I have assembled a new raid array to replace an old one. However, this new array got assigned an automatic name of /dev/md127 and I want to rename it to /dev/md3, so that I don't have to change various other settings. How do I rename an mdadm raid array?

                            How do I rename an mdadm raid array?
                          • Auto Rename Tag - Visual Studio Marketplace

                            Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter. Auto Rename Tag Automatically rename paired HTML/XML tag, same as Visual Studio IDE does. Sponsors Increase your coding productivity with Tabnine’s AI code completions! Tabnine is a free powerful Artificial Intelligence assistant designed to help you code faster, reduce mistakes, and discover best coding practices -

                              Auto Rename Tag - Visual Studio Marketplace