From 6f87531d97905bd31c106b19a4405b9f349a2516 Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 31 Dec 2019 19:03:17 +0530 Subject: typo --- docs/index.html | 6 +++--- docs/style.css | 6 +++++- posts/color_conundrum.md | 2 +- posts/don't_repeat_yourself.md | 9 --------- 4 files changed, 9 insertions(+), 14 deletions(-) delete mode 100644 posts/don't_repeat_yourself.md diff --git a/docs/index.html b/docs/index.html index cc69cbf..59a963d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -14,7 +14,7 @@ n - +

n

@@ -23,7 +23,7 @@
-
30/12 2019
+
31/12 2019
Color Conundrum
@@ -37,7 +37,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/docs/style.css b/docs/style.css index bc722c6..88666e8 100644 --- a/docs/style.css +++ b/docs/style.css @@ -46,7 +46,7 @@ html { .post { - margin: 2rem; + margin: 1rem; } img { @@ -63,6 +63,10 @@ details > summary::-webkit-details-marker { display: none; } +summary: hover { + cursor: pointer; +} + hr { color: var(--light-black); } 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