Skip to content

Instantly share code, notes, and snippets.

View kkato233's full-sized avatar

Kazuhiro Kato kkato233

View GitHub Profile
@kkato233
kkato233 / Plot-js-img1.png
Last active March 21, 2023 15:03
box-plot-Rainbow Box Plot.ipynb
Plot-js-img1.png
@kkato233
kkato233 / Progaram.cs
Last active August 19, 2022 15:57
extract zip file encoding utf-8 ( using DotNetZip)
/*
dotnet new console
dotnet add package DotNetZip
edit Program.cs
dotnet run [zip FileName]
*/
var zip = new Ionic.Zip.ZipFile(args[0], System.Text.Encoding.UTF8);
@kkato233
kkato233 / ans_preprocess_knock_CS3.ipynb
Last active March 1, 2021 03:51
.NET Jupyter Notebook
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
非同期でユーザに情報を通知するための仕組みの実装
---
SignalR 用のライブラリ追加
Startup.cs
// SignalR 定義追加
services.AddSignalR();
// SignalR の エンドポイント追加

ファイルから 正規表現に該当する文字列を一覧表示する LINQPad 構文

void Main()
{
	// Write code to test your extensions here. Press F5 to compile and run.
	string file = @"fileName.txt";
	string regex = @"[/\w]+/execute";
	
	foreach(var item in MyExt.RegExFromFile(file, regex).Distinct())
@kkato233
kkato233 / git日本語設定.md
Last active November 20, 2018 18:54
git で 日本語 SJIS UTF8 混在環境で きれいに表示する設定

ログ等で日本語ファイル名を表示する設定

git config --global core.quotepath false

変更履歴を SJIS UTF8 混在環境で表示する設定

nkf に パスを通す

@kkato233
kkato233 / .gitconfig
Created September 2, 2016 07:39
git difftool で WinMerge.exe を使う方法
git difftool で WinMerge.exe を使う方法
C:\Users\[ユーザ名]\git\.gitconfig ファイルに 以下の定義を追加する。
git difftool --dir-diff とすると、複数の差分が一覧表示されるので非常に便利。
[diff]
tool = winmerge
[difftool "winmerge"]
path = 'C:/Program Files/WinMerge/WinMergeU.exe'
cmd = 'C:/Program Files/WinMerge/WinMergeU.exe' -r -u \"$LOCAL\" \"$REMOTE\"
@kkato233
kkato233 / winpe-01
Last active December 4, 2019 01:44
copype x86 C:\winpe_x86
dism /mount-wim /wimfile:"C:\winpe_x86\media\sources\boot.wim" /index:1 /mountdir:"C:\winpe_x86\mount"