Python Diary | Django and AJAX: Dajax - 0 views
Python Diary | Django and AJAX: jQuery - 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
-
rvanlaar/djangorecipe · GitHub - 0 views
Cartwheel Web - 0 views
Chapter 10: Advanced Models - 0 views
rosarior/descartes-bi - 0 views
How to Rock an Algorithms Interview | Palantir - 0 views
-
Array Stack / Queue Hashset / Hashmap / Hashtable / Dictionary Tree / binary tree Heap Graph
-
Think data structures.
-
Sorting (plus searching / binary search) Divide-and-conquer Dynamic programming / memoization Greediness Recursion Algorithms associated with a specific data structure (which brings us to our fourth suggestion…)
- ...1 more annotation...