Codesanook
codesanook.com "โค้ดสนุก" สังคมแห่งการเรียนรู้ และแบ่งปันความรู้ด้าน programming/coding สังคมที่ต้องการสร้างแนวคิดที่ว่า "programming/coding ไม่ใช่เรื่องยาก แต่เป็นเรื่องที่สนุก" เช่นเดียวกับคำว่า "codesanook สนุกไปกับการเขียนโค้ด"
-
link to download Apple Android download download on a store icon
Download on App Store https://developer.apple.com/app-store/marketing/guidelines/ example GET IT ON Google Play https://play.google.com/intl/en_us/badges/ Example Read more... -
use Vim in Visual Studio Code
"vim.useSystemClipboard": true, "editor.lineNumbers": "relative" Read more... -
Jump and move in a vim jump list
In Vim, you can move very fast with jump command Jumping with H M L H jump to the top of the screen M jump to the middle of the screen L jump to the bottom of the screen Example commands H M L … Read more... -
setup Vim for Visual Studio Code
Enable yanking to the system clipboard by default and use paste (P) from the system clipboard "vim.useSystemClipboard": true Read more... -
unit test components and frameworks in dotnet
In unit test we, need these the following components. Test runners Unit test framework Mock framework Optional Framework Test runners For running your test cases, some examples of test runners … Read more... -
move faster with WORD
From my previous article Vim move word wise , we found that we can move cursor in Vim by word. However, in some situation, If we have some punctuation in a sentence e.g. ', ", our movement by word … Read more... -
Vim move word wise
In Vim, we can move our cursor by word range operation. This is a summary of Vim word wise command w Forward to start of next word b Backward to start of current/previous word e Forward to end of … Read more... -
ต่อข้อความ format ข้อความ หรือ output ค่าของตัวแปร ออกมาด้วย string interpolation ในภาษา TypeScript (JavaScript), Java, Groovy และ C#
ปกติเพื่อนๆ ต่อข้อความ string กันยังไงครับ ยังมีใครใช้วิธี ต่อข้อความด้วย + operation อยู่ไหม วันนี้ผมจะขอแนะนำตัวอย่างง่ายๆ ในการต่อข้อความ string ด้วยวิธีการที่เรียกว่า string operation ที่ช่วยให้ … Read more... -
มาสร้าง diagram code comment ด้วย ASCII diagram tool กัน
ในบางครั้งการอธิบายการทำงานของโปรแกรม หรือการเขียน code comment ออกมาในรูปแบบของ flow diagram ของการทำงาน หรือเขียนออกมาเป็นขั้นตอนแบบ flow chart สามารถช่วยให้เราเข้าใจการทำงานของ code ได้ง่ายขึ้น หรื … Read more... -
เขียนคำสั่งในภาษา JavaScript TypeScript ให้ยืดหยุ่น ด้วยการเรียก method property ผ่าน key name และการใช้งาน apply call function
อาทิตย์ที่แล้ว ผมได้มีโอกาสเข้าไปดู source code ของ moment.js library เลยเจอกับ code บางส่วนที่ช่วยเพิ่มความยืดหยุ่นในการเขียน program เพื่อรองรับการทำงานแบบ dynamic ด้วยวิธีดังต่อไปนี้ การเรียกใช้ … Read more...