In software development
2023-11-29
For an e-commerce store
Category theory |
Software module |
Algebraic structure 1 |
Concept-based design 2 |
---|---|---|---|
Objects | Types, data structures | Domain | Generic types |
Morphism | Functions | Operations | Actions |
Axioms | Tests | Axioms | Operational principles |
“One syntax, many semantics”
\[\begin{gather*} \dashrightarrow\text{Automatic / Functor}\\ \rightarrow\text{Manual task} \end{gather*}\]
All tasks are manual
Just a few manual tasks …
Python, classical, Write code
"""Migrate a Sim to a Sim2"""
def migrate_sim(sim::Sim):
init_sys = System2(sim.cell, sim.atoms)
final_sys = unknown(init_sys.cell.pbc)
return Sim2(sim.calc, init_sys, final_sys)
for old_sim in get_sims(old_db_cxn):
insert_sim(migrate_sim(old_sim), new_db_cxn)
new_query = "SELECT S1.pth, S2.pth FROM ..."
Algebraic Julia, categorical, Declare the change
An algebraic structure in Typescript ready for rapid iteration
type List[T] {
domain: {
items: T[]
currentItem: T
}
operations: {
// The rapid iteration operation
generateListImplementation: (config) => {...}
// List specific operations
addItem: () => {...}
removeItem:() => {...}
sortItems: () => {...}
filterItems: () => {...}
...
}
axioms: {
whenAddItem: "The created item becomes the currentItem"
...
}
}
/app
Iteration 0
generateListImplementation(
{
name: "Articles",
operations: ['list', 'click', 'addItem', 'removeItem', ...]
formLibrary: "uniforms"
}
Iteration 1