English step for install Dropzone and Simplenote extension:
Download Dropzone. Open it dmg and drag Dropzone icon to Application folder.
Install rest-client ruby library. I use this library instead of NET::HTTP because I’m lazy to find the way to use it. I try standard library but it always error with HTTP 500. So, I switch to rest-client but it needs a few more step to use, install rest-client library on Shell(Terminal)
Immutable ข้อมูลต่างๆ เมื่อประกาศมาแล้วจะไม่มีการเปลี่ยนแปลง หรือเทียบเท่ากับ function ที่ไม่รับตัวแปรอะไรเลยแล้วให้ผลลัพธ์กลับมา เช่น var a = 5 ก็จะเหมือนกับประกาศว่า function a() = 5
First class function คือ function ที่มีลักษณะเหมือนตัวแปรในภาษาอื่น คือสามารถเปลี่ยนแปลงการทำงานของ function ได้ โดยใช้ชื่อเดิม เช่น
var a =function(x,y){alert(x+y)}
a =function(x){alert(x*x)}
Higher order function เนื่องจาก function นั้นมีความสามารถเหมือนตัวแปรแล้ว มันจึงส่งเข้าไปใน function อื่น หรือ return จาก function อื่นได้ โดยถ้า มันรับจาก function อื่นซ้อนๆ กันหรือคืนค่าจาก function อื่นซ้อนๆกัน ลำดับของมันก็สูงขึ้นตามจำนวนที่ซ้อนเรียกลงไป เช่น