This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # base | |
| # | |
| # [note] learn | |
| => ref: | |
| => ref: | |
| => ref: | |
| => ref: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| Request.Headers["xx"]; | |
| Request.QueryString["xx"]; | |
| Request.Form["xx"]; | |
| Request.Files["xx"]; | |
| Request.MapPath(); | |
| Response.Headers["xx"] = "yy"; | |
| Response.Write("Hello World"); | |
| Response.Redirect("https://google.com"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # base | |
| TODO | |
| # cmd | |
| npm i -g typescript | |
| tsc -v | |
| tsc -h | |
| tsc --all // show all compiler options | |
| tsc --init // created a new tsconfig.json | |
| tsc // compiles the current project (tsconfig.json in the working directory) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Promise | |
| see '_1 Promise.js' | |
| # async/await | |
| see '_2 async await.js' | |
| # ArrayBuffer | |
| // TODO | |
| # Blob |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # base | |
| windows debugger (windbg) | |
| new version: windbg preview | |
| old version: windbg | |
| # cmd | |
| .cls // clear screen | |
| # [note] download | |
| => ref: https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-download-tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Net.Http; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| namespace D008.利用TAP工作建立大量並行工作練習 | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var isStop = false; | |
| var thread = new Thread(() => | |
| { | |
| while (!isStop) | |
| { | |
| Thread.Sleep(1000); | |
| Console.WriteLine("Thread = {0} 正在運行", Thread.CurrentThread.ManagedThreadId); | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # base | |
| GNU | |
| MinGW (Minimalist GNU for Windows) | |
| GCC (GUN Compiler Collection) | |
| gcc (GUN C Compiler) | |
| g++ (GUN C++ Compiler) | |
| VC++ (Microsoft Visual C++) aka. IDE | |
| => ref: https://zh.wikipedia.org/zh-tw/Microsoft_Visual_C%2B%2B |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # base | |
| hypertext transfer protocol (http) | |
| hypertext transfer protocol secure (https) | |
| transport layer security (tls) | |
| # http version | |
| http 0.9 | |
| http 1.0 | |
| http 1.1 | |
| http 2.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # base | |
| TODO | |
| # sqlplus | |
| sqlplus <user>/<password>@<server> |