Ask HN: Help…Found a gaping hole in my low-level knowledge | Hacker News.
Category Archives: comp science
How To Install and Configure Slim Framework on Ubuntu 14.04 | DigitalOcean
Web Typography for non-designers – Presslabs
Shoelace – Visual Bootstrap 3 Grid Builder
Programmer proverbs — Futurice
The Twelve-Factor App
Cloud Computing Patterns
Callum Hart | Front-end Fanatic
SQL Constraints
Good to remember
In SQL, we have the following constraints:NOT NULL – Indicates that a column cannot store NULL valueUNIQUE – Ensures that each row for a column must have a unique valuePRIMARY KEY – A combination of a NOT NULL and UNIQUE. Ensures that a column or combination of two or more columns have an unique identity which helps to find a particular record in a table more easily and quicklyFOREIGN KEY – Ensure the referential integrity of the data in one table to match values in another tableCHECK – Ensures that the value in a column meets a specific conditionDEFAULT – Specifies a default value when specified none for this column
via SQL Constraints.