Frameworks for feature metricsThere are two frameworks that I have known to be useful to track feature success:
Dave McClure’s Pirate MetricsAcquisiti
...
Table Designhttps://github.com/yoosuf/Messenger
ConstraintsKey words
NOT NULL
Ensures that a column cannot have a NULL value
UNIQUE
Ensures that all
...
Everything is a trade off!
Performance vs scalabilityA service is scalable if it results in increased performance in a manner proportional to resource
...
OverviewBoth multiprocessing and multithreading both are ways to achieve multitasking
Multithreading
will share the same address space (global variabl
...
general strategy
Start with the recursive backtracking solution
Optimize by using a memoization table (top-down[3] dynamic programming)
Remove the nee
...
AlgorithmTopological SortDijkstra’s Algorithm
Dijkstra’s algorithm is an algorithm for finding the shortest paths between nodes in a graph,
Dijkstra
...
Topological orderingDefinitionA topological ordering of a directed graph G is a a labelling f of G’s nodes such that:
the f(v)’s are the set {1, 2, …
...