From 0469786eb2013352d62efaea44c2aef5b448cb12 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Tue, 23 Jun 2020 17:43:52 -0300 Subject: [PATCH 01/65] Some research on elasticsearch --- content/research/_index.md | 18 ++++++++++++++++++ content/research/elastic.md | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 content/research/_index.md create mode 100644 content/research/elastic.md diff --git a/content/research/_index.md b/content/research/_index.md new file mode 100644 index 0000000..af00312 --- /dev/null +++ b/content/research/_index.md @@ -0,0 +1,18 @@ ++++ +title = "Research Notes" +transparent = true ++++ + +
+

{{ section.title }}

+ + +
diff --git a/content/research/elastic.md b/content/research/elastic.md new file mode 100644 index 0000000..d3a1873 --- /dev/null +++ b/content/research/elastic.md @@ -0,0 +1,33 @@ ++++ +title = "ElasticSearch" + +[taxonomies] +tags = ["research", "elastic", "elasticsearch", "docker"] ++++ + +## Docker image + +``` +docker pull docker.elastic.co/elasticsearch/elasticsearch:7.8.0 +``` + +## Start + +``` +docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.8.0 +``` + +- Port 9200: REST interface. +- Port 9300: Inter-node communication. +- `discovery.type`: Just one node, no discovery needed. + +## Definitions + +- MySQL => Databases => Tables => Columns/Rows +- Elasticsearch => Indices => Types => Documents with Properties + +## Adding information (REST) + +``` +POST //_doc/ +``` From cc1a510ceec89f4e8569fec90547eabd7e01c9d1 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 19:17:49 -0300 Subject: [PATCH 02/65] Alan Perlis quote --- content/quotes/alan-perlis/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/alan-perlis/index.md diff --git a/content/quotes/alan-perlis/index.md b/content/quotes/alan-perlis/index.md new file mode 100644 index 0000000..522c892 --- /dev/null +++ b/content/quotes/alan-perlis/index.md @@ -0,0 +1,11 @@ ++++ +title = "Alan Perlis" +weight = 97 + +[taxonomies] +tags = ["quotes", "alan perlis", "functions"] ++++ + +> "It is better to have 100 functions operate on one data structure than 10 +> functions on 10 data structures." + From c607eb80e01e121db54aab4acdeba43a673b5221 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 19:23:20 -0300 Subject: [PATCH 03/65] Bullwinkle quote --- content/quotes/bullwinkle-moose/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/quotes/bullwinkle-moose/index.md diff --git a/content/quotes/bullwinkle-moose/index.md b/content/quotes/bullwinkle-moose/index.md new file mode 100644 index 0000000..be160e0 --- /dev/null +++ b/content/quotes/bullwinkle-moose/index.md @@ -0,0 +1,10 @@ ++++ +title = "Bullwinkle Moose" +weight = 98 + +[taxonomies] +tags = ["quotes", "bullwinkle moose", "cartoon", "humility"] ++++ + +> "When it comes to humility, I'm the greatest." + From ebddb3e1a0d31d3355476a9bf891929a9d4b0336 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 19:25:38 -0300 Subject: [PATCH 04/65] Random quote --- content/quotes/random/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/quotes/random/index.md b/content/quotes/random/index.md index 0d381ea..1b5d720 100644 --- a/content/quotes/random/index.md +++ b/content/quotes/random/index.md @@ -54,3 +54,7 @@ tags = ["quotes", "graffiti", "education", "misery", "distributed systems", > lack cognitive meaning. > "Time is an illusion perpetrated by the manufacturers of space." + +> Non-Reciprocal Laws of Expectations: +> Negative expectations yield negative results. +> Positive expectations yield negative results. From c71d5cb9f42f6b75288db134e2724f17753e04c5 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 19:30:32 -0300 Subject: [PATCH 05/65] Jacinda Ardern quote --- content/quotes/jacinda-ardern/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/quotes/jacinda-ardern/index.md diff --git a/content/quotes/jacinda-ardern/index.md b/content/quotes/jacinda-ardern/index.md new file mode 100644 index 0000000..e7de6c0 --- /dev/null +++ b/content/quotes/jacinda-ardern/index.md @@ -0,0 +1,10 @@ ++++ +title = "Jacinda Ardern" +weight = 106 + +[taxonomies] +tags = ["quotes", "jacinda ardren", "economy", "government", "social"] ++++ + +> "Economic growth accompanied by worsening social outcomes is not success, it +> is failure" From c37d9c2c78a8d7893f2df8a5fed67198f52ea03f Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 19:45:08 -0300 Subject: [PATCH 06/65] Mark Twain quote --- content/quotes/mark-twain/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/quotes/mark-twain/index.md b/content/quotes/mark-twain/index.md index 6b4f3a8..2864f2d 100644 --- a/content/quotes/mark-twain/index.md +++ b/content/quotes/mark-twain/index.md @@ -3,7 +3,8 @@ title = "Mark Twain" weight = 109 [taxonomies] -tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing"] +tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing", +"right"] +++ > "Few things are harder to put up with than the annoyance of a good example." @@ -15,3 +16,4 @@ tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing"] > "Substitute 'damn' every time you're inclined to write 'very'; your > editor will delete it and the writing will be just as it should be." +> "Always do right. This will gratify some people and astonish the rest." From 60d3f8138ea8457a8715fbc835a168aee16c2edb Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 19:54:43 -0300 Subject: [PATCH 07/65] Martin Luther quote --- content/quotes/martin-luther/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/martin-luther/index.md diff --git a/content/quotes/martin-luther/index.md b/content/quotes/martin-luther/index.md new file mode 100644 index 0000000..40d54e9 --- /dev/null +++ b/content/quotes/martin-luther/index.md @@ -0,0 +1,9 @@ ++++ +title = "Martin Luther" +weight = 109 + +[taxonomies] +tags = ["quotes", "martin luther", "religion", "sin"] ++++ + +> "Sin boldly." From b2322841e573f8c9920bead7e119725f1f44869c Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 19:57:33 -0300 Subject: [PATCH 08/65] Mark Twain quote --- content/quotes/mark-twain/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/quotes/mark-twain/index.md b/content/quotes/mark-twain/index.md index 2864f2d..b305a96 100644 --- a/content/quotes/mark-twain/index.md +++ b/content/quotes/mark-twain/index.md @@ -17,3 +17,7 @@ tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing", > editor will delete it and the writing will be just as it should be." > "Always do right. This will gratify some people and astonish the rest." + +> "If it is a Miracle, any sort of evidence will answer, but if it is a Fact, +> proof is necessary." + From e29b6542a0c1a2c8102768a2760906f8ed91ecc6 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:12:07 -0300 Subject: [PATCH 09/65] Henry Miller quote --- content/quotes/henry-miller/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/henry-miller/index.md diff --git a/content/quotes/henry-miller/index.md b/content/quotes/henry-miller/index.md new file mode 100644 index 0000000..b33ddac --- /dev/null +++ b/content/quotes/henry-miller/index.md @@ -0,0 +1,11 @@ ++++ +title = "Henry Miller" +weight = 104 + +[taxonomies] +tags = ["quotes", "henry miller", "sex"] ++++ + +> "Sex is one of the nine reasons for reincarnation ... the other eight are +> unimportant." + From 1508ed8c4fa2eb85df786da4b2f731eff53cc8b1 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:13:21 -0300 Subject: [PATCH 10/65] Randy Kunkee quote --- content/quotes/randy-kunkee/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/quotes/randy-kunkee/index.md diff --git a/content/quotes/randy-kunkee/index.md b/content/quotes/randy-kunkee/index.md new file mode 100644 index 0000000..284a268 --- /dev/null +++ b/content/quotes/randy-kunkee/index.md @@ -0,0 +1,10 @@ ++++ +title = "Randy Kunkee" +weight = 114 + +[taxonomies] +tags = ["quotes", "randy kunkee", "minds", "sex"] ++++ + +> "A dirty mind is a joy forever." + From b47608f746aa4dc76dd191aed391e81b5c6bb8a0 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:15:13 -0300 Subject: [PATCH 11/65] Thomas Jefferson quote --- content/quotes/thomas-jefferson/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/quotes/thomas-jefferson/index.md b/content/quotes/thomas-jefferson/index.md index 602d38d..41fa9f4 100644 --- a/content/quotes/thomas-jefferson/index.md +++ b/content/quotes/thomas-jefferson/index.md @@ -3,8 +3,12 @@ title = "Thomas Jefferson" weight = 116 [taxonomies] -tags = ["quotes", "thomas jefferson", "things"] +tags = ["quotes", "thomas jefferson", "things", "principles", "tastes"] +++ > "Never buy what you do not want because it is cheap; it will be dear to > you." + +> "In matters of principle, stand like a rock; in matters of taste, swim with +> the current." + From 42855181c29908d559f0c520e5c65ceb205cfd15 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:19:22 -0300 Subject: [PATCH 12/65] Roger Babson quote --- content/quotes/roger-babson/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/roger-babson/index.md diff --git a/content/quotes/roger-babson/index.md b/content/quotes/roger-babson/index.md new file mode 100644 index 0000000..73bbc35 --- /dev/null +++ b/content/quotes/roger-babson/index.md @@ -0,0 +1,9 @@ ++++ +title = "Roger Babson" +weight = 114 + +[taxonomies] +tags = ["quotes", "roger babson", "success", "failure"] ++++ + +> "It is wise to keep in mind that neither success nor failure is ever final." From 84e631a7b973d67df4b0df035b54337ad92ab74c Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:20:39 -0300 Subject: [PATCH 13/65] Frank Herbert quote --- content/quotes/frank-herbert/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/quotes/frank-herbert/index.md diff --git a/content/quotes/frank-herbert/index.md b/content/quotes/frank-herbert/index.md new file mode 100644 index 0000000..316dbaf --- /dev/null +++ b/content/quotes/frank-herbert/index.md @@ -0,0 +1,10 @@ ++++ +title = "Frank Herbert" +weight = 102 + +[taxonomies] +tags = ["quotes", "frank herbert", "knowledge"] ++++ + +> "Thinking you know something is a sure way to blind yourself." +-- Chapterhouse: Dune From 36dc15d129f2d4f9368f9449e280eaaaa18d814e Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:24:14 -0300 Subject: [PATCH 14/65] Walter Dwight quote --- content/quotes/walter-dwight/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/walter-dwight/index.md diff --git a/content/quotes/walter-dwight/index.md b/content/quotes/walter-dwight/index.md new file mode 100644 index 0000000..f1bfb0a --- /dev/null +++ b/content/quotes/walter-dwight/index.md @@ -0,0 +1,11 @@ ++++ +title = "Walter Dwight" +weight = 119 + +[taxonomies] +tags = ["quotes", "walter dwight", "politicians"] ++++ + +> "Politicians speak for their parties, and parties never are, never have +> been, and never will be wrong." + From 780e533eb894e729bfaa150819791c70d0f57d86 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:29:47 -0300 Subject: [PATCH 15/65] Christopher Lascl quote --- content/quotes/christopher-lascl/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/christopher-lascl/index.md diff --git a/content/quotes/christopher-lascl/index.md b/content/quotes/christopher-lascl/index.md new file mode 100644 index 0000000..c09caf7 --- /dev/null +++ b/content/quotes/christopher-lascl/index.md @@ -0,0 +1,9 @@ ++++ +title = "Christopher Lascl" +weight = 99 + +[taxonomies] +tags = ["quotes", "christopher lascl", "success", "appearances"] ++++ + +> "Nothing succeeds like the appearance of success." From a6ffb7ccd7be062c6dce03251b23da4ea56c4921 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:41:27 -0300 Subject: [PATCH 16/65] Gloria Steinem quote --- content/quotes/gloria-steinem/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/gloria-steinem/index.md diff --git a/content/quotes/gloria-steinem/index.md b/content/quotes/gloria-steinem/index.md new file mode 100644 index 0000000..eb5e375 --- /dev/null +++ b/content/quotes/gloria-steinem/index.md @@ -0,0 +1,9 @@ ++++ +title = "Gloria Steinem" +weight = 103 + +[taxonomies] +tags = ["quotes", "gloria steinem", "women"] ++++ + +> "A woman without a man is like a fish without a bicycle." From 2e61df822981050cb6c0b62b1ebd36ef7882010b Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:43:17 -0300 Subject: [PATCH 17/65] Random quote --- content/quotes/random/index.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/quotes/random/index.md b/content/quotes/random/index.md index 1b5d720..5c5ba3c 100644 --- a/content/quotes/random/index.md +++ b/content/quotes/random/index.md @@ -6,7 +6,7 @@ weight = 300 tags = ["quotes", "graffiti", "education", "misery", "distributed systems", "the day the earth stood still", "atheism", "religion", "following", "regrets", "money", "perfection", "practice", "nerds", "totalitarianism", -"materialism", "god", "time"] +"materialism", "god", "time", "privacy"] +++ > If you took all the students that felt asleep in class and laid them end to @@ -58,3 +58,9 @@ tags = ["quotes", "graffiti", "education", "misery", "distributed systems", > Non-Reciprocal Laws of Expectations: > Negative expectations yield negative results. > Positive expectations yield negative results. + +> "I’m being tracked by so many websites that if I get kidnapped, I expect to +> be rescued by a team of web developers rather than the police." +-- u/jaso151 on Reddit + + From 9d19b16cfc64a5d367e6bbd261e67d2e456be5a9 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:45:55 -0300 Subject: [PATCH 18/65] Maharbal quote --- content/quotes/maharbal/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/maharbal/index.md diff --git a/content/quotes/maharbal/index.md b/content/quotes/maharbal/index.md new file mode 100644 index 0000000..aaa76af --- /dev/null +++ b/content/quotes/maharbal/index.md @@ -0,0 +1,9 @@ ++++ +title = "Maharbal" +weight = 109 + +[taxonomies] +tags = ["quotes", "maharbal", "hannibal", "victories"] ++++ + +> "You know how to win a victory, Hannibal, but not how to use it." From 098cfa5db8bcb64629c010b5ad2d2357ba7037c3 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:49:47 -0300 Subject: [PATCH 19/65] Thomas J Kopp quote --- content/quotes/thomas-j-kopp/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/thomas-j-kopp/index.md diff --git a/content/quotes/thomas-j-kopp/index.md b/content/quotes/thomas-j-kopp/index.md new file mode 100644 index 0000000..f597186 --- /dev/null +++ b/content/quotes/thomas-j-kopp/index.md @@ -0,0 +1,9 @@ ++++ +title = "Thomas J. Kopp" +weight = 116 + +[taxonomies] +tags = ["quotes", "thomas j kopp", "life", "death"] ++++ + +> "Life sucks, but death doesn't put out at all." From 2222c7065562d629e3c74432d2f948b243e5a942 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:52:20 -0300 Subject: [PATCH 20/65] Random quote --- content/quotes/random/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/quotes/random/index.md b/content/quotes/random/index.md index 5c5ba3c..3dab68a 100644 --- a/content/quotes/random/index.md +++ b/content/quotes/random/index.md @@ -6,7 +6,7 @@ weight = 300 tags = ["quotes", "graffiti", "education", "misery", "distributed systems", "the day the earth stood still", "atheism", "religion", "following", "regrets", "money", "perfection", "practice", "nerds", "totalitarianism", -"materialism", "god", "time", "privacy"] +"materialism", "god", "time", "privacy", "guests", "proverbs", "russian"] +++ > If you took all the students that felt asleep in class and laid them end to @@ -63,4 +63,7 @@ tags = ["quotes", "graffiti", "education", "misery", "distributed systems", > be rescued by a team of web developers rather than the police." -- u/jaso151 on Reddit +> "Nezvannyi gost'--khuzhe tatarina." +> [An uninvited guest is worse than the Mongol invasion] +-- Russian proverb From 532190364314b3386f8f59ff2d611f26ac70d28c Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:54:23 -0300 Subject: [PATCH 21/65] Jim Warner quote --- content/quotes/jim-warner/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/jim-warner/index.md diff --git a/content/quotes/jim-warner/index.md b/content/quotes/jim-warner/index.md new file mode 100644 index 0000000..6f53fa8 --- /dev/null +++ b/content/quotes/jim-warner/index.md @@ -0,0 +1,11 @@ ++++ +title = "Jim Warner" +weight = 106 + +[taxonomies] +tags = ["quotes", "jim warner", "screw ups"] ++++ + +> "The Second Law of Thermodynamics: +> If you think things are in a mess now, just wait!" + From a72151cb5c5f523dccf3e01a42c3108efe51a39a Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 20:56:34 -0300 Subject: [PATCH 22/65] Random quote --- content/quotes/random/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/quotes/random/index.md b/content/quotes/random/index.md index 3dab68a..e14749c 100644 --- a/content/quotes/random/index.md +++ b/content/quotes/random/index.md @@ -67,3 +67,5 @@ tags = ["quotes", "graffiti", "education", "misery", "distributed systems", > [An uninvited guest is worse than the Mongol invasion] -- Russian proverb +> "The dynamic I'm subjected to doesn't become less toxic just because I can +> take it." From a8eab629047f12f9df2fda0fa6ad2d6986265b64 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 21:12:43 -0300 Subject: [PATCH 23/65] Benjamin Disraeli quote --- content/quotes/benjamin-disraeli/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/benjamin-disraeli/index.md diff --git a/content/quotes/benjamin-disraeli/index.md b/content/quotes/benjamin-disraeli/index.md new file mode 100644 index 0000000..ea61826 --- /dev/null +++ b/content/quotes/benjamin-disraeli/index.md @@ -0,0 +1,9 @@ ++++ +title = "Benjamin Disraeli" +weight = 98 + +[taxonomies] +tags = ["quotes", "benjamin disraeli", "criticism"] ++++ + +> "It is much easier to be critical than to be correct." From e08d65979da8a0290b0f0738ef6d74a06960ef34 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 21:14:03 -0300 Subject: [PATCH 24/65] Oscar Wilde quote --- content/quotes/oscar-wilde/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/quotes/oscar-wilde/index.md b/content/quotes/oscar-wilde/index.md index 2370e03..7c7def3 100644 --- a/content/quotes/oscar-wilde/index.md +++ b/content/quotes/oscar-wilde/index.md @@ -4,9 +4,11 @@ weight = 111 [taxonomies] tags = ["quotes", "oscar wilde", "virtues", "vices", "truth", "questions", -"answers"] +"answers", "gossip"] +++ > "He hadn't a single redeeming vice." > "Questions are never indiscreet, answers sometimes are." + +> "My own business always bores me to death; I prefer other people's." From 67eb1a427a9c52cd0d3e649782c2a541bc2158a9 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 21:20:05 -0300 Subject: [PATCH 25/65] Randall Munroe quote --- content/quotes/randall-munroe/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/randall-munroe/index.md diff --git a/content/quotes/randall-munroe/index.md b/content/quotes/randall-munroe/index.md new file mode 100644 index 0000000..e5adb3b --- /dev/null +++ b/content/quotes/randall-munroe/index.md @@ -0,0 +1,9 @@ ++++ +title = "Randall Munroe" +weight = 114 + +[taxonomies] +tags = ["quotes", "randall munroe", "assumptions"] ++++ + +> "You've got questions. We've got assumptions." From 8ecf7a5ecb420bea8554b331d54bf64c06c00eaf Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 21:23:01 -0300 Subject: [PATCH 26/65] Star Trek quote --- content/quotes/star-trek/index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/quotes/star-trek/index.md b/content/quotes/star-trek/index.md index 63c9806..ecf0f07 100644 --- a/content/quotes/star-trek/index.md +++ b/content/quotes/star-trek/index.md @@ -45,3 +45,9 @@ tags = ["star trek", "quotes", "eve mchuron", "spock", "rojan", "sarek"] > "Suffocating together ... would create heroic camaraderie." -- Khan Noonian Singh, "Space Seed", stardate 3142.8 + +> "What terrible way to die." +> "There are no good ways." +-- Sulu and Kirk, "That Which Survives", stardate unknown + + From a324787c86fd6815f56ca9e73832a27db0c528d9 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 21:24:23 -0300 Subject: [PATCH 27/65] Henrik Ibsen quote --- content/quotes/henrik-ibsen/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/henrik-ibsen/index.md diff --git a/content/quotes/henrik-ibsen/index.md b/content/quotes/henrik-ibsen/index.md new file mode 100644 index 0000000..d3e9033 --- /dev/null +++ b/content/quotes/henrik-ibsen/index.md @@ -0,0 +1,11 @@ ++++ +title = "Henrik Ibsen" +weight = 104 + +[taxonomies] +tags = ["quotes", "henrik ibsen", "revolution"] ++++ + +> "You should never wear your best trousers when you go out to fight for +> freedom and liberty." + From 9b5b8804fd43b7d858a21e0a82925c8a36262aff Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 21:32:47 -0300 Subject: [PATCH 28/65] Will Rogers quote --- content/quotes/will-rogers/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/will-rogers/index.md diff --git a/content/quotes/will-rogers/index.md b/content/quotes/will-rogers/index.md new file mode 100644 index 0000000..44739ff --- /dev/null +++ b/content/quotes/will-rogers/index.md @@ -0,0 +1,11 @@ ++++ +title = "Will Rogers" +weight = 119 + +[taxonomies] +tags = ["quotes", "will rogers", "selfishness"] ++++ + +> "What's the matter with the world? Why, there ain't but one thing wrong +> with every one of us -- and that's 'selfishness.'" + From 17435a88a7de2590e570ad913926e97508f51fb1 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 21:34:04 -0300 Subject: [PATCH 29/65] Titus Maccius Plautus quote --- content/quotes/titus-maccius-plautus/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/titus-maccius-plautus/index.md diff --git a/content/quotes/titus-maccius-plautus/index.md b/content/quotes/titus-maccius-plautus/index.md new file mode 100644 index 0000000..369d633 --- /dev/null +++ b/content/quotes/titus-maccius-plautus/index.md @@ -0,0 +1,11 @@ ++++ +title = "Titus Maccius Plautus" +weight = 116 + +[taxonomies] +tags = ["quotes", "titus maccius plautus", "visits"] ++++ + +> "No guest is so welcome in a friend's house that he will not become a +> nuisance after three days." + From 58ce5e3fa30df65adf5caf739b68dc51177657c4 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 21:34:54 -0300 Subject: [PATCH 30/65] J B White quote --- content/quotes/j-b-white/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/j-b-white/index.md diff --git a/content/quotes/j-b-white/index.md b/content/quotes/j-b-white/index.md new file mode 100644 index 0000000..74a7082 --- /dev/null +++ b/content/quotes/j-b-white/index.md @@ -0,0 +1,9 @@ ++++ +title = "J. B. White" +weight = 106 + +[taxonomies] +tags = ["quotes", "j b white", "drunkness"] ++++ + +> "... at least I thought I was dancing, 'til somebody stepped on my hand." From 97d8cb2745c79d4548025d04669cc3a2920d21af Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 1 Jul 2020 21:46:45 -0300 Subject: [PATCH 31/65] Squashed commit of the following: commit 58ce5e3fa30df65adf5caf739b68dc51177657c4 Author: Julio Biason Date: Wed Jul 1 21:34:54 2020 -0300 J B White quote commit 17435a88a7de2590e570ad913926e97508f51fb1 Author: Julio Biason Date: Wed Jul 1 21:34:04 2020 -0300 Titus Maccius Plautus quote commit 9b5b8804fd43b7d858a21e0a82925c8a36262aff Author: Julio Biason Date: Wed Jul 1 21:32:47 2020 -0300 Will Rogers quote commit a324787c86fd6815f56ca9e73832a27db0c528d9 Author: Julio Biason Date: Wed Jul 1 21:24:23 2020 -0300 Henrik Ibsen quote commit 8ecf7a5ecb420bea8554b331d54bf64c06c00eaf Author: Julio Biason Date: Wed Jul 1 21:23:01 2020 -0300 Star Trek quote commit 67eb1a427a9c52cd0d3e649782c2a541bc2158a9 Author: Julio Biason Date: Wed Jul 1 21:20:05 2020 -0300 Randall Munroe quote commit e08d65979da8a0290b0f0738ef6d74a06960ef34 Author: Julio Biason Date: Wed Jul 1 21:14:03 2020 -0300 Oscar Wilde quote commit a8eab629047f12f9df2fda0fa6ad2d6986265b64 Author: Julio Biason Date: Wed Jul 1 21:12:43 2020 -0300 Benjamin Disraeli quote commit a72151cb5c5f523dccf3e01a42c3108efe51a39a Author: Julio Biason Date: Wed Jul 1 20:56:34 2020 -0300 Random quote commit 532190364314b3386f8f59ff2d611f26ac70d28c Author: Julio Biason Date: Wed Jul 1 20:54:23 2020 -0300 Jim Warner quote commit 2222c7065562d629e3c74432d2f948b243e5a942 Author: Julio Biason Date: Wed Jul 1 20:52:20 2020 -0300 Random quote commit 098cfa5db8bcb64629c010b5ad2d2357ba7037c3 Author: Julio Biason Date: Wed Jul 1 20:49:47 2020 -0300 Thomas J Kopp quote commit 9d19b16cfc64a5d367e6bbd261e67d2e456be5a9 Author: Julio Biason Date: Wed Jul 1 20:45:55 2020 -0300 Maharbal quote commit 2e61df822981050cb6c0b62b1ebd36ef7882010b Author: Julio Biason Date: Wed Jul 1 20:43:17 2020 -0300 Random quote commit a6ffb7ccd7be062c6dce03251b23da4ea56c4921 Author: Julio Biason Date: Wed Jul 1 20:41:27 2020 -0300 Gloria Steinem quote commit 780e533eb894e729bfaa150819791c70d0f57d86 Author: Julio Biason Date: Wed Jul 1 20:29:47 2020 -0300 Christopher Lascl quote commit 36dc15d129f2d4f9368f9449e280eaaaa18d814e Author: Julio Biason Date: Wed Jul 1 20:24:14 2020 -0300 Walter Dwight quote commit 84e631a7b973d67df4b0df035b54337ad92ab74c Author: Julio Biason Date: Wed Jul 1 20:20:39 2020 -0300 Frank Herbert quote commit 42855181c29908d559f0c520e5c65ceb205cfd15 Author: Julio Biason Date: Wed Jul 1 20:19:22 2020 -0300 Roger Babson quote commit b47608f746aa4dc76dd191aed391e81b5c6bb8a0 Author: Julio Biason Date: Wed Jul 1 20:15:13 2020 -0300 Thomas Jefferson quote commit 1508ed8c4fa2eb85df786da4b2f731eff53cc8b1 Author: Julio Biason Date: Wed Jul 1 20:13:21 2020 -0300 Randy Kunkee quote commit e29b6542a0c1a2c8102768a2760906f8ed91ecc6 Author: Julio Biason Date: Wed Jul 1 20:12:07 2020 -0300 Henry Miller quote commit b2322841e573f8c9920bead7e119725f1f44869c Author: Julio Biason Date: Wed Jul 1 19:57:33 2020 -0300 Mark Twain quote commit 60d3f8138ea8457a8715fbc835a168aee16c2edb Author: Julio Biason Date: Wed Jul 1 19:54:43 2020 -0300 Martin Luther quote commit c37d9c2c78a8d7893f2df8a5fed67198f52ea03f Author: Julio Biason Date: Wed Jul 1 19:45:08 2020 -0300 Mark Twain quote commit c71d5cb9f42f6b75288db134e2724f17753e04c5 Author: Julio Biason Date: Wed Jul 1 19:30:32 2020 -0300 Jacinda Ardern quote commit ebddb3e1a0d31d3355476a9bf891929a9d4b0336 Author: Julio Biason Date: Wed Jul 1 19:25:38 2020 -0300 Random quote commit c607eb80e01e121db54aab4acdeba43a673b5221 Author: Julio Biason Date: Wed Jul 1 19:23:20 2020 -0300 Bullwinkle quote commit cc1a510ceec89f4e8569fec90547eabd7e01c9d1 Author: Julio Biason Date: Wed Jul 1 19:17:49 2020 -0300 Alan Perlis quote --- content/quotes/alan-perlis/index.md | 11 +++++++++++ content/quotes/benjamin-disraeli/index.md | 9 +++++++++ content/quotes/bullwinkle-moose/index.md | 10 ++++++++++ content/quotes/christopher-lascl/index.md | 9 +++++++++ content/quotes/frank-herbert/index.md | 10 ++++++++++ content/quotes/gloria-steinem/index.md | 9 +++++++++ content/quotes/henrik-ibsen/index.md | 11 +++++++++++ content/quotes/henry-miller/index.md | 11 +++++++++++ content/quotes/j-b-white/index.md | 9 +++++++++ content/quotes/jacinda-ardern/index.md | 10 ++++++++++ content/quotes/jim-warner/index.md | 11 +++++++++++ content/quotes/maharbal/index.md | 9 +++++++++ content/quotes/mark-twain/index.md | 8 +++++++- content/quotes/martin-luther/index.md | 9 +++++++++ content/quotes/oscar-wilde/index.md | 4 +++- content/quotes/randall-munroe/index.md | 9 +++++++++ content/quotes/random/index.md | 17 ++++++++++++++++- content/quotes/randy-kunkee/index.md | 10 ++++++++++ content/quotes/roger-babson/index.md | 9 +++++++++ content/quotes/star-trek/index.md | 6 ++++++ content/quotes/thomas-j-kopp/index.md | 9 +++++++++ content/quotes/thomas-jefferson/index.md | 6 +++++- content/quotes/titus-maccius-plautus/index.md | 11 +++++++++++ content/quotes/walter-dwight/index.md | 11 +++++++++++ content/quotes/will-rogers/index.md | 11 +++++++++++ 25 files changed, 235 insertions(+), 4 deletions(-) create mode 100644 content/quotes/alan-perlis/index.md create mode 100644 content/quotes/benjamin-disraeli/index.md create mode 100644 content/quotes/bullwinkle-moose/index.md create mode 100644 content/quotes/christopher-lascl/index.md create mode 100644 content/quotes/frank-herbert/index.md create mode 100644 content/quotes/gloria-steinem/index.md create mode 100644 content/quotes/henrik-ibsen/index.md create mode 100644 content/quotes/henry-miller/index.md create mode 100644 content/quotes/j-b-white/index.md create mode 100644 content/quotes/jacinda-ardern/index.md create mode 100644 content/quotes/jim-warner/index.md create mode 100644 content/quotes/maharbal/index.md create mode 100644 content/quotes/martin-luther/index.md create mode 100644 content/quotes/randall-munroe/index.md create mode 100644 content/quotes/randy-kunkee/index.md create mode 100644 content/quotes/roger-babson/index.md create mode 100644 content/quotes/thomas-j-kopp/index.md create mode 100644 content/quotes/titus-maccius-plautus/index.md create mode 100644 content/quotes/walter-dwight/index.md create mode 100644 content/quotes/will-rogers/index.md diff --git a/content/quotes/alan-perlis/index.md b/content/quotes/alan-perlis/index.md new file mode 100644 index 0000000..522c892 --- /dev/null +++ b/content/quotes/alan-perlis/index.md @@ -0,0 +1,11 @@ ++++ +title = "Alan Perlis" +weight = 97 + +[taxonomies] +tags = ["quotes", "alan perlis", "functions"] ++++ + +> "It is better to have 100 functions operate on one data structure than 10 +> functions on 10 data structures." + diff --git a/content/quotes/benjamin-disraeli/index.md b/content/quotes/benjamin-disraeli/index.md new file mode 100644 index 0000000..ea61826 --- /dev/null +++ b/content/quotes/benjamin-disraeli/index.md @@ -0,0 +1,9 @@ ++++ +title = "Benjamin Disraeli" +weight = 98 + +[taxonomies] +tags = ["quotes", "benjamin disraeli", "criticism"] ++++ + +> "It is much easier to be critical than to be correct." diff --git a/content/quotes/bullwinkle-moose/index.md b/content/quotes/bullwinkle-moose/index.md new file mode 100644 index 0000000..be160e0 --- /dev/null +++ b/content/quotes/bullwinkle-moose/index.md @@ -0,0 +1,10 @@ ++++ +title = "Bullwinkle Moose" +weight = 98 + +[taxonomies] +tags = ["quotes", "bullwinkle moose", "cartoon", "humility"] ++++ + +> "When it comes to humility, I'm the greatest." + diff --git a/content/quotes/christopher-lascl/index.md b/content/quotes/christopher-lascl/index.md new file mode 100644 index 0000000..c09caf7 --- /dev/null +++ b/content/quotes/christopher-lascl/index.md @@ -0,0 +1,9 @@ ++++ +title = "Christopher Lascl" +weight = 99 + +[taxonomies] +tags = ["quotes", "christopher lascl", "success", "appearances"] ++++ + +> "Nothing succeeds like the appearance of success." diff --git a/content/quotes/frank-herbert/index.md b/content/quotes/frank-herbert/index.md new file mode 100644 index 0000000..316dbaf --- /dev/null +++ b/content/quotes/frank-herbert/index.md @@ -0,0 +1,10 @@ ++++ +title = "Frank Herbert" +weight = 102 + +[taxonomies] +tags = ["quotes", "frank herbert", "knowledge"] ++++ + +> "Thinking you know something is a sure way to blind yourself." +-- Chapterhouse: Dune diff --git a/content/quotes/gloria-steinem/index.md b/content/quotes/gloria-steinem/index.md new file mode 100644 index 0000000..eb5e375 --- /dev/null +++ b/content/quotes/gloria-steinem/index.md @@ -0,0 +1,9 @@ ++++ +title = "Gloria Steinem" +weight = 103 + +[taxonomies] +tags = ["quotes", "gloria steinem", "women"] ++++ + +> "A woman without a man is like a fish without a bicycle." diff --git a/content/quotes/henrik-ibsen/index.md b/content/quotes/henrik-ibsen/index.md new file mode 100644 index 0000000..d3e9033 --- /dev/null +++ b/content/quotes/henrik-ibsen/index.md @@ -0,0 +1,11 @@ ++++ +title = "Henrik Ibsen" +weight = 104 + +[taxonomies] +tags = ["quotes", "henrik ibsen", "revolution"] ++++ + +> "You should never wear your best trousers when you go out to fight for +> freedom and liberty." + diff --git a/content/quotes/henry-miller/index.md b/content/quotes/henry-miller/index.md new file mode 100644 index 0000000..b33ddac --- /dev/null +++ b/content/quotes/henry-miller/index.md @@ -0,0 +1,11 @@ ++++ +title = "Henry Miller" +weight = 104 + +[taxonomies] +tags = ["quotes", "henry miller", "sex"] ++++ + +> "Sex is one of the nine reasons for reincarnation ... the other eight are +> unimportant." + diff --git a/content/quotes/j-b-white/index.md b/content/quotes/j-b-white/index.md new file mode 100644 index 0000000..74a7082 --- /dev/null +++ b/content/quotes/j-b-white/index.md @@ -0,0 +1,9 @@ ++++ +title = "J. B. White" +weight = 106 + +[taxonomies] +tags = ["quotes", "j b white", "drunkness"] ++++ + +> "... at least I thought I was dancing, 'til somebody stepped on my hand." diff --git a/content/quotes/jacinda-ardern/index.md b/content/quotes/jacinda-ardern/index.md new file mode 100644 index 0000000..e7de6c0 --- /dev/null +++ b/content/quotes/jacinda-ardern/index.md @@ -0,0 +1,10 @@ ++++ +title = "Jacinda Ardern" +weight = 106 + +[taxonomies] +tags = ["quotes", "jacinda ardren", "economy", "government", "social"] ++++ + +> "Economic growth accompanied by worsening social outcomes is not success, it +> is failure" diff --git a/content/quotes/jim-warner/index.md b/content/quotes/jim-warner/index.md new file mode 100644 index 0000000..6f53fa8 --- /dev/null +++ b/content/quotes/jim-warner/index.md @@ -0,0 +1,11 @@ ++++ +title = "Jim Warner" +weight = 106 + +[taxonomies] +tags = ["quotes", "jim warner", "screw ups"] ++++ + +> "The Second Law of Thermodynamics: +> If you think things are in a mess now, just wait!" + diff --git a/content/quotes/maharbal/index.md b/content/quotes/maharbal/index.md new file mode 100644 index 0000000..aaa76af --- /dev/null +++ b/content/quotes/maharbal/index.md @@ -0,0 +1,9 @@ ++++ +title = "Maharbal" +weight = 109 + +[taxonomies] +tags = ["quotes", "maharbal", "hannibal", "victories"] ++++ + +> "You know how to win a victory, Hannibal, but not how to use it." diff --git a/content/quotes/mark-twain/index.md b/content/quotes/mark-twain/index.md index 6b4f3a8..b305a96 100644 --- a/content/quotes/mark-twain/index.md +++ b/content/quotes/mark-twain/index.md @@ -3,7 +3,8 @@ title = "Mark Twain" weight = 109 [taxonomies] -tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing"] +tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing", +"right"] +++ > "Few things are harder to put up with than the annoyance of a good example." @@ -15,3 +16,8 @@ tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing"] > "Substitute 'damn' every time you're inclined to write 'very'; your > editor will delete it and the writing will be just as it should be." +> "Always do right. This will gratify some people and astonish the rest." + +> "If it is a Miracle, any sort of evidence will answer, but if it is a Fact, +> proof is necessary." + diff --git a/content/quotes/martin-luther/index.md b/content/quotes/martin-luther/index.md new file mode 100644 index 0000000..40d54e9 --- /dev/null +++ b/content/quotes/martin-luther/index.md @@ -0,0 +1,9 @@ ++++ +title = "Martin Luther" +weight = 109 + +[taxonomies] +tags = ["quotes", "martin luther", "religion", "sin"] ++++ + +> "Sin boldly." diff --git a/content/quotes/oscar-wilde/index.md b/content/quotes/oscar-wilde/index.md index 2370e03..7c7def3 100644 --- a/content/quotes/oscar-wilde/index.md +++ b/content/quotes/oscar-wilde/index.md @@ -4,9 +4,11 @@ weight = 111 [taxonomies] tags = ["quotes", "oscar wilde", "virtues", "vices", "truth", "questions", -"answers"] +"answers", "gossip"] +++ > "He hadn't a single redeeming vice." > "Questions are never indiscreet, answers sometimes are." + +> "My own business always bores me to death; I prefer other people's." diff --git a/content/quotes/randall-munroe/index.md b/content/quotes/randall-munroe/index.md new file mode 100644 index 0000000..e5adb3b --- /dev/null +++ b/content/quotes/randall-munroe/index.md @@ -0,0 +1,9 @@ ++++ +title = "Randall Munroe" +weight = 114 + +[taxonomies] +tags = ["quotes", "randall munroe", "assumptions"] ++++ + +> "You've got questions. We've got assumptions." diff --git a/content/quotes/random/index.md b/content/quotes/random/index.md index 0d381ea..e14749c 100644 --- a/content/quotes/random/index.md +++ b/content/quotes/random/index.md @@ -6,7 +6,7 @@ weight = 300 tags = ["quotes", "graffiti", "education", "misery", "distributed systems", "the day the earth stood still", "atheism", "religion", "following", "regrets", "money", "perfection", "practice", "nerds", "totalitarianism", -"materialism", "god", "time"] +"materialism", "god", "time", "privacy", "guests", "proverbs", "russian"] +++ > If you took all the students that felt asleep in class and laid them end to @@ -54,3 +54,18 @@ tags = ["quotes", "graffiti", "education", "misery", "distributed systems", > lack cognitive meaning. > "Time is an illusion perpetrated by the manufacturers of space." + +> Non-Reciprocal Laws of Expectations: +> Negative expectations yield negative results. +> Positive expectations yield negative results. + +> "I’m being tracked by so many websites that if I get kidnapped, I expect to +> be rescued by a team of web developers rather than the police." +-- u/jaso151 on Reddit + +> "Nezvannyi gost'--khuzhe tatarina." +> [An uninvited guest is worse than the Mongol invasion] +-- Russian proverb + +> "The dynamic I'm subjected to doesn't become less toxic just because I can +> take it." diff --git a/content/quotes/randy-kunkee/index.md b/content/quotes/randy-kunkee/index.md new file mode 100644 index 0000000..284a268 --- /dev/null +++ b/content/quotes/randy-kunkee/index.md @@ -0,0 +1,10 @@ ++++ +title = "Randy Kunkee" +weight = 114 + +[taxonomies] +tags = ["quotes", "randy kunkee", "minds", "sex"] ++++ + +> "A dirty mind is a joy forever." + diff --git a/content/quotes/roger-babson/index.md b/content/quotes/roger-babson/index.md new file mode 100644 index 0000000..73bbc35 --- /dev/null +++ b/content/quotes/roger-babson/index.md @@ -0,0 +1,9 @@ ++++ +title = "Roger Babson" +weight = 114 + +[taxonomies] +tags = ["quotes", "roger babson", "success", "failure"] ++++ + +> "It is wise to keep in mind that neither success nor failure is ever final." diff --git a/content/quotes/star-trek/index.md b/content/quotes/star-trek/index.md index 63c9806..ecf0f07 100644 --- a/content/quotes/star-trek/index.md +++ b/content/quotes/star-trek/index.md @@ -45,3 +45,9 @@ tags = ["star trek", "quotes", "eve mchuron", "spock", "rojan", "sarek"] > "Suffocating together ... would create heroic camaraderie." -- Khan Noonian Singh, "Space Seed", stardate 3142.8 + +> "What terrible way to die." +> "There are no good ways." +-- Sulu and Kirk, "That Which Survives", stardate unknown + + diff --git a/content/quotes/thomas-j-kopp/index.md b/content/quotes/thomas-j-kopp/index.md new file mode 100644 index 0000000..f597186 --- /dev/null +++ b/content/quotes/thomas-j-kopp/index.md @@ -0,0 +1,9 @@ ++++ +title = "Thomas J. Kopp" +weight = 116 + +[taxonomies] +tags = ["quotes", "thomas j kopp", "life", "death"] ++++ + +> "Life sucks, but death doesn't put out at all." diff --git a/content/quotes/thomas-jefferson/index.md b/content/quotes/thomas-jefferson/index.md index 602d38d..41fa9f4 100644 --- a/content/quotes/thomas-jefferson/index.md +++ b/content/quotes/thomas-jefferson/index.md @@ -3,8 +3,12 @@ title = "Thomas Jefferson" weight = 116 [taxonomies] -tags = ["quotes", "thomas jefferson", "things"] +tags = ["quotes", "thomas jefferson", "things", "principles", "tastes"] +++ > "Never buy what you do not want because it is cheap; it will be dear to > you." + +> "In matters of principle, stand like a rock; in matters of taste, swim with +> the current." + diff --git a/content/quotes/titus-maccius-plautus/index.md b/content/quotes/titus-maccius-plautus/index.md new file mode 100644 index 0000000..369d633 --- /dev/null +++ b/content/quotes/titus-maccius-plautus/index.md @@ -0,0 +1,11 @@ ++++ +title = "Titus Maccius Plautus" +weight = 116 + +[taxonomies] +tags = ["quotes", "titus maccius plautus", "visits"] ++++ + +> "No guest is so welcome in a friend's house that he will not become a +> nuisance after three days." + diff --git a/content/quotes/walter-dwight/index.md b/content/quotes/walter-dwight/index.md new file mode 100644 index 0000000..f1bfb0a --- /dev/null +++ b/content/quotes/walter-dwight/index.md @@ -0,0 +1,11 @@ ++++ +title = "Walter Dwight" +weight = 119 + +[taxonomies] +tags = ["quotes", "walter dwight", "politicians"] ++++ + +> "Politicians speak for their parties, and parties never are, never have +> been, and never will be wrong." + diff --git a/content/quotes/will-rogers/index.md b/content/quotes/will-rogers/index.md new file mode 100644 index 0000000..44739ff --- /dev/null +++ b/content/quotes/will-rogers/index.md @@ -0,0 +1,11 @@ ++++ +title = "Will Rogers" +weight = 119 + +[taxonomies] +tags = ["quotes", "will rogers", "selfishness"] ++++ + +> "What's the matter with the world? Why, there ain't but one thing wrong +> with every one of us -- and that's 'selfishness.'" + From 47bdb56046508bb85701d5da54c9b8e19286ff25 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 10:12:44 -0300 Subject: [PATCH 32/65] Finlay Peter Dunne quote --- content/quotes/finlay-peter-dunne/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/finlay-peter-dunne/index.md diff --git a/content/quotes/finlay-peter-dunne/index.md b/content/quotes/finlay-peter-dunne/index.md new file mode 100644 index 0000000..f1bf5a3 --- /dev/null +++ b/content/quotes/finlay-peter-dunne/index.md @@ -0,0 +1,9 @@ ++++ +title = "Finlay Peter Dunne" +weight = 102 + +[taxonomies] +tags = ["quotes", "finlay peter dunne", "trust"] ++++ + +> "Trust everybody, but cut the cards." From a26b08722bc4826aad76cd62d069792a6e0bd750 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 10:36:19 -0300 Subject: [PATCH 33/65] Random quote --- content/quotes/random/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/quotes/random/index.md b/content/quotes/random/index.md index e14749c..3b4827a 100644 --- a/content/quotes/random/index.md +++ b/content/quotes/random/index.md @@ -69,3 +69,5 @@ tags = ["quotes", "graffiti", "education", "misery", "distributed systems", > "The dynamic I'm subjected to doesn't become less toxic just because I can > take it." + +> "Somehow, the world always affects you more than you affect it." From fe5ddded60b46e81a162701f137f1910f5bb8c01 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 10:38:19 -0300 Subject: [PATCH 34/65] Alan Kay quote --- content/quotes/alan-kay/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/alan-kay/index.md diff --git a/content/quotes/alan-kay/index.md b/content/quotes/alan-kay/index.md new file mode 100644 index 0000000..5b779e6 --- /dev/null +++ b/content/quotes/alan-kay/index.md @@ -0,0 +1,11 @@ ++++ +title = "Alan Kay" +weight = 97 + +[taxonomies] +tags = ["quotes", "alan kay", "research"] ++++ + +> "The tree of research must from time to time be refreshed with the blood +> of bean counters." + From 6ef90824b2f53eac9ecd451d5b583bfa3383ae27 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 10:44:03 -0300 Subject: [PATCH 35/65] Anne Frank quote --- content/quotes/anne-frank/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/anne-frank/index.md diff --git a/content/quotes/anne-frank/index.md b/content/quotes/anne-frank/index.md new file mode 100644 index 0000000..77e7b59 --- /dev/null +++ b/content/quotes/anne-frank/index.md @@ -0,0 +1,9 @@ ++++ +title = "Anne Frank" +weight = 97 + +[taxonomies] +tags = ["quotes", "anne frank", "goodness"] ++++ + +> "In spite of everything, I still believe that people are good at heart." From 43ffd484475754b4d0c4199e84cc421e5a7950d2 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 10:46:29 -0300 Subject: [PATCH 36/65] Marcus Tulius Cicero quote --- content/quotes/marcus-tulius-cicero/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/marcus-tulius-cicero/index.md diff --git a/content/quotes/marcus-tulius-cicero/index.md b/content/quotes/marcus-tulius-cicero/index.md new file mode 100644 index 0000000..ed60319 --- /dev/null +++ b/content/quotes/marcus-tulius-cicero/index.md @@ -0,0 +1,11 @@ ++++ +title = "Marcus Tulius Cicero" +weight = 109 + +[taxonomies] +tags = ["quotes", "marcus tulius cicero", "persistence", "opinions"] ++++ + +> "Persistence in one opinion has never been considered a merit in political +> leaders." + From 151941be696f4fdd548a7eca71358ba382b142fc Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 11:28:49 -0300 Subject: [PATCH 37/65] Strange de Jim quote --- content/quotes/stange-de-jim/index.md | 11 +++++++++++ content/quotes/strange-de-jim/index.md | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 content/quotes/stange-de-jim/index.md create mode 100644 content/quotes/strange-de-jim/index.md diff --git a/content/quotes/stange-de-jim/index.md b/content/quotes/stange-de-jim/index.md new file mode 100644 index 0000000..b78fd68 --- /dev/null +++ b/content/quotes/stange-de-jim/index.md @@ -0,0 +1,11 @@ ++++ +title = "Strange de Jim" +weight = 115 + +[taxonomies] +tags = ["quotes", "strange de jim", "parents"] ++++ + +> "I called my parents the other night, but I forgot about the time difference. +> They're still living in the fifties." + diff --git a/content/quotes/strange-de-jim/index.md b/content/quotes/strange-de-jim/index.md new file mode 100644 index 0000000..b78fd68 --- /dev/null +++ b/content/quotes/strange-de-jim/index.md @@ -0,0 +1,11 @@ ++++ +title = "Strange de Jim" +weight = 115 + +[taxonomies] +tags = ["quotes", "strange de jim", "parents"] ++++ + +> "I called my parents the other night, but I forgot about the time difference. +> They're still living in the fifties." + From 808fcb64361a4b4293cc3fc51ad36cb09c5cf461 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 11:31:32 -0300 Subject: [PATCH 38/65] Random quote --- content/quotes/random/index.md | 3 +++ content/quotes/stange-de-jim/index.md | 11 ----------- 2 files changed, 3 insertions(+), 11 deletions(-) delete mode 100644 content/quotes/stange-de-jim/index.md diff --git a/content/quotes/random/index.md b/content/quotes/random/index.md index 3b4827a..56c1f0f 100644 --- a/content/quotes/random/index.md +++ b/content/quotes/random/index.md @@ -71,3 +71,6 @@ tags = ["quotes", "graffiti", "education", "misery", "distributed systems", > take it." > "Somehow, the world always affects you more than you affect it." + +> "I suspect the people responsible are the kinds of men who get MBAs +> specifically to boss around people who are smarter than they are." diff --git a/content/quotes/stange-de-jim/index.md b/content/quotes/stange-de-jim/index.md deleted file mode 100644 index b78fd68..0000000 --- a/content/quotes/stange-de-jim/index.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "Strange de Jim" -weight = 115 - -[taxonomies] -tags = ["quotes", "strange de jim", "parents"] -+++ - -> "I called my parents the other night, but I forgot about the time difference. -> They're still living in the fifties." - From ff2822a603b94adcc4967d5c06d577b112f248bd Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 11:32:12 -0300 Subject: [PATCH 39/65] Oscar Wilde quote --- content/quotes/oscar-wilde/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/quotes/oscar-wilde/index.md b/content/quotes/oscar-wilde/index.md index 7c7def3..2f2f78e 100644 --- a/content/quotes/oscar-wilde/index.md +++ b/content/quotes/oscar-wilde/index.md @@ -12,3 +12,7 @@ tags = ["quotes", "oscar wilde", "virtues", "vices", "truth", "questions", > "Questions are never indiscreet, answers sometimes are." > "My own business always bores me to death; I prefer other people's." + +> "Most people are other people. Their thoughts are someone else's opinions, +> their lives a mimicry, their passions a quotation." + From 3ddb93bb4788e25dd8a55a03da3f752ddfca27d3 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 11:32:43 -0300 Subject: [PATCH 40/65] Oscar Wilde quote --- content/quotes/oscar-wilde/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/quotes/oscar-wilde/index.md b/content/quotes/oscar-wilde/index.md index 2f2f78e..1bd6dd6 100644 --- a/content/quotes/oscar-wilde/index.md +++ b/content/quotes/oscar-wilde/index.md @@ -4,7 +4,7 @@ weight = 111 [taxonomies] tags = ["quotes", "oscar wilde", "virtues", "vices", "truth", "questions", -"answers", "gossip"] +"answers", "gossip", "tastes"] +++ > "He hadn't a single redeeming vice." @@ -16,3 +16,4 @@ tags = ["quotes", "oscar wilde", "virtues", "vices", "truth", "questions", > "Most people are other people. Their thoughts are someone else's opinions, > their lives a mimicry, their passions a quotation." +> "I have the simplest tastes. I am always satisfied with the best." From 94cc2862c4cb3916c93af587c7ba07f83120599f Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 11:34:01 -0300 Subject: [PATCH 41/65] Roy Santoro quote --- content/quotes/roy-santoro/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/roy-santoro/index.md diff --git a/content/quotes/roy-santoro/index.md b/content/quotes/roy-santoro/index.md new file mode 100644 index 0000000..5b459e3 --- /dev/null +++ b/content/quotes/roy-santoro/index.md @@ -0,0 +1,9 @@ ++++ +title = "Roy Santoro" +weight = 114 + +[taxonomies] +tags = ["quotes", "roy santoro", "laws"] ++++ + +> "If A = B and B = C, then A = C, except where void or prohibited by law." From 6a4603705e3959e21613026d58cae57be0ae1315 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 11:49:47 -0300 Subject: [PATCH 42/65] Publilius Syrus quote --- content/quotes/publilius-syrus/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/publilius-syrus/index.md diff --git a/content/quotes/publilius-syrus/index.md b/content/quotes/publilius-syrus/index.md new file mode 100644 index 0000000..aa8aa92 --- /dev/null +++ b/content/quotes/publilius-syrus/index.md @@ -0,0 +1,9 @@ ++++ +title = "Publilius Syrus" +weight = 112 + +[taxonomies] +tags = ["quotes", "publilius syrus", "silence"] ++++ + +> "Let a fool hold his tongue and he will pass for a sage." From 4ada29bd815b552632bade9973d5a04cc17048a7 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 11:54:31 -0300 Subject: [PATCH 43/65] B L Whorf quote --- content/quotes/b-l-whorf/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/quotes/b-l-whorf/index.md diff --git a/content/quotes/b-l-whorf/index.md b/content/quotes/b-l-whorf/index.md new file mode 100644 index 0000000..b1f625c --- /dev/null +++ b/content/quotes/b-l-whorf/index.md @@ -0,0 +1,10 @@ ++++ +title = "B. L. Whorf" +weight = 98 + +[taxonomies] +tags = ["quotes", "b l whorf", "languages"] ++++ + +> "Language shapes the way we think, and determines what we can think about." + From f10d46761e16eeb4dc81c73c3275c1f18d607ea4 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 11:57:42 -0300 Subject: [PATCH 44/65] Donald J Atwood quote --- content/quotes/donald-j-atwood/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/donald-j-atwood/index.md diff --git a/content/quotes/donald-j-atwood/index.md b/content/quotes/donald-j-atwood/index.md new file mode 100644 index 0000000..782f0f4 --- /dev/null +++ b/content/quotes/donald-j-atwood/index.md @@ -0,0 +1,11 @@ ++++ +title = "Donald J. Atwood" +weight = 100 + +[taxonomies] +tags = ["quotes", "donald j atwood", "improvements"] ++++ + +> "To take a significant step forward, you must make a series of finite +> improvements." + From 58b044f456c1d3793d1ee33ede9f3366b8045321 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 11:58:59 -0300 Subject: [PATCH 45/65] Ron McAfee quote --- content/quotes/ron-mcafee/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/ron-mcafee/index.md diff --git a/content/quotes/ron-mcafee/index.md b/content/quotes/ron-mcafee/index.md new file mode 100644 index 0000000..aac0e9f --- /dev/null +++ b/content/quotes/ron-mcafee/index.md @@ -0,0 +1,9 @@ ++++ +title = "Ron McAfee" +weight = 114 + +[taxonomies] +tags = ["quotes", "ron mcafee", "theories"] ++++ + +> "Anything is possible on paper." From c600e7f343cfd454c752f16a87de8beb558b2c2a Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 11:59:55 -0300 Subject: [PATCH 46/65] John Stuart Mill quote --- content/quotes/john-stuart-mill/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/john-stuart-mill/index.md diff --git a/content/quotes/john-stuart-mill/index.md b/content/quotes/john-stuart-mill/index.md new file mode 100644 index 0000000..1fbd3a3 --- /dev/null +++ b/content/quotes/john-stuart-mill/index.md @@ -0,0 +1,9 @@ ++++ +title = "John Stuart Mill" +weight = 106 + +[taxonomies] +tags = ["quotes", "john stuart mill", "happiness"] ++++ + +> "Ask yourself whether you are happy and you cease to be so." From c7246e04b508f6215894be9cac59957c40b61dde Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:01:55 -0300 Subject: [PATCH 47/65] Nathaniel Howe quote --- content/quotes/nathaniel-howe/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/quotes/nathaniel-howe/index.md diff --git a/content/quotes/nathaniel-howe/index.md b/content/quotes/nathaniel-howe/index.md new file mode 100644 index 0000000..7b80cc7 --- /dev/null +++ b/content/quotes/nathaniel-howe/index.md @@ -0,0 +1,10 @@ ++++ +title = "Nathaniel Howe" +weight = 110 + +[taxonomies] +tags = ["quotes", "nathaniel howe", "saints"] ++++ + +> "The way of the world is to praise dead saints and prosecute live ones." + From 8b2981e4a790da060fcf325d206d9ad115f57e10 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:02:35 -0300 Subject: [PATCH 48/65] Star Trek quote --- content/quotes/star-trek/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/quotes/star-trek/index.md b/content/quotes/star-trek/index.md index ecf0f07..da1324f 100644 --- a/content/quotes/star-trek/index.md +++ b/content/quotes/star-trek/index.md @@ -23,6 +23,9 @@ tags = ["star trek", "quotes", "eve mchuron", "spock", "rojan", "sarek"] > "Violence in reality is quite different from theory." -- Spock, "The Cloud Minders", stardate 5818.4 +> "Men of peace usually are [brave]." +-- Spock, "The Savage Curtain", stardate 5906.5 + > "We do not colonize. We conquer. We rule. There is no other way for us." -- Rojan, "By Any Other Name", stardate 4657.5 From 19da2723baa353bed5b5c34a8b5aed00daedea2b Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:03:07 -0300 Subject: [PATCH 49/65] Mark Twain quote --- content/quotes/mark-twain/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/quotes/mark-twain/index.md b/content/quotes/mark-twain/index.md index b305a96..c87e9be 100644 --- a/content/quotes/mark-twain/index.md +++ b/content/quotes/mark-twain/index.md @@ -4,7 +4,7 @@ weight = 109 [taxonomies] tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing", -"right"] +"right", "speeches"] +++ > "Few things are harder to put up with than the annoyance of a good example." @@ -21,3 +21,4 @@ tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing", > "If it is a Miracle, any sort of evidence will answer, but if it is a Fact, > proof is necessary." +> "It usually takes more than three weeks to prepare a good impromptu speech." From 713cbc791293ffa5a6581c2369a58ee9e94bbe8e Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:04:40 -0300 Subject: [PATCH 50/65] Random quote --- content/quotes/random/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/quotes/random/index.md b/content/quotes/random/index.md index 56c1f0f..8073072 100644 --- a/content/quotes/random/index.md +++ b/content/quotes/random/index.md @@ -74,3 +74,5 @@ tags = ["quotes", "graffiti", "education", "misery", "distributed systems", > "I suspect the people responsible are the kinds of men who get MBAs > specifically to boss around people who are smarter than they are." + +> "Talk is cheap because supply always exceeds demand." From 6ace645c2eae20d03cb7a6f9c8e9d34b1a547f6a Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:05:48 -0300 Subject: [PATCH 51/65] deGrasse quote --- content/quotes/neil-degrasse-tyson/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/quotes/neil-degrasse-tyson/index.md b/content/quotes/neil-degrasse-tyson/index.md index 2fc4d63..073ddbe 100644 --- a/content/quotes/neil-degrasse-tyson/index.md +++ b/content/quotes/neil-degrasse-tyson/index.md @@ -3,7 +3,7 @@ title = "Neil deGrasse Tyson" weight = 110 [taxonomies] -tags = ["quotes", "neil degrasse tyson", "life"] +tags = ["quotes", "neil degrasse tyson", "life", "past", "future"] +++ > "Life is fragile We live 80 years. But we’re dead after 8 weeks without @@ -15,3 +15,6 @@ tags = ["quotes", "neil degrasse tyson", "life"] > "The urge to want some bit of information to be true often clouds our > ability to assess why that information may be false." +> "We are prisoners of the present, in perpetual transition from an +> inaccessible past to an unknowable future." + From 4515f8e3ee8b3d94fd14f4599090f72e38e251a8 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:12:36 -0300 Subject: [PATCH 52/65] Kushwant Singh quote --- content/quotes/kushwant-singh/index.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 content/quotes/kushwant-singh/index.md diff --git a/content/quotes/kushwant-singh/index.md b/content/quotes/kushwant-singh/index.md new file mode 100644 index 0000000..b5bb5f6 --- /dev/null +++ b/content/quotes/kushwant-singh/index.md @@ -0,0 +1,12 @@ ++++ +title = "Kushwant Singh" +weight = 107 + +[taxonomies] +tags = ["quotes", "kushwant singh", "fascism", "hate"] ++++ + +> "Every fascist regime needs communities and groups it can demonise in order +> to thrive. It starts with one group or two. But it never ends there. A +> movement built on hate can only sustain itself by continually creating fear +> and strife". From fa0dbe513d5bda23942b3b971f2d017be2a3cb28 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:13:20 -0300 Subject: [PATCH 53/65] Star Trek quote --- content/quotes/star-trek/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/quotes/star-trek/index.md b/content/quotes/star-trek/index.md index da1324f..0f415d4 100644 --- a/content/quotes/star-trek/index.md +++ b/content/quotes/star-trek/index.md @@ -49,6 +49,9 @@ tags = ["star trek", "quotes", "eve mchuron", "spock", "rojan", "sarek"] > "Suffocating together ... would create heroic camaraderie." -- Khan Noonian Singh, "Space Seed", stardate 3142.8 +> "There are certain things men must do to remain men." +-- Kirk, "The Ultimate Computer", stardate 4929.4 + > "What terrible way to die." > "There are no good ways." -- Sulu and Kirk, "That Which Survives", stardate unknown From b11b646424f71c9d5b7064e25b0ab4bf254f7f9c Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:14:21 -0300 Subject: [PATCH 54/65] Norman Douglas quote --- content/quotes/norman-douglas/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/norman-douglas/index.md diff --git a/content/quotes/norman-douglas/index.md b/content/quotes/norman-douglas/index.md new file mode 100644 index 0000000..b32b852 --- /dev/null +++ b/content/quotes/norman-douglas/index.md @@ -0,0 +1,9 @@ ++++ +title = "Norman Douglas" +weight = 110 + +[taxonomies] +tags = ["quotes", "norman douglas", "nations", "advertisements", "ads"] ++++ + +> "You can tell the ideals of a nation by its advertisements." From 64a6c7098826b86c3e2344fe2a3a03b294aa923f Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:15:21 -0300 Subject: [PATCH 55/65] John Keats quote --- content/quotes/john-keats/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/john-keats/index.md diff --git a/content/quotes/john-keats/index.md b/content/quotes/john-keats/index.md new file mode 100644 index 0000000..0188423 --- /dev/null +++ b/content/quotes/john-keats/index.md @@ -0,0 +1,9 @@ ++++ +title = "John Keats" +weight = 106 + +[taxonomies] +tags = ["quotes", "john keats", "philosophy"] ++++ + +> "Philosophy will clip an angel's wings." From 68c28d758ce7a6c3fddcfd32880b8d9d08153bf1 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:16:13 -0300 Subject: [PATCH 56/65] Muhammad Ali quote --- content/quotes/muhammad-ali/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/quotes/muhammad-ali/index.md b/content/quotes/muhammad-ali/index.md index 70193bc..5e30cf0 100644 --- a/content/quotes/muhammad-ali/index.md +++ b/content/quotes/muhammad-ali/index.md @@ -3,8 +3,12 @@ title = "Muhammad Ali" weight = 109 [taxonomies] -tags = ["quotes", "muhammad ali", "jokes"] +tags = ["quotes", "muhammad ali", "jokes", "offences"] +++ > "My way of joking is to tell the truth. That's the funniest joke in the > world." + +> "If they can make penicillin out of moldy bread, they can sure make +> something out of you." + From 472f654c71d9d23d8dc31d95d948112ee93b49f2 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:16:48 -0300 Subject: [PATCH 57/65] Star Trek quote --- content/quotes/star-trek/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/quotes/star-trek/index.md b/content/quotes/star-trek/index.md index 0f415d4..b8254b4 100644 --- a/content/quotes/star-trek/index.md +++ b/content/quotes/star-trek/index.md @@ -6,6 +6,9 @@ weight = 200 tags = ["star trek", "quotes", "eve mchuron", "spock", "rojan", "sarek"] +++ +> "Vulcans believe peace should not depend on force." +-- Amanda, "Journey to Babel", stardate 3842.3 + > "Oh, that sound of male ego. You travel halfway across the galaxy and it's > still the same song." -- Eve McHuron, "Mudd's Women", stardate 1330.1 From 67b3f228e827970606c3996202f5f8a023a8517e Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:17:35 -0300 Subject: [PATCH 58/65] Star Trek quote --- content/quotes/star-trek/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/quotes/star-trek/index.md b/content/quotes/star-trek/index.md index b8254b4..209dd52 100644 --- a/content/quotes/star-trek/index.md +++ b/content/quotes/star-trek/index.md @@ -23,6 +23,9 @@ tags = ["star trek", "quotes", "eve mchuron", "spock", "rojan", "sarek"] > your human intuition." -- Spock, "Assignment: Earth", stardate unknown +> "Insufficient facts always invite danger." +-- Spock, "Space Seed", stardate 3141.9 + > "Violence in reality is quite different from theory." -- Spock, "The Cloud Minders", stardate 5818.4 From 7825ea8aab8fa2ec7af9a139d25bcc9665be881b Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:19:01 -0300 Subject: [PATCH 59/65] Voltaire quote --- content/quotes/voltaire/index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/quotes/voltaire/index.md diff --git a/content/quotes/voltaire/index.md b/content/quotes/voltaire/index.md new file mode 100644 index 0000000..4802f62 --- /dev/null +++ b/content/quotes/voltaire/index.md @@ -0,0 +1,9 @@ ++++ +title = "Voltaire" +weight = 118 + +[taxonomies] +tags = ["quotes", "voltaire", "illusions"] ++++ + +> "Illusion is the first of all pleasures." From 1e242a42d5edc25699fce7b942cb10044d1818e3 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:20:06 -0300 Subject: [PATCH 60/65] Random quote --- content/quotes/random/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/quotes/random/index.md b/content/quotes/random/index.md index 8073072..5326195 100644 --- a/content/quotes/random/index.md +++ b/content/quotes/random/index.md @@ -6,7 +6,8 @@ weight = 300 tags = ["quotes", "graffiti", "education", "misery", "distributed systems", "the day the earth stood still", "atheism", "religion", "following", "regrets", "money", "perfection", "practice", "nerds", "totalitarianism", -"materialism", "god", "time", "privacy", "guests", "proverbs", "russian"] +"materialism", "god", "time", "privacy", "guests", "proverbs", "russian", +"incompetence"] +++ > If you took all the students that felt asleep in class and laid them end to @@ -76,3 +77,6 @@ tags = ["quotes", "graffiti", "education", "misery", "distributed systems", > specifically to boss around people who are smarter than they are." > "Talk is cheap because supply always exceeds demand." + +> "If you had better tools, you could more effectively demonstrate your +> total incompetence." From 82388d17c7809dab03829d8e71f7cf96860bffa8 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:22:33 -0300 Subject: [PATCH 61/65] Publilius Syrus quote --- content/quotes/publilius-syrus/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/quotes/publilius-syrus/index.md b/content/quotes/publilius-syrus/index.md index aa8aa92..663d60a 100644 --- a/content/quotes/publilius-syrus/index.md +++ b/content/quotes/publilius-syrus/index.md @@ -3,7 +3,9 @@ title = "Publilius Syrus" weight = 112 [taxonomies] -tags = ["quotes", "publilius syrus", "silence"] +tags = ["quotes", "publilius syrus", "silence", "promises", "performance"] +++ > "Let a fool hold his tongue and he will pass for a sage." + +> "Never promise more than you can perform." From d98b49f74f5b3992bdf11659ab6adba07eb47a29 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:23:45 -0300 Subject: [PATCH 62/65] Dalai Lama quote --- content/quotes/dalai-lama/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/quotes/dalai-lama/index.md diff --git a/content/quotes/dalai-lama/index.md b/content/quotes/dalai-lama/index.md new file mode 100644 index 0000000..e321225 --- /dev/null +++ b/content/quotes/dalai-lama/index.md @@ -0,0 +1,10 @@ ++++ +title = "Dalai Lama" +weight = 100 + +[taxonomies] +tags = ["quotes", "dalai lama", "help"] ++++ + +> "If you can, help others. If you can't, at least don't hurt others." + From a3ba09a7ea923960a54402048e719be6ccf8675a Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 12:25:17 -0300 Subject: [PATCH 63/65] Carl Jung quote --- content/quotes/carl-jung/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 content/quotes/carl-jung/index.md diff --git a/content/quotes/carl-jung/index.md b/content/quotes/carl-jung/index.md new file mode 100644 index 0000000..99329b0 --- /dev/null +++ b/content/quotes/carl-jung/index.md @@ -0,0 +1,11 @@ ++++ +title = "Carl Jung" +weight = 99 + +[taxonomies] +tags = ["quotes", "carl jung", "personalities"] ++++ + +> "The meeting of two personalities is like the contact of two +> chemical substances: if there is any reaction, both are transformed." + From f6419e68f421a6051438d7b2469f086cbf12a29c Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 13:29:57 -0300 Subject: [PATCH 64/65] links for 2020-07-03 --- content/links/20200703.md | 63 +++++++++++++++++++++++++++++++++ content/links/20200703.pt.md | 68 ++++++++++++++++++++++++++++++++++++ 2 files changed, 131 insertions(+) create mode 100644 content/links/20200703.md create mode 100644 content/links/20200703.pt.md diff --git a/content/links/20200703.md b/content/links/20200703.md new file mode 100644 index 0000000..8691968 --- /dev/null +++ b/content/links/20200703.md @@ -0,0 +1,63 @@ ++++ +title = "Commented Links for 2020-07-03" +date = 2020-07-03 + +[taxonomies] +tags = ["links", "rust", "async", "tide", "github", "web apis", "fira", +"fonts", "runbook", "zig"] ++++ + +Rust Async and Tide, Github Redesign, Apple Declining Web APIs, Fira Font, +Runbooks, Zig Async. + + + +## [Image decay as a service](https://fasterthanli.me/articles/image-decay-as-a-service) + +Although it mentions "Image", this post is actually a very good (as Amos' +posts usually are) explaining async Rust and Tide from the very beginning. + +## [Redesigning Github repository page](https://tonsky.me/blog/github-redesign/) + +Github presented a new layout recently, but some things are not... quite in +place. + +Here, Nikita explores the interface step by step, checking every element and +how to make them work. + +## [Apple declined to implement 16 Web APIs in Safari due to privacy concerns](https://www.zdnet.com/article/apple-declined-to-implement-16-web-apis-in-safari-due-to-privacy-concerns/) + +You have one chance to figure out who proposed most of those 16 APIs. + +Also, not to just pick on anyone or defend Apple, but some of those are +completely absurd for a web thing -- unless you want the web to become a whole +operating system, something that would make a lot more sense in, I don't know, +a native application running on a real operating system, maybe? + +## [Fira](https://mozilla.github.io/Fira/) + +Mozilla took the task of keeping Fira -- and Fira Code -- fonts. + +The only issue I found: No ligatures on the mono version. There is an issue +open since 2016 but the ligatures are not there (at least, the common ones, +like "==", "->" and "=>", that make those appear as a single character). + +Sadly, for now, I'm sticking with +[Cascadia](https://github.com/microsoft/cascadia-code/releases). + +## [The Runbooks Project](https://containersolutions.github.io/runbooks/) + +I'm a huge fan of Runbooks. Why? Because, some day, you'll be on call and +things will go wrong and you'll have no idea what to do, but there it is, a +list of things that can go wrong and how to fix them. + +And here are some generic runbooks to take care of common things when they go +wrong. + +## [What is Zig's “Colorblind” Async/Await?](https://kristoff.it/blog/zig-colorblind-async-await/) + +Async/await is in all rage these days, and Zig is a small language that takes +a lot of C, but tries to fix some of its issues. + +And here is an introduction directly of async/await in Zig, so you can get a +good "feel" of the language. diff --git a/content/links/20200703.pt.md b/content/links/20200703.pt.md new file mode 100644 index 0000000..1a79766 --- /dev/null +++ b/content/links/20200703.pt.md @@ -0,0 +1,68 @@ ++++ +title = "Links Comentados de 2020-07-03" +date = 2020-07-03 + +[taxonomies] +tags = ["links"] ++++ + +Async Rust e Tide, Redesign do Github, Apple Se Recusando a Implementar Web +APIs, Fonte Fira, Runbooks, Async Zig. + + + +## [Image decay as a service](https://fasterthanli.me/articles/image-decay-as-a-service) + +Embora mencione "Imagem", esse post é bem completo (como os posts do Amos +normalmente são), explicando Rust assíncrono e Tide desde o começo. + +## [Redesigning Github repository page](https://tonsky.me/blog/github-redesign/) + +Github apresentou um novo layout recentemente, mas algumas coisas não estão... +bem no lugar. + +Aqui, Nikita explora a interface passo a passo, verificando cada elemento e +como fazer como que eles funcionem. + +## [Apple declined to implement 16 Web APIs in Safari due to privacy concerns](https://www.zdnet.com/article/apple-declined-to-implement-16-web-apis-in-safari-due-to-privacy-concerns/) + +Lhes dou uma chance para descobrir quem foi que propôs essas 16 APIs. + +Não pegando no pé da Apple ou querendo botar a culpa em alguém, mas algumas +dessas APIs parecem ser completamente absurdas para uma coisa da web -- a não +ser que você queria que a web se torne um sistema operacional inteiro, algo +que faria mais sentido em, sei lá, numa aplicação nativa rodando num sistema +operacional, talvez? + +## [Fira](https://mozilla.github.io/Fira/) + +Mozilla se colocou para manter a fonte Fira -- e a Fira Code. + +O único problema que eu achei: Não existem ligaduras na versão monoespaçada. +Existe uma issue aberta desde 2016 mas as ligaduras não existem ainda (pelo +menos, as mais comums, como "==", "->" e "=>", fazendo com que essas apareçam +como um único caractere). + +Por enquanto, eu vou continuar com +[Cascadia](https://github.com/microsoft/cascadia-code/releases). + +## [The Runbooks Project](https://containersolutions.github.io/runbooks/) + +Eu sou um grande fã de Runbooks. Por que? Porque, algum dia, você vai ficar no +sobreaviso e as coisas vão dar errado e você não vai saber o que fazer mas, lá +está, uma lista de coisas que podem dar errado e como corrigir. + +E aqui temos alguns runbooks genéricos para cuidar de coisas comuns que dão +errado. + +## [What is Zig's “Colorblind” Async/Await?](https://kristoff.it/blog/zig-colorblind-async-await/) + +Async/await está na moda atualmente, e Zig é uma pequena linguagem que pegou +um monte de coisa de C, mas tenta corrigir esses problemas. + +E aqui está uma introdução direta ao async/await com Zig, e assim você pode +pegar uma boa ideia de como é a linguagem. + + From 5349ca0d2b7f31c7d1a67b5edeacc80f8323ae6d Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 3 Jul 2020 13:30:20 -0300 Subject: [PATCH 65/65] Squashed commit of the following: commit f6419e68f421a6051438d7b2469f086cbf12a29c Author: Julio Biason Date: Fri Jul 3 13:29:57 2020 -0300 links for 2020-07-03 commit a3ba09a7ea923960a54402048e719be6ccf8675a Author: Julio Biason Date: Fri Jul 3 12:25:17 2020 -0300 Carl Jung quote commit d98b49f74f5b3992bdf11659ab6adba07eb47a29 Author: Julio Biason Date: Fri Jul 3 12:23:45 2020 -0300 Dalai Lama quote commit 82388d17c7809dab03829d8e71f7cf96860bffa8 Author: Julio Biason Date: Fri Jul 3 12:22:33 2020 -0300 Publilius Syrus quote commit 1e242a42d5edc25699fce7b942cb10044d1818e3 Author: Julio Biason Date: Fri Jul 3 12:20:06 2020 -0300 Random quote commit 7825ea8aab8fa2ec7af9a139d25bcc9665be881b Author: Julio Biason Date: Fri Jul 3 12:19:01 2020 -0300 Voltaire quote commit 67b3f228e827970606c3996202f5f8a023a8517e Author: Julio Biason Date: Fri Jul 3 12:17:35 2020 -0300 Star Trek quote commit 472f654c71d9d23d8dc31d95d948112ee93b49f2 Author: Julio Biason Date: Fri Jul 3 12:16:48 2020 -0300 Star Trek quote commit 68c28d758ce7a6c3fddcfd32880b8d9d08153bf1 Author: Julio Biason Date: Fri Jul 3 12:16:13 2020 -0300 Muhammad Ali quote commit 64a6c7098826b86c3e2344fe2a3a03b294aa923f Author: Julio Biason Date: Fri Jul 3 12:15:21 2020 -0300 John Keats quote commit b11b646424f71c9d5b7064e25b0ab4bf254f7f9c Author: Julio Biason Date: Fri Jul 3 12:14:21 2020 -0300 Norman Douglas quote commit fa0dbe513d5bda23942b3b971f2d017be2a3cb28 Author: Julio Biason Date: Fri Jul 3 12:13:20 2020 -0300 Star Trek quote commit 4515f8e3ee8b3d94fd14f4599090f72e38e251a8 Author: Julio Biason Date: Fri Jul 3 12:12:36 2020 -0300 Kushwant Singh quote commit 6ace645c2eae20d03cb7a6f9c8e9d34b1a547f6a Author: Julio Biason Date: Fri Jul 3 12:05:48 2020 -0300 deGrasse quote commit 713cbc791293ffa5a6581c2369a58ee9e94bbe8e Author: Julio Biason Date: Fri Jul 3 12:04:40 2020 -0300 Random quote commit 19da2723baa353bed5b5c34a8b5aed00daedea2b Author: Julio Biason Date: Fri Jul 3 12:03:07 2020 -0300 Mark Twain quote commit 8b2981e4a790da060fcf325d206d9ad115f57e10 Author: Julio Biason Date: Fri Jul 3 12:02:35 2020 -0300 Star Trek quote commit c7246e04b508f6215894be9cac59957c40b61dde Author: Julio Biason Date: Fri Jul 3 12:01:55 2020 -0300 Nathaniel Howe quote commit c600e7f343cfd454c752f16a87de8beb558b2c2a Author: Julio Biason Date: Fri Jul 3 11:59:55 2020 -0300 John Stuart Mill quote commit 58b044f456c1d3793d1ee33ede9f3366b8045321 Author: Julio Biason Date: Fri Jul 3 11:58:59 2020 -0300 Ron McAfee quote commit f10d46761e16eeb4dc81c73c3275c1f18d607ea4 Author: Julio Biason Date: Fri Jul 3 11:57:42 2020 -0300 Donald J Atwood quote commit 4ada29bd815b552632bade9973d5a04cc17048a7 Author: Julio Biason Date: Fri Jul 3 11:54:31 2020 -0300 B L Whorf quote commit 6a4603705e3959e21613026d58cae57be0ae1315 Author: Julio Biason Date: Fri Jul 3 11:49:47 2020 -0300 Publilius Syrus quote commit 94cc2862c4cb3916c93af587c7ba07f83120599f Author: Julio Biason Date: Fri Jul 3 11:34:01 2020 -0300 Roy Santoro quote commit 3ddb93bb4788e25dd8a55a03da3f752ddfca27d3 Author: Julio Biason Date: Fri Jul 3 11:32:43 2020 -0300 Oscar Wilde quote commit ff2822a603b94adcc4967d5c06d577b112f248bd Author: Julio Biason Date: Fri Jul 3 11:32:12 2020 -0300 Oscar Wilde quote commit 808fcb64361a4b4293cc3fc51ad36cb09c5cf461 Author: Julio Biason Date: Fri Jul 3 11:31:32 2020 -0300 Random quote commit 151941be696f4fdd548a7eca71358ba382b142fc Author: Julio Biason Date: Fri Jul 3 11:28:49 2020 -0300 Strange de Jim quote commit 43ffd484475754b4d0c4199e84cc421e5a7950d2 Author: Julio Biason Date: Fri Jul 3 10:46:29 2020 -0300 Marcus Tulius Cicero quote commit 6ef90824b2f53eac9ecd451d5b583bfa3383ae27 Author: Julio Biason Date: Fri Jul 3 10:44:03 2020 -0300 Anne Frank quote commit fe5ddded60b46e81a162701f137f1910f5bb8c01 Author: Julio Biason Date: Fri Jul 3 10:38:19 2020 -0300 Alan Kay quote commit a26b08722bc4826aad76cd62d069792a6e0bd750 Author: Julio Biason Date: Fri Jul 3 10:36:19 2020 -0300 Random quote commit 47bdb56046508bb85701d5da54c9b8e19286ff25 Author: Julio Biason Date: Fri Jul 3 10:12:44 2020 -0300 Finlay Peter Dunne quote --- content/links/20200703.md | 63 ++++++++++++++++++ content/links/20200703.pt.md | 68 ++++++++++++++++++++ content/quotes/alan-kay/index.md | 11 ++++ content/quotes/anne-frank/index.md | 9 +++ content/quotes/b-l-whorf/index.md | 10 +++ content/quotes/carl-jung/index.md | 11 ++++ content/quotes/dalai-lama/index.md | 10 +++ content/quotes/donald-j-atwood/index.md | 11 ++++ content/quotes/finlay-peter-dunne/index.md | 9 +++ content/quotes/john-keats/index.md | 9 +++ content/quotes/john-stuart-mill/index.md | 9 +++ content/quotes/kushwant-singh/index.md | 12 ++++ content/quotes/marcus-tulius-cicero/index.md | 11 ++++ content/quotes/mark-twain/index.md | 3 +- content/quotes/muhammad-ali/index.md | 6 +- content/quotes/nathaniel-howe/index.md | 10 +++ content/quotes/neil-degrasse-tyson/index.md | 5 +- content/quotes/norman-douglas/index.md | 9 +++ content/quotes/oscar-wilde/index.md | 7 +- content/quotes/publilius-syrus/index.md | 11 ++++ content/quotes/random/index.md | 13 +++- content/quotes/ron-mcafee/index.md | 9 +++ content/quotes/roy-santoro/index.md | 9 +++ content/quotes/star-trek/index.md | 12 ++++ content/quotes/strange-de-jim/index.md | 11 ++++ content/quotes/voltaire/index.md | 9 +++ 26 files changed, 352 insertions(+), 5 deletions(-) create mode 100644 content/links/20200703.md create mode 100644 content/links/20200703.pt.md create mode 100644 content/quotes/alan-kay/index.md create mode 100644 content/quotes/anne-frank/index.md create mode 100644 content/quotes/b-l-whorf/index.md create mode 100644 content/quotes/carl-jung/index.md create mode 100644 content/quotes/dalai-lama/index.md create mode 100644 content/quotes/donald-j-atwood/index.md create mode 100644 content/quotes/finlay-peter-dunne/index.md create mode 100644 content/quotes/john-keats/index.md create mode 100644 content/quotes/john-stuart-mill/index.md create mode 100644 content/quotes/kushwant-singh/index.md create mode 100644 content/quotes/marcus-tulius-cicero/index.md create mode 100644 content/quotes/nathaniel-howe/index.md create mode 100644 content/quotes/norman-douglas/index.md create mode 100644 content/quotes/publilius-syrus/index.md create mode 100644 content/quotes/ron-mcafee/index.md create mode 100644 content/quotes/roy-santoro/index.md create mode 100644 content/quotes/strange-de-jim/index.md create mode 100644 content/quotes/voltaire/index.md diff --git a/content/links/20200703.md b/content/links/20200703.md new file mode 100644 index 0000000..8691968 --- /dev/null +++ b/content/links/20200703.md @@ -0,0 +1,63 @@ ++++ +title = "Commented Links for 2020-07-03" +date = 2020-07-03 + +[taxonomies] +tags = ["links", "rust", "async", "tide", "github", "web apis", "fira", +"fonts", "runbook", "zig"] ++++ + +Rust Async and Tide, Github Redesign, Apple Declining Web APIs, Fira Font, +Runbooks, Zig Async. + + + +## [Image decay as a service](https://fasterthanli.me/articles/image-decay-as-a-service) + +Although it mentions "Image", this post is actually a very good (as Amos' +posts usually are) explaining async Rust and Tide from the very beginning. + +## [Redesigning Github repository page](https://tonsky.me/blog/github-redesign/) + +Github presented a new layout recently, but some things are not... quite in +place. + +Here, Nikita explores the interface step by step, checking every element and +how to make them work. + +## [Apple declined to implement 16 Web APIs in Safari due to privacy concerns](https://www.zdnet.com/article/apple-declined-to-implement-16-web-apis-in-safari-due-to-privacy-concerns/) + +You have one chance to figure out who proposed most of those 16 APIs. + +Also, not to just pick on anyone or defend Apple, but some of those are +completely absurd for a web thing -- unless you want the web to become a whole +operating system, something that would make a lot more sense in, I don't know, +a native application running on a real operating system, maybe? + +## [Fira](https://mozilla.github.io/Fira/) + +Mozilla took the task of keeping Fira -- and Fira Code -- fonts. + +The only issue I found: No ligatures on the mono version. There is an issue +open since 2016 but the ligatures are not there (at least, the common ones, +like "==", "->" and "=>", that make those appear as a single character). + +Sadly, for now, I'm sticking with +[Cascadia](https://github.com/microsoft/cascadia-code/releases). + +## [The Runbooks Project](https://containersolutions.github.io/runbooks/) + +I'm a huge fan of Runbooks. Why? Because, some day, you'll be on call and +things will go wrong and you'll have no idea what to do, but there it is, a +list of things that can go wrong and how to fix them. + +And here are some generic runbooks to take care of common things when they go +wrong. + +## [What is Zig's “Colorblind” Async/Await?](https://kristoff.it/blog/zig-colorblind-async-await/) + +Async/await is in all rage these days, and Zig is a small language that takes +a lot of C, but tries to fix some of its issues. + +And here is an introduction directly of async/await in Zig, so you can get a +good "feel" of the language. diff --git a/content/links/20200703.pt.md b/content/links/20200703.pt.md new file mode 100644 index 0000000..1a79766 --- /dev/null +++ b/content/links/20200703.pt.md @@ -0,0 +1,68 @@ ++++ +title = "Links Comentados de 2020-07-03" +date = 2020-07-03 + +[taxonomies] +tags = ["links"] ++++ + +Async Rust e Tide, Redesign do Github, Apple Se Recusando a Implementar Web +APIs, Fonte Fira, Runbooks, Async Zig. + + + +## [Image decay as a service](https://fasterthanli.me/articles/image-decay-as-a-service) + +Embora mencione "Imagem", esse post é bem completo (como os posts do Amos +normalmente são), explicando Rust assíncrono e Tide desde o começo. + +## [Redesigning Github repository page](https://tonsky.me/blog/github-redesign/) + +Github apresentou um novo layout recentemente, mas algumas coisas não estão... +bem no lugar. + +Aqui, Nikita explora a interface passo a passo, verificando cada elemento e +como fazer como que eles funcionem. + +## [Apple declined to implement 16 Web APIs in Safari due to privacy concerns](https://www.zdnet.com/article/apple-declined-to-implement-16-web-apis-in-safari-due-to-privacy-concerns/) + +Lhes dou uma chance para descobrir quem foi que propôs essas 16 APIs. + +Não pegando no pé da Apple ou querendo botar a culpa em alguém, mas algumas +dessas APIs parecem ser completamente absurdas para uma coisa da web -- a não +ser que você queria que a web se torne um sistema operacional inteiro, algo +que faria mais sentido em, sei lá, numa aplicação nativa rodando num sistema +operacional, talvez? + +## [Fira](https://mozilla.github.io/Fira/) + +Mozilla se colocou para manter a fonte Fira -- e a Fira Code. + +O único problema que eu achei: Não existem ligaduras na versão monoespaçada. +Existe uma issue aberta desde 2016 mas as ligaduras não existem ainda (pelo +menos, as mais comums, como "==", "->" e "=>", fazendo com que essas apareçam +como um único caractere). + +Por enquanto, eu vou continuar com +[Cascadia](https://github.com/microsoft/cascadia-code/releases). + +## [The Runbooks Project](https://containersolutions.github.io/runbooks/) + +Eu sou um grande fã de Runbooks. Por que? Porque, algum dia, você vai ficar no +sobreaviso e as coisas vão dar errado e você não vai saber o que fazer mas, lá +está, uma lista de coisas que podem dar errado e como corrigir. + +E aqui temos alguns runbooks genéricos para cuidar de coisas comuns que dão +errado. + +## [What is Zig's “Colorblind” Async/Await?](https://kristoff.it/blog/zig-colorblind-async-await/) + +Async/await está na moda atualmente, e Zig é uma pequena linguagem que pegou +um monte de coisa de C, mas tenta corrigir esses problemas. + +E aqui está uma introdução direta ao async/await com Zig, e assim você pode +pegar uma boa ideia de como é a linguagem. + + diff --git a/content/quotes/alan-kay/index.md b/content/quotes/alan-kay/index.md new file mode 100644 index 0000000..5b779e6 --- /dev/null +++ b/content/quotes/alan-kay/index.md @@ -0,0 +1,11 @@ ++++ +title = "Alan Kay" +weight = 97 + +[taxonomies] +tags = ["quotes", "alan kay", "research"] ++++ + +> "The tree of research must from time to time be refreshed with the blood +> of bean counters." + diff --git a/content/quotes/anne-frank/index.md b/content/quotes/anne-frank/index.md new file mode 100644 index 0000000..77e7b59 --- /dev/null +++ b/content/quotes/anne-frank/index.md @@ -0,0 +1,9 @@ ++++ +title = "Anne Frank" +weight = 97 + +[taxonomies] +tags = ["quotes", "anne frank", "goodness"] ++++ + +> "In spite of everything, I still believe that people are good at heart." diff --git a/content/quotes/b-l-whorf/index.md b/content/quotes/b-l-whorf/index.md new file mode 100644 index 0000000..b1f625c --- /dev/null +++ b/content/quotes/b-l-whorf/index.md @@ -0,0 +1,10 @@ ++++ +title = "B. L. Whorf" +weight = 98 + +[taxonomies] +tags = ["quotes", "b l whorf", "languages"] ++++ + +> "Language shapes the way we think, and determines what we can think about." + diff --git a/content/quotes/carl-jung/index.md b/content/quotes/carl-jung/index.md new file mode 100644 index 0000000..99329b0 --- /dev/null +++ b/content/quotes/carl-jung/index.md @@ -0,0 +1,11 @@ ++++ +title = "Carl Jung" +weight = 99 + +[taxonomies] +tags = ["quotes", "carl jung", "personalities"] ++++ + +> "The meeting of two personalities is like the contact of two +> chemical substances: if there is any reaction, both are transformed." + diff --git a/content/quotes/dalai-lama/index.md b/content/quotes/dalai-lama/index.md new file mode 100644 index 0000000..e321225 --- /dev/null +++ b/content/quotes/dalai-lama/index.md @@ -0,0 +1,10 @@ ++++ +title = "Dalai Lama" +weight = 100 + +[taxonomies] +tags = ["quotes", "dalai lama", "help"] ++++ + +> "If you can, help others. If you can't, at least don't hurt others." + diff --git a/content/quotes/donald-j-atwood/index.md b/content/quotes/donald-j-atwood/index.md new file mode 100644 index 0000000..782f0f4 --- /dev/null +++ b/content/quotes/donald-j-atwood/index.md @@ -0,0 +1,11 @@ ++++ +title = "Donald J. Atwood" +weight = 100 + +[taxonomies] +tags = ["quotes", "donald j atwood", "improvements"] ++++ + +> "To take a significant step forward, you must make a series of finite +> improvements." + diff --git a/content/quotes/finlay-peter-dunne/index.md b/content/quotes/finlay-peter-dunne/index.md new file mode 100644 index 0000000..f1bf5a3 --- /dev/null +++ b/content/quotes/finlay-peter-dunne/index.md @@ -0,0 +1,9 @@ ++++ +title = "Finlay Peter Dunne" +weight = 102 + +[taxonomies] +tags = ["quotes", "finlay peter dunne", "trust"] ++++ + +> "Trust everybody, but cut the cards." diff --git a/content/quotes/john-keats/index.md b/content/quotes/john-keats/index.md new file mode 100644 index 0000000..0188423 --- /dev/null +++ b/content/quotes/john-keats/index.md @@ -0,0 +1,9 @@ ++++ +title = "John Keats" +weight = 106 + +[taxonomies] +tags = ["quotes", "john keats", "philosophy"] ++++ + +> "Philosophy will clip an angel's wings." diff --git a/content/quotes/john-stuart-mill/index.md b/content/quotes/john-stuart-mill/index.md new file mode 100644 index 0000000..1fbd3a3 --- /dev/null +++ b/content/quotes/john-stuart-mill/index.md @@ -0,0 +1,9 @@ ++++ +title = "John Stuart Mill" +weight = 106 + +[taxonomies] +tags = ["quotes", "john stuart mill", "happiness"] ++++ + +> "Ask yourself whether you are happy and you cease to be so." diff --git a/content/quotes/kushwant-singh/index.md b/content/quotes/kushwant-singh/index.md new file mode 100644 index 0000000..b5bb5f6 --- /dev/null +++ b/content/quotes/kushwant-singh/index.md @@ -0,0 +1,12 @@ ++++ +title = "Kushwant Singh" +weight = 107 + +[taxonomies] +tags = ["quotes", "kushwant singh", "fascism", "hate"] ++++ + +> "Every fascist regime needs communities and groups it can demonise in order +> to thrive. It starts with one group or two. But it never ends there. A +> movement built on hate can only sustain itself by continually creating fear +> and strife". diff --git a/content/quotes/marcus-tulius-cicero/index.md b/content/quotes/marcus-tulius-cicero/index.md new file mode 100644 index 0000000..ed60319 --- /dev/null +++ b/content/quotes/marcus-tulius-cicero/index.md @@ -0,0 +1,11 @@ ++++ +title = "Marcus Tulius Cicero" +weight = 109 + +[taxonomies] +tags = ["quotes", "marcus tulius cicero", "persistence", "opinions"] ++++ + +> "Persistence in one opinion has never been considered a merit in political +> leaders." + diff --git a/content/quotes/mark-twain/index.md b/content/quotes/mark-twain/index.md index b305a96..c87e9be 100644 --- a/content/quotes/mark-twain/index.md +++ b/content/quotes/mark-twain/index.md @@ -4,7 +4,7 @@ weight = 109 [taxonomies] tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing", -"right"] +"right", "speeches"] +++ > "Few things are harder to put up with than the annoyance of a good example." @@ -21,3 +21,4 @@ tags = ["quotes", "mark twain", "annoyance", "examples", "fame", "writing", > "If it is a Miracle, any sort of evidence will answer, but if it is a Fact, > proof is necessary." +> "It usually takes more than three weeks to prepare a good impromptu speech." diff --git a/content/quotes/muhammad-ali/index.md b/content/quotes/muhammad-ali/index.md index 70193bc..5e30cf0 100644 --- a/content/quotes/muhammad-ali/index.md +++ b/content/quotes/muhammad-ali/index.md @@ -3,8 +3,12 @@ title = "Muhammad Ali" weight = 109 [taxonomies] -tags = ["quotes", "muhammad ali", "jokes"] +tags = ["quotes", "muhammad ali", "jokes", "offences"] +++ > "My way of joking is to tell the truth. That's the funniest joke in the > world." + +> "If they can make penicillin out of moldy bread, they can sure make +> something out of you." + diff --git a/content/quotes/nathaniel-howe/index.md b/content/quotes/nathaniel-howe/index.md new file mode 100644 index 0000000..7b80cc7 --- /dev/null +++ b/content/quotes/nathaniel-howe/index.md @@ -0,0 +1,10 @@ ++++ +title = "Nathaniel Howe" +weight = 110 + +[taxonomies] +tags = ["quotes", "nathaniel howe", "saints"] ++++ + +> "The way of the world is to praise dead saints and prosecute live ones." + diff --git a/content/quotes/neil-degrasse-tyson/index.md b/content/quotes/neil-degrasse-tyson/index.md index 2fc4d63..073ddbe 100644 --- a/content/quotes/neil-degrasse-tyson/index.md +++ b/content/quotes/neil-degrasse-tyson/index.md @@ -3,7 +3,7 @@ title = "Neil deGrasse Tyson" weight = 110 [taxonomies] -tags = ["quotes", "neil degrasse tyson", "life"] +tags = ["quotes", "neil degrasse tyson", "life", "past", "future"] +++ > "Life is fragile We live 80 years. But we’re dead after 8 weeks without @@ -15,3 +15,6 @@ tags = ["quotes", "neil degrasse tyson", "life"] > "The urge to want some bit of information to be true often clouds our > ability to assess why that information may be false." +> "We are prisoners of the present, in perpetual transition from an +> inaccessible past to an unknowable future." + diff --git a/content/quotes/norman-douglas/index.md b/content/quotes/norman-douglas/index.md new file mode 100644 index 0000000..b32b852 --- /dev/null +++ b/content/quotes/norman-douglas/index.md @@ -0,0 +1,9 @@ ++++ +title = "Norman Douglas" +weight = 110 + +[taxonomies] +tags = ["quotes", "norman douglas", "nations", "advertisements", "ads"] ++++ + +> "You can tell the ideals of a nation by its advertisements." diff --git a/content/quotes/oscar-wilde/index.md b/content/quotes/oscar-wilde/index.md index 7c7def3..1bd6dd6 100644 --- a/content/quotes/oscar-wilde/index.md +++ b/content/quotes/oscar-wilde/index.md @@ -4,7 +4,7 @@ weight = 111 [taxonomies] tags = ["quotes", "oscar wilde", "virtues", "vices", "truth", "questions", -"answers", "gossip"] +"answers", "gossip", "tastes"] +++ > "He hadn't a single redeeming vice." @@ -12,3 +12,8 @@ tags = ["quotes", "oscar wilde", "virtues", "vices", "truth", "questions", > "Questions are never indiscreet, answers sometimes are." > "My own business always bores me to death; I prefer other people's." + +> "Most people are other people. Their thoughts are someone else's opinions, +> their lives a mimicry, their passions a quotation." + +> "I have the simplest tastes. I am always satisfied with the best." diff --git a/content/quotes/publilius-syrus/index.md b/content/quotes/publilius-syrus/index.md new file mode 100644 index 0000000..663d60a --- /dev/null +++ b/content/quotes/publilius-syrus/index.md @@ -0,0 +1,11 @@ ++++ +title = "Publilius Syrus" +weight = 112 + +[taxonomies] +tags = ["quotes", "publilius syrus", "silence", "promises", "performance"] ++++ + +> "Let a fool hold his tongue and he will pass for a sage." + +> "Never promise more than you can perform." diff --git a/content/quotes/random/index.md b/content/quotes/random/index.md index e14749c..5326195 100644 --- a/content/quotes/random/index.md +++ b/content/quotes/random/index.md @@ -6,7 +6,8 @@ weight = 300 tags = ["quotes", "graffiti", "education", "misery", "distributed systems", "the day the earth stood still", "atheism", "religion", "following", "regrets", "money", "perfection", "practice", "nerds", "totalitarianism", -"materialism", "god", "time", "privacy", "guests", "proverbs", "russian"] +"materialism", "god", "time", "privacy", "guests", "proverbs", "russian", +"incompetence"] +++ > If you took all the students that felt asleep in class and laid them end to @@ -69,3 +70,13 @@ tags = ["quotes", "graffiti", "education", "misery", "distributed systems", > "The dynamic I'm subjected to doesn't become less toxic just because I can > take it." + +> "Somehow, the world always affects you more than you affect it." + +> "I suspect the people responsible are the kinds of men who get MBAs +> specifically to boss around people who are smarter than they are." + +> "Talk is cheap because supply always exceeds demand." + +> "If you had better tools, you could more effectively demonstrate your +> total incompetence." diff --git a/content/quotes/ron-mcafee/index.md b/content/quotes/ron-mcafee/index.md new file mode 100644 index 0000000..aac0e9f --- /dev/null +++ b/content/quotes/ron-mcafee/index.md @@ -0,0 +1,9 @@ ++++ +title = "Ron McAfee" +weight = 114 + +[taxonomies] +tags = ["quotes", "ron mcafee", "theories"] ++++ + +> "Anything is possible on paper." diff --git a/content/quotes/roy-santoro/index.md b/content/quotes/roy-santoro/index.md new file mode 100644 index 0000000..5b459e3 --- /dev/null +++ b/content/quotes/roy-santoro/index.md @@ -0,0 +1,9 @@ ++++ +title = "Roy Santoro" +weight = 114 + +[taxonomies] +tags = ["quotes", "roy santoro", "laws"] ++++ + +> "If A = B and B = C, then A = C, except where void or prohibited by law." diff --git a/content/quotes/star-trek/index.md b/content/quotes/star-trek/index.md index ecf0f07..209dd52 100644 --- a/content/quotes/star-trek/index.md +++ b/content/quotes/star-trek/index.md @@ -6,6 +6,9 @@ weight = 200 tags = ["star trek", "quotes", "eve mchuron", "spock", "rojan", "sarek"] +++ +> "Vulcans believe peace should not depend on force." +-- Amanda, "Journey to Babel", stardate 3842.3 + > "Oh, that sound of male ego. You travel halfway across the galaxy and it's > still the same song." -- Eve McHuron, "Mudd's Women", stardate 1330.1 @@ -20,9 +23,15 @@ tags = ["star trek", "quotes", "eve mchuron", "spock", "rojan", "sarek"] > your human intuition." -- Spock, "Assignment: Earth", stardate unknown +> "Insufficient facts always invite danger." +-- Spock, "Space Seed", stardate 3141.9 + > "Violence in reality is quite different from theory." -- Spock, "The Cloud Minders", stardate 5818.4 +> "Men of peace usually are [brave]." +-- Spock, "The Savage Curtain", stardate 5906.5 + > "We do not colonize. We conquer. We rule. There is no other way for us." -- Rojan, "By Any Other Name", stardate 4657.5 @@ -46,6 +55,9 @@ tags = ["star trek", "quotes", "eve mchuron", "spock", "rojan", "sarek"] > "Suffocating together ... would create heroic camaraderie." -- Khan Noonian Singh, "Space Seed", stardate 3142.8 +> "There are certain things men must do to remain men." +-- Kirk, "The Ultimate Computer", stardate 4929.4 + > "What terrible way to die." > "There are no good ways." -- Sulu and Kirk, "That Which Survives", stardate unknown diff --git a/content/quotes/strange-de-jim/index.md b/content/quotes/strange-de-jim/index.md new file mode 100644 index 0000000..b78fd68 --- /dev/null +++ b/content/quotes/strange-de-jim/index.md @@ -0,0 +1,11 @@ ++++ +title = "Strange de Jim" +weight = 115 + +[taxonomies] +tags = ["quotes", "strange de jim", "parents"] ++++ + +> "I called my parents the other night, but I forgot about the time difference. +> They're still living in the fifties." + diff --git a/content/quotes/voltaire/index.md b/content/quotes/voltaire/index.md new file mode 100644 index 0000000..4802f62 --- /dev/null +++ b/content/quotes/voltaire/index.md @@ -0,0 +1,9 @@ ++++ +title = "Voltaire" +weight = 118 + +[taxonomies] +tags = ["quotes", "voltaire", "illusions"] ++++ + +> "Illusion is the first of all pleasures."