diff --git a/content/books/things-i-learnt/_index.md b/content/books/things-i-learnt/_index.md index 5eb08fe..18b6072 100644 --- a/content/books/things-i-learnt/_index.md +++ b/content/books/things-i-learnt/_index.md @@ -66,3 +66,4 @@ template = "section-contentless.html" * [Code Reviews Are Not For Style](code-reviews-style) * [Code Formatting Tools Are Ok, But No Silver Bullet](code-formatters) * [Code Style: Follow It](code-style) + * [... Unless That Code Style Is The Google Code Style](google-code-style) diff --git a/content/books/things-i-learnt/code-reviews-style/index.md b/content/books/things-i-learnt/code-reviews-style/index.md index 6ed78a1..a196917 100644 --- a/content/books/things-i-learnt/code-reviews-style/index.md +++ b/content/books/things-i-learnt/code-reviews-style/index.md @@ -1,5 +1,5 @@ +++ -title = "Things I Learnt The Hard Way - The Right Tool Is More Obvious Than You Think" +title = "Things I Learnt The Hard Way - Code Reviews Are Not For Style" date = 2019-07-16 [taxonomies] diff --git a/content/books/things-i-learnt/code-style/index.md b/content/books/things-i-learnt/code-style/index.md index 75d25fa..62b814c 100644 --- a/content/books/things-i-learnt/code-style/index.md +++ b/content/books/things-i-learnt/code-style/index.md @@ -23,4 +23,4 @@ And remember that even your stupid code is [part of the ecosystem of the language](/books/things-i-learnt/languages-are-more) and the better you interact with the ecosystem, the better citizen in the ecosystem you are. -{{ chapters(prev_chapter_link="/books/things-i-learnt/code-formatters", prev_chapter_title="Code Formatting Tools Are Ok, But No Silver Bullet") }} +{{ chapters(prev_chapter_link="/books/things-i-learnt/code-formatters", prev_chapter_title="Code Formatting Tools Are Ok, But No Silver Bullet", next_chapter_link="/books/things-i-learnt/google-code-style", next_chapter_title="... Unless That Code Style Is The Google Code Style") }} diff --git a/content/books/things-i-learnt/google-code-style/index.md b/content/books/things-i-learnt/google-code-style/index.md new file mode 100644 index 0000000..aaedb0d --- /dev/null +++ b/content/books/things-i-learnt/google-code-style/index.md @@ -0,0 +1,13 @@ ++++ +title = "Things I Learnt The Hard Way - ... Unless That Code Style Is The Google Code Style" +date = 2019-07-16 + +[taxonomies] +tags = ["en-au", "books", "things i learnt", "code style", "google code style"] ++++ + +Every freaking time Google comes with their own coding style, it's a garbage +fire. The community came with a better style way before and Google seem to +come with a style with high contrasting parts just to call it theirs. + +{{ chapters(prev_chapter_link="/books/things-i-learnt/code-style", prev_chapter_title="Code Style: Follow It") }}