From 6f87531d97905bd31c106b19a4405b9f349a2516 Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 31 Dec 2019 19:03:17 +0530 Subject: typo --- posts/color_conundrum.md | 2 +- posts/don't_repeat_yourself.md | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 posts/don't_repeat_yourself.md (limited to 'posts') diff --git a/posts/color_conundrum.md b/posts/color_conundrum.md index 0e938b7..d051ae4 100644 --- a/posts/color_conundrum.md +++ b/posts/color_conundrum.md @@ -8,7 +8,7 @@ does. It is difficult for the human eye to filter out noise in rainbow barf. Use color to draw attention, not diverge it. -At the same time, a book devoid of color is *boring!*. What +At the same time, a book devoid of color is *boring!* What is the takeaway from this 10 line paragraph? What are the technical terms used? diff --git a/posts/don't_repeat_yourself.md b/posts/don't_repeat_yourself.md deleted file mode 100644 index d39267e..0000000 --- a/posts/don't_repeat_yourself.md +++ /dev/null @@ -1,9 +0,0 @@ -Looping constructs are bad. Consider this: - -``` -for (int i = 0; i < arr.len(); i++) { ... } -``` - -It is not obvious at all, what this loop does. Is it -supposed to iterate over the elements of the array? Is it -just a variable binding that increases up to `arr.len()`? -- cgit v1.2.3