LoginSignup
0
0

20240409 日記 開発環境構築、RR-automate開発

Posted at

環境構築

コマンドでWindowsをスリープさせる方法

キーボードからなるべく指を離したくないという気持ちから探してみた

> RUNDLL32.exe POWRPROF.DLL SetSuspendState Sleep.

これでできる

参考: Windows 11 PCをスリープさせる方法 - TheFastCode

lazygitをいれた

が、Neovimのtoggletermから開くと<esc>がnvimの<esc>とぶつかってしまう
タブもぶつかる
いろいろキーマップを変えないと

Oil.nvim

Windowsで使えない?と思ったがそこにwslで作ったシンポリックリンクがあったのが原因だった
簡単にファイルを作ったり名前変更できるのはいいけどディレクトリをまたいだ操作はできないのがちょっと残念

RR-automate開発

だいぶきれいになったのでそろそろデッキの集計機能を作ろうと思う

デッキをさくっと作るために、テストデッキのYMLファイルを作る
そして、デッキが正しく読み込まれるかのテスト
デッキ集計をできるかのテスト

そんな感じに進めていこう

今できたのはこんなの

deck.yml
decks:
  -
    hero:
      name: Zeus
      level: 20
    units:
      -
        name: Riding Hood
        level: 15
        talents:
          -
            rank: 1
            name: Alpha Wolf
          -
            rank: 2
            name: Wound Licking
          -
            rank: 3
            name: Neutralization
          -
            rank: 4
            name: Treats for Grandma
      -
        name: Knight Status
        level: 15
        talents:
          -
            rank: 1
            Name: Sharpened Spear
          -
            rank: 2
            name: Barrier
          -
            rank: 3
            name: Stone Legion
          -
            rank: 4
            name: Soul of a Warrior
      -
        name: Dryad
        level: 15
        talents:
          -
            rank: 1
            name: Fairy of Rage
          -
            rank: 2
            name: Gift of Nature
          -
            rank: 3
            name: Poisonous Fruit
          -
            rank: 4
            name: Spirits of the Forest
      -
        name: Witch
        level: 15
      -
        name: Trapper
        level: 15

Witchのタレントは省略
才能によって、Toxic=True/Falseあるし、なかなか面白そう

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0