Chinese Yellow Pages | Classifieds | Knowledge | Tax | IME

Scrum or Kanban

http://leankit.com/kanban/kanban-agile/ http://www.infoq.com/articles/kanban-siemens-health-services http://edu.leankanban.com/blog/reviewing-siemens-healthcare-case-study http://edu.leankanban.com/kanban-method http://www.infoq.com/articles/scrum-not-enough http://blog.crisp.se/mattiasskarin/files/pdf/converting_a_scrum_team_to_kanban.pdf

MySQL Binary field how to insert, search

http://www.ovaistariq.net/632/understanding-mysql-binary-and-non-binary-string-data-types/ http://artarmstrong.com/blog/2014/12/07/store-uuid-as-binary16-mysql-data-type/ http://stackoverflow.com/questions/9081216/mysql-insert-statement-to-binary-datatype e.g: CREATE TABLE `Test` ( `myhash` binary(16) DEFAULT NULL ) Insert 10E8400E29B11D4A716446655440000 as HEX representation of some chars Insert into `Test` values ( UNHEX(“110E8400E29B11D4A716446655440000”) ); MySQL standard…