2023-07-01から1ヶ月間の記事一覧

Face-Off: The Greyson VS Greyson Drum Battle

極上おにぎりの作り方

【極上おにぎりの作り方】道場六三郎の家庭料理レシピ#1 https://www.youtube.com/watch?v=HcExzZJ4Ei4

「筋活」がうつを予防して認知症のリスクを下げる

https://president.jp/articles/-/71721

製造についてと棒高跳び用ポールにかける想い

https://panda-srd.com/about-us/story/

How to Get Free Disk Space in PowerShell?

https://shellgeek.com/how-to-get-free-disk-space-in-powershell/ Get-Volume -DriveLetter C 実行してみる > get-volume -driveletter c DriveLetter FriendlyName FileSystemType DriveType HealthStatus OperationalStatus SizeRemaining Size --------…

PowerShell – Get Memory Usage

https://shellgeek.com/powershell-get-memory-usage/ $CompObject = Get-WmiObject -Class WIN32_OperatingSystem $Memory = ((($CompObject.TotalVisibleMemorySize - $CompObject.FreePhysicalMemory)*100)/ $CompObject.TotalVisibleMemorySize) Write-H…

ゴート語

https://kotobank.jp/word/%E3%82%B4%E3%83%BC%E3%83%88%E8%AA%9E-65529

strptime(date, format, now=self.now) -> Time

Ruby 3.2 リファレンスマニュアル ライブラリ一覧 timeライブラリ Timeクラス strptime 文字列を Date._strptime を用いて Time オブジェクトに変換します。 https://docs.ruby-lang.org/ja/latest/method/Time/s/strptime.html

strftime(format) -> String

Ruby 3.2 リファレンスマニュアル ライブラリ一覧 組み込みライブラリ Timeクラス strftime 時刻を format 文字列に従って文字列に変換した結果を返します。 https://docs.ruby-lang.org/ja/latest/method/Time/i/strftime.html