powershell - ダミーデータ

# create test data try { $list = New-Object System.Collections.Generic.list[string]; $max = 300; for ($i = 1; $i -le $max; $i++) { $str = "key:$($i),value:$($i)" $list.Add($str) } $path = "./my-data.txt" $outFilePath = $ExecutionContext.Se…

sql server - index

anderson02.com

excel - vba loop

www.exceldemy.com

vba - WorksheetFunction.CountIf

Dim okCount As Integer Dim ngCount As Integer Dim emptyCount As Integer okCount = WorksheetFunction.CountIf(Range("D9").CurrentRegion.Columns(2), "ok") ngCount = WorksheetFunction.CountIf(Range("D9").CurrentRegion.Columns(2), "ng") emptyCo…

excel - vba,vscode

kanegolabo.com webbibouroku.com

excel - 相対参照と絶対参照を切り替え

dekiru.net

powershell - スコープ

tech.blog.aerie.jp

underscore.js - isEmpty

note.onichannn.net qiita.com

vscode 拡張

coliss.com 192.jp

d3.js 参考

d3js.org github.com observablehq.com wizardace.com uxbear.me press.monaca.io qiita.com kita-note.com

公開鍵・秘密鍵

xtech.nikkei.com

WindowsのIISで単一IPアドレスのサーバーに複数のWebサイトを設置・運用する(ホストヘッダー編)

atmarkit.itmedia.co.jp dev.classmethod.jp

powershell - file read/write - c

# read file, output contents $list = @() foreach ($line in @(gc -path "./test-utf8.txt" -Encoding UTF8)) { $list += ($line + "_add") } # write file sc -path "./test-utf8-add-c.txt" -Encoding UTF8 -Value $list

powershell - file read/write - b

# read file $lines = @(Get-Content -path "./test-utf8.txt" -Encoding UTF8) Write-Host $lines # output contents $list = @() foreach ($line in $lines) { $list += ($line + "_add") } # write file Set-Content -path "./test-utf8-add-b.txt" -Enco…

powershell - file read/write - a

# encoding $enc = [System.Text.Encoding]::UTF8 # read file $lines = [System.IO.File]::ReadAllLines("./test-utf8.txt", $enc) # output contents $list = New-Object System.Collections.Generic.list[string] foreach ($line in $lines) { $list.Add(…

winhttp show proxy

lig-log.com

Windowsのnetコマンド

atmarkit.itmedia.co.jp

cookie

developer.mozilla.org atmarkit.itmedia.co.jp numb86-tech.hatenablog.com zenn.dev

curl - turtorial

curl.se

asp.net mvc バインディング (int)

yan-note.blogspot.com qiita.com

power query jsonを取込

www.katalog.tokyo PowerQuery 同一組織コードの組織名をカンマ区切りで結合し1レコードにする方法 https://answers.microsoft.com/ja-jp/msoffice/forum/all/powerquery/f7e62416-8dc9-47df-8d54-21d07d54b6e3

Visual Studio 2022 設定

Visual Studio 2022 ショートカット追加 ctrl + a: 編集.選択範囲を包括ブロックまで広げる ctrl + w: 編集.次の単語まで拡張 ctrl + 1: 前のメソッド ctrl + 2: 次のメソッド ctrl + 3: エディターコンテキストメニュー.ナビゲート.包含ブロックへ移動 Visu…

npm scripts

akabeko.me www.twilio.com ics.media

Vuex - action

vuex.vuejs.org

task - status

vue component 値の渡し方

uncle-javascript.com

git rebase

https://www-creators.com/archives/2850

git rebase

www.karakaram.com

.gitcongi メモ

.gitconfigメモ : [alias] logp = log --pretty='format:%C(yellow)%h %C(green)%cd %C(reset)%s %C(red)%d %C(cyan)[%an]' --date=iso logone = log --oneline loggraph = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%c…

.bash_pforile メモ

.bash_pforile メモ # alias alias c='clear' alias cls='clear' alias ls='ls --color=auto' alias lsl='ls -l --color=auto' alias lsa='ls -a --color=auto' alias lsal='ls -al --color=auto' alias lsxl='ls -Xl --color=auto' alias lstl='ls -tl --co…