2016年12月29日 星期四

Sequelize

Sequelize is a promise-based ORM for Node.js and io.js. It supports the dialects PostgreSQL, MySQL, MariaDB, SQLite and MSSQL and features solid transaction support, relations, read replication and more.
http://docs.sequelizejs.com/en/v3/

2016年12月14日 星期三

SQLMap

SQLMap
http://sqlmap.org/

SQL injection 測試工具

2017新架構

https://kknews.cc/tech/zl9q93.html

React
JSXTransformer
Babel
npm
gulp

https://medium.com/@walterwu_22843/66350840e62c

2016年4月22日 星期五

Javascript Sort 排序

var arr = [
    {"age":15,"name":"joe"},
    {"age":57,"name":"ruby"},
    {"age":33,"name":"jason"},
    {"age":22,"name":"lily"}
];
arr.sort(function(obj1,obj2){
    return obj1.age - obj2.age;
})