|
|
|
|
|
by hgs3
1105 days ago
|
|
> Create debugging utilities for data structures very early on. Yes, this isn't encouraged enough. I often serialize my data structures as either JSON or Graphviz DOT files for visualization. It helps save an immense amount of time. You can also use the generated files for regression testing, i.e. diff the actual output with the serialized output and if they're different, then a bug was introduced. |
|