Slack-History-Export
真好用
Gtihub: Slack-History-Export
可能需要搭配 Slack API 使用
真好用
Gtihub: Slack-History-Export
可能需要搭配 Slack API 使用
要打開一些玩意兒
比如說要用 nodepad 打開
就可以用以下語法
1 | Process.Start("notepad.exe", fileName); |
也可以用 CMD 開
1 | var proc = Process.Start(@"cmd.exe ",@"/c C:\Users\user2\Desktop\XXXX.reg") |
最後我使用
1 | var process = new Process |
大概是醬
var content = new StringContent(jsonObject.ToString(), Encoding.UTF8, "application/json");
var result = client.PostAsync(url, content).Result;
StackOverflow: POSTing JsonObject With HttpClient From Web API
快速查 Url Encoding 代表什麼
w3schools.com: HTML URL Encoding Reference
我的用法是醬子
1 | httpClient.DefaultRequestHeaders.Add("Content-Type", "application/json"); |
沒錯 跟智障一樣
解法可用
1 | httpClient.DefaultRequestHeaders.Add("Accept", "application/json"); |
或是
1 | httpClient.DefaultRequestHeaders |
Github: How do you set the Content-Type header for an HttpClient request?
太空人的意思 好像很猛的一個專案
Github: Cosmonaut
用 & 或 && 都可 當然還有其他的用法
StackOverflow: How do I run two commands in one line in Windows CMD?
HttpClientFactory 好像蠻好用的
Liam Wang: .NET Core 中正确使用 HttpClient 的姿势
基本上就是這篇的中譯
Github: Polly: Polly and HttpClientFactory
Liam Wang: 在 .NET Core 中结合 HttpClientFactory 使用 Polly(上篇)
Liam Wang: 在 .NET Core 中结合 HttpClientFactory 使用 Polly(中篇)
Liam Wang: 在 .NET Core 中结合 HttpClientFactory 使用 Polly(下篇)
叫做 Exponential-Backoff
Github: Polly
Application Insights Log Analytics
分析 Log 的方式
MsDocs: GetStarted with queries in Log Analytics
core 2.1 版本後的 Snapshot 功能
可以將 Error 的 Tracecode 記錄起來
MsDocs: Debug snapshots on exceptions in .NET apps
StackOverflow: C# Console - hide the input from console window while typing
這個解答更棒
StackOverflow: Password masking console application
1 | string pass = ""; |
StackOverflow: JSON serialization/deserialization in ASP.Net Core
1 | #using Newtonsoft.Json |
StackOverflow: How to write to a file in .NET Core?
大概長這樣
1 | var logPath = System.IO.Path.GetTempFileName(); |
這樣就可以
StackOverflow: How to post data using HttpClient?
1 | var comment = "hello world"; |
And if you need to get the response after post, you should use:
1 | var stringContent = await response.Content.ReadAsStringAsync(); |
下面這篇感覺就普普了 不過也是可以拿來做參考
在ASP.NET Core2上操作MongoDB就是能這麼的簡便酷爽(自動完成分庫分表)
如何 Deserialize BsonValue
StackOverflow: Mongo C# Driver: Deserialize BsonValue
以下是節錄部分我的 Code 主要是將一個 array string 轉成 array Object
命名的很隨便 隨便參考就行
1 | Console.WriteLine("Hello World."); |
用 XML 寫 Code
MsDocs: Policies in Azure API Management
Policy Expressions in Azure API Management
StackOverflow: Where is PostAsJsonAsync method in ASP.NET Core?