Skip to main content

Book Report about Justice (by Michael J. Sandel)

Name: Justice: What's The Right Thing To Do?
Author: Michael J. Sandel

"Endless thoughts, endless choices. About Justice."

Based on the Harvard college's lecture by Sandel, which is well known lecture for all students in the college. So, what is this book about? Its written on the book cover. Its about the justice. Then what is justice? And that is what this book is talking about. Different from other books talking about justice, this talks much understandable and interesting than other. Starting from the well known moral story "Workers on the railway", this book explains how justice is implemented in our society.
I read nearly a few books in a year, this was the most interesting book I have read this year. This book let me know the happiness of reading something with deep thinking. The most unanswerable topic was related to the human being, it was "How much does a human cost?". I think this topic, the value of a human, shouldn't be calculated. Even if the person should be executed by his crime, it shouldn't be calculated. Every human being should be, or is same, by any difference.
After all this unusual huge amount of thinking, I starting to see the world slightly differently. Now I see everything on two perspectives. Continually asking myself a single question; "What if?" And keep thinking about what should I do in that situation. I already knew by my instinct, this question is going to change my life.

This was a homework for Sunrin High School English.

Popular posts from this blog

Using SyntaxHighlighter on Blogger

Hello, Bedrock Dev here. Today I'm going to show you guys how to use SyntaxHighlighter on Blogger (Just like me!). But, what is SyntaxHighlighter? Simply, it is a code-highlighter for webs (and other). And this is an example of it. So, let's get started adding this cool stuffs on your blog too.   1. Backup your blog templates You can backup your blog templates on your blogger main page. On the right top of the Template page, you could find Backup / Restore Button. Click it and save the template file where you can find later.   2. Adding codes to your blog html Now the real part begins. Copy these codes to your clipboard. And then, go back to the Template page, and click Edit HTML Button. In your blog's template html, there will be </head> tag. Scroll down and find the tag, and paste the code you copied. --- Other Codes --- [Paste the code here] </head> You should paste the code like this. Then, save your template.   3. Usin...

About string operands

Well known data type String is also available on Java. There are a lot of easy-to-use features on using String data type. But its little bit complicated on actually using them. Let me explain by some actual examples. As you see on the 4th line, if you put the calculating expression in front of the string (which is covered in quotes) and it will automatically return the calculated value of the expression and merge those two strings. The opposite seems to show the same output, but it doesn't. See the 5th line and you will see. The following expression 3 + 4 isn't calculated. Didn't know dem Its always good to know new things ;)