From dfda27210eaa253ae53ecc5c256bb098bcde1837 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Thu, 13 Jun 2019 12:22:26 -0300 Subject: [PATCH] A few clarifications --- content/thoughts/things-i-learnt-the-hard-way.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/thoughts/things-i-learnt-the-hard-way.md b/content/thoughts/things-i-learnt-the-hard-way.md index 1c52628..e894904 100644 --- a/content/thoughts/things-i-learnt-the-hard-way.md +++ b/content/thoughts/things-i-learnt-the-hard-way.md @@ -610,7 +610,10 @@ worth knowing." -- Alan Perlis For a long time, I kept a simple programming rule: The language I'm playing at home should not be the same language I'm using at work. This allowed me to -learn new things that later I applied in the work codebase +learn new things that later I applied in the work codebase. + +I learnt how generics work in Java by writing Rust code; I understood how +Spring does dependency injection by reading how to do it in C++. ### Think of the users