Skip to content

Instantly share code, notes, and snippets.

View zachwildd's full-sized avatar

Zach zachwildd

View GitHub Profile
@ygrenzinger
ygrenzinger / CleanArchitecture.md
Last active October 9, 2025 09:11
Summary of Clean Architecture by Robert C. Martin

Summary of book "Clean Architecture" by Robert C. Martin

Uncle Bob, the well known author of Clean Code, is coming back to us with a new book called Clean Architecture which wants to take a larger view on how to create software.

Even if Clean Code is one of the major book around OOP and code design (mainly by presenting the SOLID principles), I was not totally impressed by the book.

Clean Architecture leaves me with the same feeling, even if it's pushing the development world to do better, has some good stories and present robust principles to build software.

The book is build around 34 chapters organised in chapters.

@mlconnor
mlconnor / gist:4955479
Created February 14, 2013 19:18
JavaScript to parse a CSV string and create JSON objects based on the column headers
function csvToJson(str) {
var data = [], i = 0, k = 0, header = [];
var csvLines = CSVToArray(str);
for ( i = 0; i < csvLines.length; i++ ) {
var line = csvLines[i];
if ( i == 0 ) {
header = csvLines[i];
} else {