http://learnpythonthehardway.org/book/ - 0 views
Database normalization - Wikipedia, the free encyclopedia - 0 views
-
-
Non-1NF example in django: > > class Customer(models.Model): > > name = models.CharField(..) > > transaction = models.ManyToManyField("Transaction") > > class Transaction(models.Model): > > date = models.DateField(...) > > amount = models.IntegerField(...) 1NF example: > class Customer(models.Model): > > name = models.CharField(...) > > class Transaction(models.Model): > > customer = models.ForeignKey(Customer) > > date = ... > > amount = ...
-
Correction: ^ N1NF example no foreign key
-
Does a Local Business Really Need Its Own Website? - 0 views
Vim Recipes: Table of Contents - 0 views
TPOA - 0 views
InterFraternity Council - 0 views
Developing Backbone.js Applications - - 0 views
-
Understanding render()
-
passing the markup from the template with id item-template to _.template() to be compiled and stored in the todoTpl property when the view is created.
-
he _.template method in Underscore
- ...17 more annotations...
D3.js - Data-Driven Documents - 0 views
1 - 19 of 19
Showing 20▼ items per page