merge PaperMod's latest changes + cleanup

This commit is contained in:
Siddhartha Golu 2024-01-14 11:07:18 +05:30
parent 1e8e144efd
commit 4eb7822cee
160 changed files with 1169 additions and 2027 deletions

View File

@ -65,7 +65,7 @@ params:
cover:
hidden: true
hiddenInList: true
hiddenInSingle: false
hiddenInSingle: true
label:
icon: /apple-touch-icon.png

View File

@ -3,9 +3,16 @@
<article class="post-single">
<header class="post-header">
{{ partial "breadcrumbs.html" . }}
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
{{ .Title }}
{{- if .Draft }}<sup><span class="entry-isdraft">&nbsp;&nbsp;[draft]</span></sup>{{- end }}
{{- if .Draft }}
<span class="entry-hint" title="Draft">
<svg xmlns="http://www.w3.org/2000/svg" height="35" viewBox="0 -960 960 960" fill="currentColor">
<path
d="M160-410v-60h300v60H160Zm0-165v-60h470v60H160Zm0-165v-60h470v60H160Zm360 580v-123l221-220q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q9 9 13 20t4 22q0 11-4.5 22.5T862.09-380L643-160H520Zm300-263-37-37 37 37ZM580-220h38l121-122-18-19-19-18-122 121v38Zm141-141-19-18 37 37-18-19Z" />
</svg>
</span>
{{- end }}
</h1>
{{- if .Description }}
<div class="post-description">
@ -21,8 +28,8 @@
</div>
{{- end }}
</header>
{{- $isHidden := .Params.cover.hidden | default site.Params.cover.hiddenInSingle | default site.Params.cover.hidden }}
{{- partial "cover.html" (dict "cxt" . "IsHome" false "isHidden" $isHidden) }}
{{- $isHidden := (.Param "cover.hiddenInSingle") | default (.Param "cover.hidden") | default false }}
{{- partial "cover.html" (dict "cxt" . "IsSingle" true "isHidden" $isHidden) }}
{{- if (.Param "ShowToc") }}
{{- partial "toc.html" . }}
{{- end }}

View File

@ -1,172 +0,0 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{{- if hugo.IsProduction | or (eq site.Params.env "production") | and (ne .Params.robotsNoIndex true) }}
<meta name="robots" content="index, follow">
{{- else }}
<meta name="robots" content="noindex, nofollow">
{{- end }}
{{- /* Title */}}
<title>{{ if .IsHome }}{{ else }}{{ if .Title }}{{ .Title }} | {{ end }}{{ end }}{{ site.Title }}</title>
{{- /* Meta */}}
{{- if .IsHome }}
{{ with site.Params.keywords -}}<meta name="keywords" content="{{- range $i, $e := . }}{{ if $i }}, {{ end }}{{ $e }}{{ end }}">{{ end }}
{{- else }}
<meta name="keywords" content="{{ if .Params.keywords -}}
{{- range $i, $e := .Params.keywords }}{{ if $i }}, {{ end }}{{ $e }}{{ end }} {{- else }}
{{- range $i, $e := .Params.tags }}{{ if $i }}, {{ end }}{{ $e }}{{ end }} {{- end -}}">
{{- end }}
<meta name="description" content="{{- with .Description }}{{ . }}{{- else }}{{- if or .IsPage .IsSection}}
{{- .Summary | default (printf "%s - %s" .Title site.Title) }}{{- else }}
{{- with site.Params.description }}{{ . }}{{- end }}{{- end }}{{- end -}}">
<meta name="author" content="{{ (partial "author.html" . ) }}">
<link rel="canonical" href="{{ if .Params.canonicalURL -}} {{ trim .Params.canonicalURL " " }} {{- else -}} {{ .Permalink }} {{- end }}">
{{- if site.Params.analytics.google.SiteVerificationTag }}
<meta name="google-site-verification" content="{{ site.Params.analytics.google.SiteVerificationTag }}">
{{- end }}
{{- if site.Params.analytics.yandex.SiteVerificationTag }}
<meta name="yandex-verification" content="{{ site.Params.analytics.yandex.SiteVerificationTag }}">
{{- end }}
{{- if site.Params.analytics.bing.SiteVerificationTag }}
<meta name="msvalidate.01" content="{{ site.Params.analytics.bing.SiteVerificationTag }}">
{{- end }}
{{- if site.Params.analytics.naver.SiteVerificationTag }}
<meta name="naver-site-verification" content="{{ site.Params.analytics.naver.SiteVerificationTag }}">
{{- end }}
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
{{- /* Styles */}}
{{- /* includes */}}
{{- $includes := slice }}
{{- $includes = $includes | append (" " | resources.FromString "assets/css/includes-blank.css")}}
{{- if not (eq site.Params.assets.disableScrollBarStyle true) }}
{{- $ScrollStyle := (resources.Get "css/includes/scroll-bar.css") }}
{{- $includes = (append $ScrollStyle $includes) }}
{{- end }}
{{- $includes_all := $includes | resources.Concat "assets/css/includes.css" }}
{{- $theme_vars := (resources.Get "css/core/theme-vars.css") }}
{{- $reset := (resources.Get "css/core/reset.css") }}
{{- $media := (resources.Get "css/core/zmedia.css") }}
{{- $license_css := (resources.Get "css/core/license.css") }}
{{- $common := (resources.Match "css/common/*.css") | resources.Concat "assets/css/common.css" }}
{{- /* include `an-old-hope` if hljs is on */}}
{{- $isHLJSdisabled := (site.Params.assets.disableHLJS | default false) }}
{{- $hljs := (cond ($isHLJSdisabled) (".chroma { background-color: unset !important;}" | resources.FromString "assets/css/hljs-blank.css") (resources.Get "css/hljs/an-old-hope.min.css")) }}
{{- /* order is important */}}
{{- $core := (slice $theme_vars $reset $common $hljs $includes_all $media) | resources.Concat "assets/css/core.css" | resources.Minify }}
{{- $extended := (resources.Match "css/extended/*.css") | resources.Concat "assets/css/extended.css" | resources.Minify }}
{{- /* bundle all required css */}}
{{- /* Add extended css after theme style */ -}}
{{- $stylesheet := (slice $license_css $core $extended) | resources.Concat "assets/css/stylesheet.css" }}
{{- if not site.Params.assets.disableFingerprinting }}
{{- $stylesheet := $stylesheet | fingerprint }}
<link crossorigin="anonymous" href="{{ $stylesheet.RelPermalink }}" integrity="{{ $stylesheet.Data.Integrity }}" rel="preload stylesheet" as="style">
{{- else }}
<link crossorigin="anonymous" href="{{ $stylesheet.RelPermalink }}" rel="preload stylesheet" as="style">
{{- end }}
{{- /* Search */}}
{{- if (eq .Layout `search`) -}}
<link crossorigin="anonymous" rel="preload" as="fetch" href="../index.json">
{{- $fastsearch := resources.Get "js/fastsearch.js" | js.Build (dict "params" (dict "fuseOpts" site.Params.fuseOpts)) | resources.Minify }}
{{- $fusejs := resources.Get "js/fuse.basic.min.js" }}
{{- $license_js := resources.Get "js/license.js" }}
{{- if not site.Params.assets.disableFingerprinting }}
{{- $search := (slice $fusejs $license_js $fastsearch ) | resources.Concat "assets/js/search.js" | fingerprint }}
<script defer crossorigin="anonymous" src="{{ $search.RelPermalink }}" integrity="{{ $search.Data.Integrity }}"></script>
{{- else }}
{{- $search := (slice $fusejs $fastsearch ) | resources.Concat "assets/js/search.js" }}
<script defer crossorigin="anonymous" src="{{ $search.RelPermalink }}"></script>
{{- end }}
{{- end -}}
{{- /* Highlight.js */}}
{{- $isHLJSdisabled := (site.Params.assets.disableHLJS | default .Params.disableHLJS ) }}
{{- if (and (eq .Kind "page") (ne .Layout "archives") (ne .Layout "search") (not $isHLJSdisabled)) }}
{{- if not site.Params.assets.disableFingerprinting }}
{{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" | fingerprint }}
<script defer crossorigin="anonymous" src="{{ $highlight.RelPermalink }}" integrity="{{ $highlight.Data.Integrity }}"
onload="hljs.initHighlightingOnLoad();"></script>
{{- else }}
{{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" }}
<script defer crossorigin="anonymous" src="{{ $highlight.RelPermalink }}" onload="hljs.initHighlightingOnLoad();"></script>
{{- end }}
{{- end }}
{{- /* Favicons */}}
<link rel="icon" href="{{ site.Params.assets.favicon | default "favicon.ico" | absURL }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ site.Params.assets.favicon16x16 | default "favicon-16x16.png" | absURL }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.Params.assets.favicon32x32 | default "favicon-32x32.png" | absURL }}">
<link rel="apple-touch-icon" href="{{ site.Params.assets.apple_touch_icon | default "apple-touch-icon.png" | absURL }}">
<link rel="mask-icon" href="{{ site.Params.assets.safari_pinned_tab | default "safari-pinned-tab.svg" | absURL }}">
<meta name="theme-color" content="{{ site.Params.assets.theme_color | default "#2e2e33" }}">
<meta name="msapplication-TileColor" content="{{ site.Params.assets.msapplication_TileColor | default "#2e2e33" }}">
{{- /* RSS */}}
{{ range .AlternativeOutputFormats -}}
<link rel="{{ .Rel }}" type="{{ .MediaType.Type | html }}" href="{{ .Permalink | safeURL }}">
{{ end -}}
{{- range .AllTranslations -}}
<link rel="alternate" hreflang="{{ .Lang }}" href="{{ .Permalink }}">
{{ end -}}
<noscript>
<style>
#theme-toggle,
.top-link {
display: none;
}
</style>
{{- if (and (ne site.Params.defaultTheme "light") (ne site.Params.defaultTheme "dark")) }}
<style>
@media (prefers-color-scheme: dark) {
:root {
--theme: rgb(29, 30, 32);
--entry: rgb(46, 46, 51);
--primary: rgb(218, 218, 219);
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
.list {
background: var(--theme);
}
.list:not(.dark)::-webkit-scrollbar-track {
background: 0 0;
}
.list:not(.dark)::-webkit-scrollbar-thumb {
border-color: var(--theme);
}
}
</style>
{{- end }}
</noscript>
{{- partial "extend_head.html" . -}}
{{- /* Misc */}}
{{- if hugo.IsProduction | or (eq site.Params.env "production") }}
{{- template "_internal/google_analytics.html" . }}
{{- template "partials/templates/opengraph.html" . }}
{{- template "partials/templates/twitter_cards.html" . }}
{{- template "partials/templates/schema_json.html" . }}
{{- end -}}

View File

@ -21,5 +21,5 @@
{{- end}}
{{- with ($scratch.Get "meta") }}
{{- delimit . "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;" -}}
{{- delimit . "&nbsp;·&nbsp;" | safeHTML -}}
{{- end -}}

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/404.html">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -36,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -13,10 +13,7 @@ I have always dreaded this question. It doesn&rsquo;t matter which setting I&rsq
So to solve this little problem of mine, I came up with this unoriginal idea.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/about/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -41,7 +38,7 @@ So to solve this little problem of mine, I came up with this unoriginal idea.">
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,16 +204,13 @@ So to solve this little problem of mine, I came up with this unoriginal idea."/>
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
About Me
</h1>
<div class="post-meta">&lt;span title=&#39;2019-01-09 11:16:16 &#43;0530 IST&#39;&gt;🗓 January 9, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Siddhartha Golu
<div class="post-meta"><span title='2019-01-09 11:16:16 +0530 IST'>🗓 January 9, 2019</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;Siddhartha Golu
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/Love_for_mountains.jpeg" alt="">
</figure>
<div class="post-content"><p><a href="https://www.flickr.com/photos/160696242@N07/48775361931/">(See this picture on flickr)</a></p>
<hr>
<p>&ldquo;Tell me about yourself.&rdquo;</p>
@ -335,7 +329,7 @@ So to solve this little problem of mine, I came up with this unoriginal idea."/>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,8 +10,7 @@
<meta name="description" content="Everything I&#39;ve ever written, compiled in one place.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/archive/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -36,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -194,7 +193,17 @@
<main class="main">
<header class="page-header">
<h1>Archive</h1>
<h1>
Archive
<a href="/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
<path d="M4 4a16 16 0 0 1 16 16" />
<circle cx="5" cy="19" r="1" />
</svg>
</a>
</h1>
<div class="post-description">
Everything I&#39;ve ever written, compiled in one place.
</div>
@ -206,9 +215,9 @@
<h3 class="archive-month-header">September<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Chup: Breaking the Silence About India&rsquo;s Women by Deepa Narayan
<h3 class="archive-entry-title entry-hint-parent">Chup: Breaking the Silence About India&rsquo;s Women by Deepa Narayan
</h3>
<div class="archive-meta">&lt;span title=&#39;2023-09-03 21:05:39 &#43;0530 IST&#39;&gt;🗓 September 3, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/feminism&#34;&gt; feminism&lt;/a&gt;</div>
<div class="archive-meta"><span title='2023-09-03 21:05:39 +0530 IST'>🗓 September 3, 2023</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/feminism"> feminism</a></div>
<a class="entry-link" aria-label="post link to Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan" href="https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/"></a>
</div>
</div>
@ -217,9 +226,9 @@
<h3 class="archive-month-header">June<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Empire of Pain: The Secret History of the Sackler Dynasty
<h3 class="archive-entry-title entry-hint-parent">Empire of Pain: The Secret History of the Sackler Dynasty
</h3>
<div class="archive-meta">&lt;span title=&#39;2023-06-21 08:49:32 &#43;0530 IST&#39;&gt;🗓 June 21, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/public-health&#34;&gt; public-health&lt;/a&gt;</div>
<div class="archive-meta"><span title='2023-06-21 08:49:32 +0530 IST'>🗓 June 21, 2023</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/public-health"> public-health</a></div>
<a class="entry-link" aria-label="post link to Empire of Pain: The Secret History of the Sackler Dynasty" href="https://www.siddharthagolu.com/posts/reading/empire-of-pain/"></a>
</div>
</div>
@ -228,9 +237,9 @@
<h3 class="archive-month-header">March<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">So Good They Can&rsquo;t Ignore You - Cal Newport
<h3 class="archive-entry-title entry-hint-parent">So Good They Can&rsquo;t Ignore You - Cal Newport
</h3>
<div class="archive-meta">&lt;span title=&#39;2023-03-29 15:04:13 &#43;0530 IST&#39;&gt;🗓 March 29, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/fast-food-books&#34;&gt; fast-food-books&lt;/a&gt;</div>
<div class="archive-meta"><span title='2023-03-29 15:04:13 +0530 IST'>🗓 March 29, 2023</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a>&nbsp;·&nbsp;<a href="/tags/fast-food-books"> fast-food-books</a></div>
<a class="entry-link" aria-label="post link to So Good They Can&#39;t Ignore You - Cal Newport" href="https://www.siddharthagolu.com/posts/reading/so-good-newport/"></a>
</div>
</div>
@ -243,9 +252,9 @@
<h3 class="archive-month-header">September<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman
<h3 class="archive-entry-title entry-hint-parent">Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman
</h3>
<div class="archive-meta">&lt;span title=&#39;2022-09-21 07:35:24 &#43;0530 IST&#39;&gt;🗓 September 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;</div>
<div class="archive-meta"><span title='2022-09-21 07:35:24 +0530 IST'>🗓 September 21, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a></div>
<a class="entry-link" aria-label="post link to Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman" href="https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/"></a>
</div>
</div>
@ -254,9 +263,9 @@
<h3 class="archive-month-header">May<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">After Life (1998) by Hirokazu Kore-eda
<h3 class="archive-entry-title entry-hint-parent">After Life (1998) by Hirokazu Kore-eda
</h3>
<div class="archive-meta">&lt;span title=&#39;2022-05-01 22:41:55 &#43;0530 IST&#39;&gt;🗓 May 1, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</div>
<div class="archive-meta"><span title='2022-05-01 22:41:55 +0530 IST'>🗓 May 1, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></div>
<a class="entry-link" aria-label="post link to After Life (1998) by Hirokazu Kore-eda" href="https://www.siddharthagolu.com/posts/cinema/after-life/"></a>
</div>
</div>
@ -265,9 +274,9 @@
<h3 class="archive-month-header">April<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Life Between Buildings by Jan Gehl
<h3 class="archive-entry-title entry-hint-parent">Life Between Buildings by Jan Gehl
</h3>
<div class="archive-meta">&lt;span title=&#39;2022-04-21 09:04:49 &#43;0530 IST&#39;&gt;🗓 April 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/architecture&#34;&gt; architecture&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/society&#34;&gt; society&lt;/a&gt;</div>
<div class="archive-meta"><span title='2022-04-21 09:04:49 +0530 IST'>🗓 April 21, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/architecture"> architecture</a>&nbsp;·&nbsp;<a href="/tags/society"> society</a></div>
<a class="entry-link" aria-label="post link to Life Between Buildings by Jan Gehl" href="https://www.siddharthagolu.com/posts/reading/life-between-buildings/"></a>
</div>
</div>
@ -280,9 +289,9 @@
<h3 class="archive-month-header">November<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">3 Iron (2004) by Kim Ki-duk
<h3 class="archive-entry-title entry-hint-parent">3 Iron (2004) by Kim Ki-duk
</h3>
<div class="archive-meta">&lt;span title=&#39;2021-11-14 10:46:40 &#43;0530 IST&#39;&gt;🗓 November 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/minimalism&#34;&gt; minimalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</div>
<div class="archive-meta"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/minimalism"> minimalism</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></div>
<a class="entry-link" aria-label="post link to 3 Iron (2004) by Kim Ki-duk" href="https://www.siddharthagolu.com/posts/cinema/3-iron/"></a>
</div>
</div>
@ -291,9 +300,9 @@
<h3 class="archive-month-header">September<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">The Way We Eat: Why Our Food Choices Matter by Peter Singer
<h3 class="archive-entry-title entry-hint-parent">The Way We Eat: Why Our Food Choices Matter by Peter Singer
</h3>
<div class="archive-meta">&lt;span title=&#39;2021-09-01 10:43:25 &#43;0530 IST&#39;&gt;🗓 September 1, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/review&#34;&gt; review&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/debating-ethics&#34;&gt; debating-ethics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animal-cruelty&#34;&gt; animal-cruelty&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</div>
<div class="archive-meta"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/review"> review</a>&nbsp;·&nbsp;<a href="/tags/debating-ethics"> debating-ethics</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/animal-cruelty"> animal-cruelty</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></div>
<a class="entry-link" aria-label="post link to The Way We Eat: Why Our Food Choices Matter by Peter Singer" href="https://www.siddharthagolu.com/posts/reading/the-way-we-eat/"></a>
</div>
</div>
@ -302,15 +311,15 @@
<h3 class="archive-month-header">August<sup class="archive-count">&nbsp;&nbsp;2</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Shame by Salman Rushdie
<h3 class="archive-entry-title entry-hint-parent">Shame by Salman Rushdie
</h3>
<div class="archive-meta">&lt;span title=&#39;2021-08-17 22:55:02 &#43;0530 IST&#39;&gt;🗓 August 17, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;</div>
<div class="archive-meta"><span title='2021-08-17 22:55:02 +0530 IST'>🗓 August 17, 2021</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a></div>
<a class="entry-link" aria-label="post link to Shame by Salman Rushdie" href="https://www.siddharthagolu.com/posts/reading/shame-rushdie/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">What I Talk About When I Talk About Running by Haruki Murakami
<h3 class="archive-entry-title entry-hint-parent">What I Talk About When I Talk About Running by Haruki Murakami
</h3>
<div class="archive-meta">&lt;span title=&#39;2021-08-14 20:09:56 &#43;0530 IST&#39;&gt;🗓 August 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/health&#34;&gt; health&lt;/a&gt;</div>
<div class="archive-meta"><span title='2021-08-14 20:09:56 +0530 IST'>🗓 August 14, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/health"> health</a></div>
<a class="entry-link" aria-label="post link to What I Talk About When I Talk About Running by Haruki Murakami" href="https://www.siddharthagolu.com/posts/reading/running-murakami/"></a>
</div>
</div>
@ -319,9 +328,9 @@
<h3 class="archive-month-header">July<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Annihilation of Caste(Annotated Edition) by Arundhati Roy
<h3 class="archive-entry-title entry-hint-parent">Annihilation of Caste(Annotated Edition) by Arundhati Roy
</h3>
<div class="archive-meta">&lt;span title=&#39;2021-07-23 22:56:47 &#43;0530 IST&#39;&gt;🗓 July 23, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</div>
<div class="archive-meta"><span title='2021-07-23 22:56:47 +0530 IST'>🗓 July 23, 2021</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></div>
<a class="entry-link" aria-label="post link to Annihilation of Caste(Annotated Edition) by Arundhati Roy" href="https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/"></a>
</div>
</div>
@ -330,21 +339,21 @@
<h3 class="archive-month-header">March<sup class="archive-count">&nbsp;&nbsp;3</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Photography
<h3 class="archive-entry-title entry-hint-parent">Photography
</h3>
<div class="archive-meta">&lt;span title=&#39;2021-03-23 20:18:21 &#43;0530 IST&#39;&gt;🗓 March 23, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Siddhartha Golu</div>
<div class="archive-meta"><span title='2021-03-23 20:18:21 +0530 IST'>🗓 March 23, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Siddhartha Golu</div>
<a class="entry-link" aria-label="post link to Photography" href="https://www.siddharthagolu.com/photography/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">Parenting Beyond Belief by Dale McGowan
<h3 class="archive-entry-title entry-hint-parent">Parenting Beyond Belief by Dale McGowan
</h3>
<div class="archive-meta">&lt;span title=&#39;2021-03-18 22:14:21 &#43;0530 IST&#39;&gt;🗓 March 18, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/parenting&#34;&gt; parenting&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</div>
<div class="archive-meta"><span title='2021-03-18 22:14:21 +0530 IST'>🗓 March 18, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/parenting"> parenting</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></div>
<a class="entry-link" aria-label="post link to Parenting Beyond Belief by Dale McGowan" href="https://www.siddharthagolu.com/posts/reading/parenting/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">Winter Sleep (2014) by Nuri Bilge Ceylan
<h3 class="archive-entry-title entry-hint-parent">Winter Sleep (2014) by Nuri Bilge Ceylan
</h3>
<div class="archive-meta">&lt;span title=&#39;2021-03-15 21:30:40 &#43;0530 IST&#39;&gt;🗓 March 15, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/turkey&#34;&gt; turkey&lt;/a&gt;</div>
<div class="archive-meta"><span title='2021-03-15 21:30:40 +0530 IST'>🗓 March 15, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/turkey"> turkey</a></div>
<a class="entry-link" aria-label="post link to Winter Sleep (2014) by Nuri Bilge Ceylan" href="https://www.siddharthagolu.com/posts/cinema/winter-sleep/"></a>
</div>
</div>
@ -353,9 +362,9 @@
<h3 class="archive-month-header">February<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan
<h3 class="archive-entry-title entry-hint-parent">Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan
</h3>
<div class="archive-meta">&lt;span title=&#39;2021-02-07 22:44:49 &#43;0530 IST&#39;&gt;🗓 February 7, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/turkey&#34;&gt; turkey&lt;/a&gt;</div>
<div class="archive-meta"><span title='2021-02-07 22:44:49 +0530 IST'>🗓 February 7, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/turkey"> turkey</a></div>
<a class="entry-link" aria-label="post link to Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan" href="https://www.siddharthagolu.com/posts/cinema/anatolia/"></a>
</div>
</div>
@ -364,9 +373,9 @@
<h3 class="archive-month-header">January<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Riding Solo to the Top of the World (2006) by Gaurav Jani
<h3 class="archive-entry-title entry-hint-parent">Riding Solo to the Top of the World (2006) by Gaurav Jani
</h3>
<div class="archive-meta">&lt;span title=&#39;2021-01-03 22:53:01 &#43;0530 IST&#39;&gt;🗓 January 3, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/motorcycling&#34;&gt; motorcycling&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;</div>
<div class="archive-meta"><span title='2021-01-03 22:53:01 +0530 IST'>🗓 January 3, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/motorcycling"> motorcycling</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a></div>
<a class="entry-link" aria-label="post link to Riding Solo to the Top of the World (2006) by Gaurav Jani" href="https://www.siddharthagolu.com/posts/cinema/riding-solo/"></a>
</div>
</div>
@ -379,9 +388,9 @@
<h3 class="archive-month-header">December<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">I Do What I Do by Raghuram Rajan
<h3 class="archive-entry-title entry-hint-parent">I Do What I Do by Raghuram Rajan
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-12-19 09:24:30 &#43;0530 IST&#39;&gt;🗓 December 19, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/economics&#34;&gt; economics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-12-19 09:24:30 +0530 IST'>🗓 December 19, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/economics"> economics</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a></div>
<a class="entry-link" aria-label="post link to I Do What I Do by Raghuram Rajan" href="https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/"></a>
</div>
</div>
@ -390,9 +399,9 @@
<h3 class="archive-month-header">November<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Waking Life (2001) by Richard Linklater
<h3 class="archive-entry-title entry-hint-parent">Waking Life (2001) by Richard Linklater
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-11-27 22:57:50 &#43;0530 IST&#39;&gt;🗓 November 27, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animation&#34;&gt; animation&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-11-27 22:57:50 +0530 IST'>🗓 November 27, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/animation"> animation</a></div>
<a class="entry-link" aria-label="post link to Waking Life (2001) by Richard Linklater" href="https://www.siddharthagolu.com/posts/cinema/waking-life/"></a>
</div>
</div>
@ -401,9 +410,9 @@
<h3 class="archive-month-header">September<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Azadi by Arundhati Roy
<h3 class="archive-entry-title entry-hint-parent">Azadi by Arundhati Roy
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-09-30 22:22:13 &#43;0530 IST&#39;&gt;🗓 September 30, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-09-30 22:22:13 +0530 IST'>🗓 September 30, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></div>
<a class="entry-link" aria-label="post link to Azadi by Arundhati Roy" href="https://www.siddharthagolu.com/posts/reading/azadi/"></a>
</div>
</div>
@ -412,51 +421,51 @@
<h3 class="archive-month-header">June<sup class="archive-count">&nbsp;&nbsp;8</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Stoner by John Williams
<h3 class="archive-entry-title entry-hint-parent">Stoner by John Williams
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-06-28 19:45:36 &#43;0530 IST&#39;&gt;🗓 June 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-06-28 19:45:36 +0530 IST'>🗓 June 28, 2020</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a></div>
<a class="entry-link" aria-label="post link to Stoner by John Williams" href="https://www.siddharthagolu.com/posts/reading/stoner/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">A Beautiful Woman
<h3 class="archive-entry-title entry-hint-parent">A Beautiful Woman
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-06-09 17:26:51 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-06-09 17:26:51 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></div>
<a class="entry-link" aria-label="post link to A Beautiful Woman" href="https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">Martin Freeman
<h3 class="archive-entry-title entry-hint-parent">Martin Freeman
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-06-09 17:20:16 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-06-09 17:20:16 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></div>
<a class="entry-link" aria-label="post link to Martin Freeman" href="https://www.siddharthagolu.com/posts/drawings/martin-freeman/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">Einstein
<h3 class="archive-entry-title entry-hint-parent">Einstein
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-06-09 17:14:48 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-06-09 17:14:48 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></div>
<a class="entry-link" aria-label="post link to Einstein" href="https://www.siddharthagolu.com/posts/drawings/einstein/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">Mother Teresa
<h3 class="archive-entry-title entry-hint-parent">Mother Teresa
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-06-09 17:09:43 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-06-09 17:09:43 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></div>
<a class="entry-link" aria-label="post link to Mother Teresa" href="https://www.siddharthagolu.com/posts/drawings/teresa/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">Charlie Chaplin (um&hellip; not quite)
<h3 class="archive-entry-title entry-hint-parent">Charlie Chaplin (um&hellip; not quite)
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-06-09 17:01:36 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-06-09 17:01:36 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></div>
<a class="entry-link" aria-label="post link to Charlie Chaplin (um... not quite)" href="https://www.siddharthagolu.com/posts/drawings/chaplin/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">Gandhi
<h3 class="archive-entry-title entry-hint-parent">Gandhi
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-06-09 16:51:23 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-06-09 16:51:23 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></div>
<a class="entry-link" aria-label="post link to Gandhi" href="https://www.siddharthagolu.com/posts/drawings/gandhi/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">Oslo, August 31st (2011) by Joachim Trier
<h3 class="archive-entry-title entry-hint-parent">Oslo, August 31st (2011) by Joachim Trier
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-06-04 14:39:00 &#43;0530 IST&#39;&gt;🗓 June 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/norwegian&#34;&gt; norwegian&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-06-04 14:39:00 +0530 IST'>🗓 June 4, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/norwegian"> norwegian</a></div>
<a class="entry-link" aria-label="post link to Oslo, August 31st (2011) by Joachim Trier" href="https://www.siddharthagolu.com/posts/cinema/oslo-august/"></a>
</div>
</div>
@ -465,9 +474,9 @@
<h3 class="archive-month-header">May<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Bad Blood by John Carreyrou
<h3 class="archive-entry-title entry-hint-parent">Bad Blood by John Carreyrou
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-05-01 23:39:18 &#43;0530 IST&#39;&gt;🗓 May 1, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/journalism&#34;&gt; journalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-05-01 23:39:18 +0530 IST'>🗓 May 1, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/journalism"> journalism</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a></div>
<a class="entry-link" aria-label="post link to Bad Blood by John Carreyrou" href="https://www.siddharthagolu.com/posts/reading/bad-blood/"></a>
</div>
</div>
@ -476,15 +485,15 @@
<h3 class="archive-month-header">April<sup class="archive-count">&nbsp;&nbsp;2</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Fear
<h3 class="archive-entry-title entry-hint-parent">Fear
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-04-25 23:45:30 &#43;0530 IST&#39;&gt;🗓 April 25, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/poetry&#34;&gt; poetry&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/writing&#34;&gt; writing&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-04-25 23:45:30 +0530 IST'>🗓 April 25, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/poetry"> poetry</a>&nbsp;·&nbsp;<a href="/tags/writing"> writing</a></div>
<a class="entry-link" aria-label="post link to Fear" href="https://www.siddharthagolu.com/posts/scared-in-lockdown/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">Waking Up by Sam Harris
<h3 class="archive-entry-title entry-hint-parent">Waking Up by Sam Harris
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-04-15 23:31:08 &#43;0530 IST&#39;&gt;🗓 April 15, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/meditation&#34;&gt; meditation&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-04-15 23:31:08 +0530 IST'>🗓 April 15, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/meditation"> meditation</a></div>
<a class="entry-link" aria-label="post link to Waking Up by Sam Harris" href="https://www.siddharthagolu.com/posts/reading/waking-up/"></a>
</div>
</div>
@ -493,15 +502,15 @@
<h3 class="archive-month-header">March<sup class="archive-count">&nbsp;&nbsp;2</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Glimpses of World History by Jawaharlal Nehru
<h3 class="archive-entry-title entry-hint-parent">Glimpses of World History by Jawaharlal Nehru
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-03-12 23:23:19 &#43;0530 IST&#39;&gt;🗓 March 12, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/letters&#34;&gt; letters&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-03-12 23:23:19 +0530 IST'>🗓 March 12, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/letters"> letters</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></div>
<a class="entry-link" aria-label="post link to Glimpses of World History by Jawaharlal Nehru" href="https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">The Darjeeling Limited (2007) by Wes Anderson
<h3 class="archive-entry-title entry-hint-parent">The Darjeeling Limited (2007) by Wes Anderson
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-03-04 23:01:15 &#43;0530 IST&#39;&gt;🗓 March 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/colorful-quirks&#34;&gt; colorful-quirks&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-03-04 23:01:15 +0530 IST'>🗓 March 4, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/colorful-quirks"> colorful-quirks</a></div>
<a class="entry-link" aria-label="post link to The Darjeeling Limited (2007) by Wes Anderson" href="https://www.siddharthagolu.com/posts/cinema/darjeeling/"></a>
</div>
</div>
@ -510,15 +519,15 @@
<h3 class="archive-month-header">January<sup class="archive-count">&nbsp;&nbsp;2</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Reasons to Stay Alive by Matt Haig
<h3 class="archive-entry-title entry-hint-parent">Reasons to Stay Alive by Matt Haig
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-01-28 22:28:18 &#43;0530 IST&#39;&gt;🗓 January 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/depression&#34;&gt; depression&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-01-28 22:28:18 +0530 IST'>🗓 January 28, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/depression"> depression</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a></div>
<a class="entry-link" aria-label="post link to Reasons to Stay Alive by Matt Haig" href="https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">How to Listen to and Understand Great Music by Robert Greenberg
<h3 class="archive-entry-title entry-hint-parent">How to Listen to and Understand Great Music by Robert Greenberg
</h3>
<div class="archive-meta">&lt;span title=&#39;2020-01-16 22:05:06 &#43;0530 IST&#39;&gt;🗓 January 16, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/classical-music&#34;&gt; classical-music&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;</div>
<div class="archive-meta"><span title='2020-01-16 22:05:06 +0530 IST'>🗓 January 16, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/classical-music"> classical-music</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a></div>
<a class="entry-link" aria-label="post link to How to Listen to and Understand Great Music by Robert Greenberg" href="https://www.siddharthagolu.com/posts/reading/great-music/"></a>
</div>
</div>
@ -531,15 +540,15 @@
<h3 class="archive-month-header">September<sup class="archive-count">&nbsp;&nbsp;2</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky
<h3 class="archive-entry-title entry-hint-parent">Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky
</h3>
<div class="archive-meta">&lt;span title=&#39;2019-09-12 20:12:10 &#43;0530 IST&#39;&gt;🗓 September 12, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;6 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;</div>
<div class="archive-meta"><span title='2019-09-12 20:12:10 +0530 IST'>🗓 September 12, 2019</span>&nbsp;·&nbsp;6 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a></div>
<a class="entry-link" aria-label="post link to Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky" href="https://www.siddharthagolu.com/posts/reading/behave-review/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">Range by David Epstein
<h3 class="archive-entry-title entry-hint-parent">Range by David Epstein
</h3>
<div class="archive-meta">&lt;span title=&#39;2019-09-05 00:16:14 &#43;0530 IST&#39;&gt;🗓 September 5, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;</div>
<div class="archive-meta"><span title='2019-09-05 00:16:14 +0530 IST'>🗓 September 5, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a></div>
<a class="entry-link" aria-label="post link to Range by David Epstein" href="https://www.siddharthagolu.com/posts/reading/range-a-review/"></a>
</div>
</div>
@ -548,9 +557,9 @@
<h3 class="archive-month-header">March<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">Deference vs. Indifference
<h3 class="archive-entry-title entry-hint-parent">Deference vs. Indifference
</h3>
<div class="archive-meta">&lt;span title=&#39;2019-03-15 22:27:30 &#43;0530 IST&#39;&gt;🗓 March 15, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/poetry&#34;&gt; poetry&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/writing&#34;&gt; writing&lt;/a&gt;</div>
<div class="archive-meta"><span title='2019-03-15 22:27:30 +0530 IST'>🗓 March 15, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/poetry"> poetry</a>&nbsp;·&nbsp;<a href="/tags/writing"> writing</a></div>
<a class="entry-link" aria-label="post link to Deference vs. Indifference" href="https://www.siddharthagolu.com/posts/deference-vs-indifference/"></a>
</div>
</div>
@ -559,9 +568,9 @@
<h3 class="archive-month-header">February<sup class="archive-count">&nbsp;&nbsp;1</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">The Course of Love by Alain de Botton
<h3 class="archive-entry-title entry-hint-parent">The Course of Love by Alain de Botton
</h3>
<div class="archive-meta">&lt;span title=&#39;2019-02-14 20:21:45 &#43;0530 IST&#39;&gt;🗓 February 14, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/relationship&#34;&gt; relationship&lt;/a&gt;</div>
<div class="archive-meta"><span title='2019-02-14 20:21:45 +0530 IST'>🗓 February 14, 2019</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/relationship"> relationship</a></div>
<a class="entry-link" aria-label="post link to The Course of Love by Alain de Botton" href="https://www.siddharthagolu.com/posts/reading/the-course-of-love/"></a>
</div>
</div>
@ -570,15 +579,15 @@
<h3 class="archive-month-header">January<sup class="archive-count">&nbsp;&nbsp;2</sup></h3>
<div class="archive-posts">
<div class="archive-entry">
<h3 class="archive-entry-title">The Stranger and The Plague by Albert Camus
<h3 class="archive-entry-title entry-hint-parent">The Stranger and The Plague by Albert Camus
</h3>
<div class="archive-meta">&lt;span title=&#39;2019-01-21 14:39:14 &#43;0530 IST&#39;&gt;🗓 January 21, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;7 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/existentialism&#34;&gt; existentialism&lt;/a&gt;</div>
<div class="archive-meta"><span title='2019-01-21 14:39:14 +0530 IST'>🗓 January 21, 2019</span>&nbsp;·&nbsp;7 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/existentialism"> existentialism</a></div>
<a class="entry-link" aria-label="post link to The Stranger and The Plague by Albert Camus" href="https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/"></a>
</div>
<div class="archive-entry">
<h3 class="archive-entry-title">About Me
<h3 class="archive-entry-title entry-hint-parent">About Me
</h3>
<div class="archive-meta">&lt;span title=&#39;2019-01-09 11:16:16 &#43;0530 IST&#39;&gt;🗓 January 9, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Siddhartha Golu</div>
<div class="archive-meta"><span title='2019-01-09 11:16:16 +0530 IST'>🗓 January 9, 2019</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;Siddhartha Golu</div>
<a class="entry-link" aria-label="post link to About Me" href="https://www.siddharthagolu.com/about/"></a>
</div>
</div>
@ -587,7 +596,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/categories/book-notes/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/categories/">Categories</a></div>
<h1>
Book Notes
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/categories/book-notes/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,92 +158,92 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan
<h2 class="entry-hint-parent">Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan
</h2>
</header>
<div class="entry-content">
<p>A powerful exploration into the psyche of Indian women and how society perpetuates the status quo</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-09-03 21:05:39 &#43;0530 IST&#39;&gt;🗓 September 3, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/feminism&#34;&gt; feminism&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-09-03 21:05:39 +0530 IST'>🗓 September 3, 2023</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/feminism"> feminism</a></footer>
<a class="entry-link" aria-label="post link to Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan" href="https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Empire of Pain: The Secret History of the Sackler Dynasty
<h2 class="entry-hint-parent">Empire of Pain: The Secret History of the Sackler Dynasty
</h2>
</header>
<div class="entry-content">
<p>If you want to understand how the opioid crisis began, read this</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-06-21 08:49:32 &#43;0530 IST&#39;&gt;🗓 June 21, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/public-health&#34;&gt; public-health&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-06-21 08:49:32 +0530 IST'>🗓 June 21, 2023</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/public-health"> public-health</a></footer>
<a class="entry-link" aria-label="post link to Empire of Pain: The Secret History of the Sackler Dynasty" href="https://www.siddharthagolu.com/posts/reading/empire-of-pain/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>So Good They Can&#39;t Ignore You - Cal Newport
<h2 class="entry-hint-parent">So Good They Can&#39;t Ignore You - Cal Newport
</h2>
</header>
<div class="entry-content">
<p>A series of blog posts that unfortunately became a book. Not recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-03-29 15:04:13 &#43;0530 IST&#39;&gt;🗓 March 29, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/fast-food-books&#34;&gt; fast-food-books&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-03-29 15:04:13 +0530 IST'>🗓 March 29, 2023</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a>&nbsp;·&nbsp;<a href="/tags/fast-food-books"> fast-food-books</a></footer>
<a class="entry-link" aria-label="post link to So Good They Can&#39;t Ignore You - Cal Newport" href="https://www.siddharthagolu.com/posts/reading/so-good-newport/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman
<h2 class="entry-hint-parent">Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman
</h2>
</header>
<div class="entry-content">
<p>A book about time and our relationship with it. Recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-09-21 07:35:24 &#43;0530 IST&#39;&gt;🗓 September 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-09-21 07:35:24 +0530 IST'>🗓 September 21, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a></footer>
<a class="entry-link" aria-label="post link to Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman" href="https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Life Between Buildings by Jan Gehl
<h2 class="entry-hint-parent">Life Between Buildings by Jan Gehl
</h2>
</header>
<div class="entry-content">
<p>A gentle introduction to the study of buildings and the way they enable societal interactions.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-04-21 09:04:49 &#43;0530 IST&#39;&gt;🗓 April 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/architecture&#34;&gt; architecture&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/society&#34;&gt; society&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-04-21 09:04:49 +0530 IST'>🗓 April 21, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/architecture"> architecture</a>&nbsp;·&nbsp;<a href="/tags/society"> society</a></footer>
<a class="entry-link" aria-label="post link to Life Between Buildings by Jan Gehl" href="https://www.siddharthagolu.com/posts/reading/life-between-buildings/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>The Way We Eat: Why Our Food Choices Matter by Peter Singer
<h2 class="entry-hint-parent">The Way We Eat: Why Our Food Choices Matter by Peter Singer
</h2>
</header>
<div class="entry-content">
<p>The ethical dilemma of eating. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-09-01 10:43:25 &#43;0530 IST&#39;&gt;🗓 September 1, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/review&#34;&gt; review&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/debating-ethics&#34;&gt; debating-ethics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animal-cruelty&#34;&gt; animal-cruelty&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/review"> review</a>&nbsp;·&nbsp;<a href="/tags/debating-ethics"> debating-ethics</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/animal-cruelty"> animal-cruelty</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to The Way We Eat: Why Our Food Choices Matter by Peter Singer" href="https://www.siddharthagolu.com/posts/reading/the-way-we-eat/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Shame by Salman Rushdie
<h2 class="entry-hint-parent">Shame by Salman Rushdie
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
Now that Ive moved away from reading fiction, I find that I face a lot of inertia to pick up something purely for pleasure. Maybe this is a nasty by-product of wanting to be as “productive” as possible. But the more I have drifted away from reading for pleasure, more mechanical the whole process has become for me. Partly to avoid this feeling, and partly because of my shame at seeing my bookshelf filled with dusty unread books, I picked up this one to assuage my feelings of guilt....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-08-17 22:55:02 &#43;0530 IST&#39;&gt;🗓 August 17, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-08-17 22:55:02 +0530 IST'>🗓 August 17, 2021</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a></footer>
<a class="entry-link" aria-label="post link to Shame by Salman Rushdie" href="https://www.siddharthagolu.com/posts/reading/shame-rushdie/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>What I Talk About When I Talk About Running by Haruki Murakami
<h2 class="entry-hint-parent">What I Talk About When I Talk About Running by Haruki Murakami
</h2>
</header>
<div class="entry-content">
@ -252,26 +251,26 @@ Now that Ive moved away from reading fiction, I find that I face a lot of ine
Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-08-14 20:09:56 &#43;0530 IST&#39;&gt;🗓 August 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/health&#34;&gt; health&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-08-14 20:09:56 +0530 IST'>🗓 August 14, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/health"> health</a></footer>
<a class="entry-link" aria-label="post link to What I Talk About When I Talk About Running by Haruki Murakami" href="https://www.siddharthagolu.com/posts/reading/running-murakami/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Annihilation of Caste(Annotated Edition) by Arundhati Roy
<h2 class="entry-hint-parent">Annihilation of Caste(Annotated Edition) by Arundhati Roy
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I find India really fascinating sometimes, even though Ive lived my whole life here. What the cultural multitudes and colorful festivals hide underneath is an ugly facade which threatens to break everything that has been built over the years. What I find most fascinating is how weve conditioned ourselves to ignore the blatant reality and move ahead with an oblivious calm, living in shit and aspiring for the gold....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-07-23 22:56:47 &#43;0530 IST&#39;&gt;🗓 July 23, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-07-23 22:56:47 +0530 IST'>🗓 July 23, 2021</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Annihilation of Caste(Annotated Edition) by Arundhati Roy" href="https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Parenting Beyond Belief by Dale McGowan
<h2 class="entry-hint-parent">Parenting Beyond Belief by Dale McGowan
</h2>
</header>
<div class="entry-content">
@ -279,7 +278,7 @@ I find India really fascinating sometimes, even though Ive lived my whole lif
I have had a very curious relationship with religion, although now that I talk to others, it was a much more normal experience than what I led myself to believe. I followed the typical path of receiving a particular religion from my parents (born a “Hindu child”), which had a supporting role in my life up until my late-teenage/early-adolescent years.
As is the norm for every child brought up in religion, I used to consider myself special believing that I had a “personal relationship” with God....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-03-18 22:14:21 &#43;0530 IST&#39;&gt;🗓 March 18, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/parenting&#34;&gt; parenting&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-03-18 22:14:21 +0530 IST'>🗓 March 18, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/parenting"> parenting</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Parenting Beyond Belief by Dale McGowan" href="https://www.siddharthagolu.com/posts/reading/parenting/"></a>
</article>
<footer class="page-footer">
@ -291,7 +290,7 @@ As is the norm for every child brought up in religion, I used to consider myself
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Book Notes on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/categories/book-notes/</link>
@ -11,223 +11,180 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sun, 03 Sep 2023 21:05:39 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/categories/book-notes/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Sun, 03 Sep 2023 21:05:39 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/categories/book-notes/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan</title>
<link>https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/</link>
<pubDate>Sun, 03 Sep 2023 21:05:39 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/</guid>
<description>A powerful exploration into the psyche of Indian women and how society perpetuates the status quo</description>
</item>
<item>
<title>Empire of Pain: The Secret History of the Sackler Dynasty</title>
<link>https://www.siddharthagolu.com/posts/reading/empire-of-pain/</link>
<pubDate>Wed, 21 Jun 2023 08:49:32 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/empire-of-pain/</guid>
<description>If you want to understand how the opioid crisis began, read this</description>
</item>
<item>
<title>So Good They Can&#39;t Ignore You - Cal Newport</title>
<link>https://www.siddharthagolu.com/posts/reading/so-good-newport/</link>
<pubDate>Wed, 29 Mar 2023 15:04:13 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/so-good-newport/</guid>
<description>A series of blog posts that unfortunately became a book. Not recommended.</description>
</item>
<item>
<title>Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman</title>
<link>https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/</link>
<pubDate>Wed, 21 Sep 2022 07:35:24 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/</guid>
<description>A book about time and our relationship with it. Recommended.</description>
</item>
<item>
<title>Life Between Buildings by Jan Gehl</title>
<link>https://www.siddharthagolu.com/posts/reading/life-between-buildings/</link>
<pubDate>Thu, 21 Apr 2022 09:04:49 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/life-between-buildings/</guid>
<description>A gentle introduction to the study of buildings and the way they enable societal interactions.</description>
</item>
<item>
<title>The Way We Eat: Why Our Food Choices Matter by Peter Singer</title>
<link>https://www.siddharthagolu.com/posts/reading/the-way-we-eat/</link>
<pubDate>Wed, 01 Sep 2021 10:43:25 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-way-we-eat/</guid>
<description>The ethical dilemma of eating. Highly recommended!</description>
</item>
<item>
<title>Shame by Salman Rushdie</title>
<link>https://www.siddharthagolu.com/posts/reading/shame-rushdie/</link>
<pubDate>Tue, 17 Aug 2021 22:55:02 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/shame-rushdie/</guid>
<description>Check it out on Goodreads
Now that I&amp;rsquo;ve moved away from reading fiction, I find that I face a lot of inertia to pick up something purely for pleasure. Maybe this is a nasty by-product of wanting to be as &amp;ldquo;productive&amp;rdquo; as possible. But the more I have drifted away from reading for pleasure, more mechanical the whole process has become for me. Partly to avoid this feeling, and partly because of my shame at seeing my bookshelf filled with dusty unread books, I picked up this one to assuage my feelings of guilt.</description>
</item>
<item>
<title>What I Talk About When I Talk About Running by Haruki Murakami</title>
<link>https://www.siddharthagolu.com/posts/reading/running-murakami/</link>
<pubDate>Sat, 14 Aug 2021 20:09:56 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/running-murakami/</guid>
<description>Check it out on Goodreads
Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity.</description>
</item>
<item>
<title>Annihilation of Caste(Annotated Edition) by Arundhati Roy</title>
<link>https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/</link>
<pubDate>Fri, 23 Jul 2021 22:56:47 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/</guid>
<description>Check it out on Goodreads
I find India really fascinating sometimes, even though I&amp;rsquo;ve lived my whole life here. What the cultural multitudes and colorful festivals hide underneath is an ugly facade which threatens to break everything that has been built over the years. What I find most fascinating is how we&amp;rsquo;ve conditioned ourselves to ignore the blatant reality and move ahead with an oblivious calm, living in shit and aspiring for the gold.</description>
</item>
<item>
<title>Parenting Beyond Belief by Dale McGowan</title>
<link>https://www.siddharthagolu.com/posts/reading/parenting/</link>
<pubDate>Thu, 18 Mar 2021 22:14:21 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/parenting/</guid>
<description>Check it out on Goodreads
I have had a very curious relationship with religion, although now that I talk to others, it was a much more normal experience than what I led myself to believe. I followed the typical path of receiving a particular religion from my parents (born a &amp;ldquo;Hindu child&amp;rdquo;), which had a supporting role in my life up until my late-teenage/early-adolescent years.
As is the norm for every child brought up in religion, I used to consider myself special believing that I had a &amp;ldquo;personal relationship&amp;rdquo; with God.</description>
</item>
<item>
<title>I Do What I Do by Raghuram Rajan</title>
<link>https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/</link>
<pubDate>Sat, 19 Dec 2020 09:24:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/</guid>
<description>Check it out on Goodreads
I had picked up this one thinking it to be an autobiography, and with an expectation that it&amp;rsquo;ll cover Rajan&amp;rsquo;s tussles with the government in more details. I was pleasantly surprised to find instead a good collection of technical essays covering the workings of RBI, and economics in general. If you&amp;rsquo;re looking for a good explanatory work in the field of Economics (and especially those concerning India and its policies), you&amp;rsquo;ll enjoy this.</description>
</item>
<item>
<title>Azadi by Arundhati Roy</title>
<link>https://www.siddharthagolu.com/posts/reading/azadi/</link>
<pubDate>Wed, 30 Sep 2020 22:22:13 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/azadi/</guid>
<description>A series of essays on the bleak reality in India. Highly recommended.</description>
</item>
<item>
<title>Stoner by John Williams</title>
<link>https://www.siddharthagolu.com/posts/reading/stoner/</link>
<pubDate>Sun, 28 Jun 2020 19:45:36 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/stoner/</guid>
<description>Check it out on Goodreads
Reading fiction has always been a double-edged sword for me. Some of the most intimate moments I&amp;rsquo;ve spent alone is while reading fictional stories, while at the same time, feeling a pang of disappointment for myself because I wasn&amp;rsquo;t doing anything &amp;ldquo;productive.&amp;rdquo; Is this mere entertainment? Am I just escaping my real-life responsibilities and reading stories of make-believe? While I still haven&amp;rsquo;t found sincere answers to these questions, I&amp;rsquo;ve grown more confident of what I enjoy and what I don&amp;rsquo;t, which has consequently helped me find peace with this conflict.</description>
</item>
<item>
<title>Bad Blood by John Carreyrou</title>
<link>https://www.siddharthagolu.com/posts/reading/bad-blood/</link>
<pubDate>Fri, 01 May 2020 23:39:18 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/bad-blood/</guid>
<description>Check it out on Goodreads
How to fool the world and become a Billionaire I remember hearing about Elizabeth Holmes when I was in my late teens, at that impressionable age when you get hyper-inspired by reading about icons that are going to change the world. There was a profile of her in Wired, with an eye-catching image of her wearing a turtleneck black sweater holding what looked like a test-tube with a tiny amount of blood with a science-y background.</description>
</item>
<item>
<title>Waking Up by Sam Harris</title>
<link>https://www.siddharthagolu.com/posts/reading/waking-up/</link>
<pubDate>Wed, 15 Apr 2020 23:31:08 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/waking-up/</guid>
<description>Check it out on Goodreads
A disappointing jumble of thoughts Disappointed.
I am an atheist interested in the power of mindfulness and the whole world of so-called spirituality, so naturally, I am the ideal audience that Sam Harris is looking for. But it disappointed in almost every domain that I had expectations in. Using deep-sounding difficult words and wrapping them in an almost mythical aura of &amp;ldquo;Consciousness&amp;rdquo;, this one was a huge letdown.</description>
</item>
<item>
<title>Glimpses of World History by Jawaharlal Nehru</title>
<link>https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/</link>
<pubDate>Thu, 12 Mar 2020 23:23:19 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/</guid>
<description>Check it out on Goodreads
World history in a nutshell More than 1100 pages, this behemoth of a book still fails to capture the whole essence of world history - and rightly so. How can you combine over 2000 years of human history and still do justice to every element? But the unique manner in which this book - or more appropriately, collection of letters - has been written, it shines brightly amongst the plethora of history books you can find on this vast subject of world history.</description>
</item>
<item>
<title>Reasons to Stay Alive by Matt Haig</title>
<link>https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/</link>
<pubDate>Tue, 28 Jan 2020 22:28:18 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/</guid>
<description>Check it out on Goodreads
Reasons you should read this book:
If you&amp;rsquo;ve ever had a panic attack. If you&amp;rsquo;ve ever counted the number of times the ceiling fan rotates, just so you could avoid dealing with the endless voices in your head. If you&amp;rsquo;ve ever felt ashamed to admit that you might be suffering from the D-word. If reading about personal stories of how people overcame their mental illnesses soothes you.</description>
</item>
<item>
<title>How to Listen to and Understand Great Music by Robert Greenberg</title>
<link>https://www.siddharthagolu.com/posts/reading/great-music/</link>
<pubDate>Thu, 16 Jan 2020 22:05:06 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/great-music/</guid>
<description>Check it out on Goodreads
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it.</description>
</item>
<item>
<title>Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky</title>
<link>https://www.siddharthagolu.com/posts/reading/behave-review/</link>
<pubDate>Thu, 12 Sep 2019 20:12:10 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/behave-review/</guid>
<description>Check it out on Goodreads
There are few books which leave you in a mesmerizing state after having read them. You ponder about it for days to come, want to scream your head off about it to anyone who&amp;rsquo;d listen, and then dwell in this fear of picking up another book because how can something else ever come close to being this perfect! I have felt this way before - first when I&amp;rsquo;d finished The Complete Sherlock Holmes, later when I was left in a daze for multiple days after finishing the notorious and brilliant House of Leaves, and much more recently when I was unable to sleep after reading Why We Sleep by Matthew Walker.</description>
</item>
<item>
<title>Range by David Epstein</title>
<link>https://www.siddharthagolu.com/posts/reading/range-a-review/</link>
<pubDate>Thu, 05 Sep 2019 00:16:14 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/range-a-review/</guid>
<description>Check it out on Goodreads
Started with a tightly-knit structure, but faltered at the end. The last few chapters were a slog to get through - mostly because of numerous &amp;ldquo;business-class&amp;rdquo; style case studies.
Main takeaway? Other than the central idea around which the book revolves (and succinctly mentioned as the book subtitle too), the idea of interleaving is what struck me the most. I had already read about this particular method in Michael Nielsen&amp;rsquo;s brilliant post on Anki (&amp;ldquo;Augmenting Long-term Memory&amp;rdquo;) and it was interesting to read about it formally in the book.</description>
</item>
<item>
<title>The Course of Love by Alain de Botton</title>
<link>https://www.siddharthagolu.com/posts/reading/the-course-of-love/</link>
<pubDate>Thu, 14 Feb 2019 20:21:45 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-course-of-love/</guid>
<description>Check it out on Goodreads
The School of Life - a massively popular YouTube channel - used to be this source of solace in some turbulent times of my college life. It is not something that you&amp;rsquo;d think would be cheerful and uplifting - a quick glance at some of the most popular videos of the channel would include titles such as &amp;ldquo;Why we go cold on our partners&amp;rdquo;, &amp;ldquo;Why you will marry the wrong person&amp;rdquo; etc.</description>
</item>
<item>
<title>The Stranger and The Plague by Albert Camus</title>
<link>https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/</link>
<pubDate>Mon, 21 Jan 2019 14:39:14 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/</guid>
<description>On my journey to learn more about philosophy - the first step into the realms of existentialism</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/categories/book-notes/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/categories/">Categories</a></div>
<h1>
Book Notes
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/categories/book-notes/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,58 +158,58 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>I Do What I Do by Raghuram Rajan
<h2 class="entry-hint-parent">I Do What I Do by Raghuram Rajan
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I had picked up this one thinking it to be an autobiography, and with an expectation that itll cover Rajans tussles with the government in more details. I was pleasantly surprised to find instead a good collection of technical essays covering the workings of RBI, and economics in general. If youre looking for a good explanatory work in the field of Economics (and especially those concerning India and its policies), youll enjoy this....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-12-19 09:24:30 &#43;0530 IST&#39;&gt;🗓 December 19, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/economics&#34;&gt; economics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-12-19 09:24:30 +0530 IST'>🗓 December 19, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/economics"> economics</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a></footer>
<a class="entry-link" aria-label="post link to I Do What I Do by Raghuram Rajan" href="https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Azadi by Arundhati Roy
<h2 class="entry-hint-parent">Azadi by Arundhati Roy
</h2>
</header>
<div class="entry-content">
<p>A series of essays on the bleak reality in India. Highly recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-09-30 22:22:13 &#43;0530 IST&#39;&gt;🗓 September 30, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-09-30 22:22:13 +0530 IST'>🗓 September 30, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Azadi by Arundhati Roy" href="https://www.siddharthagolu.com/posts/reading/azadi/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Stoner by John Williams
<h2 class="entry-hint-parent">Stoner by John Williams
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
Reading fiction has always been a double-edged sword for me. Some of the most intimate moments Ive spent alone is while reading fictional stories, while at the same time, feeling a pang of disappointment for myself because I wasnt doing anything “productive.” Is this mere entertainment? Am I just escaping my real-life responsibilities and reading stories of make-believe? While I still havent found sincere answers to these questions, Ive grown more confident of what I enjoy and what I dont, which has consequently helped me find peace with this conflict....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-28 19:45:36 &#43;0530 IST&#39;&gt;🗓 June 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-28 19:45:36 +0530 IST'>🗓 June 28, 2020</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a></footer>
<a class="entry-link" aria-label="post link to Stoner by John Williams" href="https://www.siddharthagolu.com/posts/reading/stoner/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Bad Blood by John Carreyrou
<h2 class="entry-hint-parent">Bad Blood by John Carreyrou
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
How to fool the world and become a Billionaire I remember hearing about Elizabeth Holmes when I was in my late teens, at that impressionable age when you get hyper-inspired by reading about icons that are going to change the world. There was a profile of her in Wired, with an eye-catching image of her wearing a turtleneck black sweater holding what looked like a test-tube with a tiny amount of blood with a science-y background....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-05-01 23:39:18 &#43;0530 IST&#39;&gt;🗓 May 1, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/journalism&#34;&gt; journalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-05-01 23:39:18 +0530 IST'>🗓 May 1, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/journalism"> journalism</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a></footer>
<a class="entry-link" aria-label="post link to Bad Blood by John Carreyrou" href="https://www.siddharthagolu.com/posts/reading/bad-blood/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Waking Up by Sam Harris
<h2 class="entry-hint-parent">Waking Up by Sam Harris
</h2>
</header>
<div class="entry-content">
@ -218,26 +217,26 @@ How to fool the world and become a Billionaire I remember hearing about Elizabet
A disappointing jumble of thoughts Disappointed.
I am an atheist interested in the power of mindfulness and the whole world of so-called spirituality, so naturally, I am the ideal audience that Sam Harris is looking for. But it disappointed in almost every domain that I had expectations in. Using deep-sounding difficult words and wrapping them in an almost mythical aura of “Consciousness”, this one was a huge letdown....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-04-15 23:31:08 &#43;0530 IST&#39;&gt;🗓 April 15, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/meditation&#34;&gt; meditation&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-04-15 23:31:08 +0530 IST'>🗓 April 15, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/meditation"> meditation</a></footer>
<a class="entry-link" aria-label="post link to Waking Up by Sam Harris" href="https://www.siddharthagolu.com/posts/reading/waking-up/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Glimpses of World History by Jawaharlal Nehru
<h2 class="entry-hint-parent">Glimpses of World History by Jawaharlal Nehru
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
World history in a nutshell More than 1100 pages, this behemoth of a book still fails to capture the whole essence of world history - and rightly so. How can you combine over 2000 years of human history and still do justice to every element? But the unique manner in which this book - or more appropriately, collection of letters - has been written, it shines brightly amongst the plethora of history books you can find on this vast subject of world history....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-03-12 23:23:19 &#43;0530 IST&#39;&gt;🗓 March 12, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/letters&#34;&gt; letters&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-03-12 23:23:19 +0530 IST'>🗓 March 12, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/letters"> letters</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Glimpses of World History by Jawaharlal Nehru" href="https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Reasons to Stay Alive by Matt Haig
<h2 class="entry-hint-parent">Reasons to Stay Alive by Matt Haig
</h2>
</header>
<div class="entry-content">
@ -245,39 +244,39 @@ World history in a nutshell More than 1100 pages, this behemoth of a book still
Reasons you should read this book:
If youve ever had a panic attack. If youve ever counted the number of times the ceiling fan rotates, just so you could avoid dealing with the endless voices in your head. If youve ever felt ashamed to admit that you might be suffering from the D-word. If reading about personal stories of how people overcame their mental illnesses soothes you....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-01-28 22:28:18 &#43;0530 IST&#39;&gt;🗓 January 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/depression&#34;&gt; depression&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-01-28 22:28:18 +0530 IST'>🗓 January 28, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/depression"> depression</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a></footer>
<a class="entry-link" aria-label="post link to Reasons to Stay Alive by Matt Haig" href="https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>How to Listen to and Understand Great Music by Robert Greenberg
<h2 class="entry-hint-parent">How to Listen to and Understand Great Music by Robert Greenberg
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-01-16 22:05:06 &#43;0530 IST&#39;&gt;🗓 January 16, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/classical-music&#34;&gt; classical-music&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-01-16 22:05:06 +0530 IST'>🗓 January 16, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/classical-music"> classical-music</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a></footer>
<a class="entry-link" aria-label="post link to How to Listen to and Understand Great Music by Robert Greenberg" href="https://www.siddharthagolu.com/posts/reading/great-music/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky
<h2 class="entry-hint-parent">Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
There are few books which leave you in a mesmerizing state after having read them. You ponder about it for days to come, want to scream your head off about it to anyone whod listen, and then dwell in this fear of picking up another book because how can something else ever come close to being this perfect! I have felt this way before - first when Id finished The Complete Sherlock Holmes, later when I was left in a daze for multiple days after finishing the notorious and brilliant House of Leaves, and much more recently when I was unable to sleep after reading Why We Sleep by Matthew Walker....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-09-12 20:12:10 &#43;0530 IST&#39;&gt;🗓 September 12, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;6 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-09-12 20:12:10 +0530 IST'>🗓 September 12, 2019</span>&nbsp;·&nbsp;6 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a></footer>
<a class="entry-link" aria-label="post link to Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky" href="https://www.siddharthagolu.com/posts/reading/behave-review/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Range by David Epstein
<h2 class="entry-hint-parent">Range by David Epstein
</h2>
</header>
<div class="entry-content">
@ -285,7 +284,7 @@ There are few books which leave you in a mesmerizing state after having read the
Started with a tightly-knit structure, but faltered at the end. The last few chapters were a slog to get through - mostly because of numerous “business-class” style case studies.
Main takeaway? Other than the central idea around which the book revolves (and succinctly mentioned as the book subtitle too), the idea of interleaving is what struck me the most. I had already read about this particular method in Michael Nielsens brilliant post on Anki (“Augmenting Long-term Memory”) and it was interesting to read about it formally in the book....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-09-05 00:16:14 &#43;0530 IST&#39;&gt;🗓 September 5, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-09-05 00:16:14 +0530 IST'>🗓 September 5, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a></footer>
<a class="entry-link" aria-label="post link to Range by David Epstein" href="https://www.siddharthagolu.com/posts/reading/range-a-review/"></a>
</article>
<footer class="page-footer">
@ -300,7 +299,7 @@ Main takeaway? Other than the central idea around which the book revolves (and s
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/categories/book-notes/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/categories/">Categories</a></div>
<h1>
Book Notes
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/categories/book-notes/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,26 +158,26 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>The Course of Love by Alain de Botton
<h2 class="entry-hint-parent">The Course of Love by Alain de Botton
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
The School of Life - a massively popular YouTube channel - used to be this source of solace in some turbulent times of my college life. It is not something that youd think would be cheerful and uplifting - a quick glance at some of the most popular videos of the channel would include titles such as “Why we go cold on our partners”, “Why you will marry the wrong person” etc....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-02-14 20:21:45 &#43;0530 IST&#39;&gt;🗓 February 14, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/relationship&#34;&gt; relationship&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-02-14 20:21:45 +0530 IST'>🗓 February 14, 2019</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/relationship"> relationship</a></footer>
<a class="entry-link" aria-label="post link to The Course of Love by Alain de Botton" href="https://www.siddharthagolu.com/posts/reading/the-course-of-love/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>The Stranger and The Plague by Albert Camus
<h2 class="entry-hint-parent">The Stranger and The Plague by Albert Camus
</h2>
</header>
<div class="entry-content">
<p>Preamble Philosophy has always been one of those baffling things that entice you at first by its simplicity, but as you get sucked into it more and more, you find yourself searching for the end of this labyrinthine landscape. I had my first exposure to anything related to philosophy in my second year of college when I stumbled upon The Fountainhead by Ayn Rand. At the time, it was one of the fascinating books I had ever read....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-01-21 14:39:14 &#43;0530 IST&#39;&gt;🗓 January 21, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;7 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/existentialism&#34;&gt; existentialism&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-01-21 14:39:14 +0530 IST'>🗓 January 21, 2019</span>&nbsp;·&nbsp;7 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/existentialism"> existentialism</a></footer>
<a class="entry-link" aria-label="post link to The Stranger and The Plague by Albert Camus" href="https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/"></a>
</article>
<footer class="page-footer">
@ -191,7 +190,7 @@ The School of Life - a massively popular YouTube channel - used to be this sourc
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/categories/cinema/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/categories/">Categories</a></div>
<h1>
Cinema
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/categories/cinema/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,31 +158,31 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>After Life (1998) by Hirokazu Kore-eda
<h2 class="entry-hint-parent">After Life (1998) by Hirokazu Kore-eda
</h2>
</header>
<div class="entry-content">
<p>An interesting take on life, seen through the lens of afterlife. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-05-01 22:41:55 &#43;0530 IST&#39;&gt;🗓 May 1, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-05-01 22:41:55 +0530 IST'>🗓 May 1, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to After Life (1998) by Hirokazu Kore-eda" href="https://www.siddharthagolu.com/posts/cinema/after-life/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>3 Iron (2004) by Kim Ki-duk
<h2 class="entry-hint-parent">3 Iron (2004) by Kim Ki-duk
</h2>
</header>
<div class="entry-content">
<p>A film where everything is conveyed through glances.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-11-14 10:46:40 &#43;0530 IST&#39;&gt;🗓 November 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/minimalism&#34;&gt; minimalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/minimalism"> minimalism</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to 3 Iron (2004) by Kim Ki-duk" href="https://www.siddharthagolu.com/posts/cinema/3-iron/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Winter Sleep (2014) by Nuri Bilge Ceylan
<h2 class="entry-hint-parent">Winter Sleep (2014) by Nuri Bilge Ceylan
</h2>
</header>
<div class="entry-content">
@ -191,39 +190,39 @@
Over the years, I have increasingly gravitated towards films where supposedly “nothing happens”. Characters talk, no attempt is made to instill a moral point into the minds of the audience, which is usually accompanied with long, patient shots of people existing in their environments. This was an excellent specimen of the same dish.
I had watched Once Upon a Time in Anatolia from the same director previously and much like films by Wes Anderson, I could immediately tell this was Ceylans film right from the start, although these two directors could not be any more different....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-03-15 21:30:40 &#43;0530 IST&#39;&gt;🗓 March 15, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/turkey&#34;&gt; turkey&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-03-15 21:30:40 +0530 IST'>🗓 March 15, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/turkey"> turkey</a></footer>
<a class="entry-link" aria-label="post link to Winter Sleep (2014) by Nuri Bilge Ceylan" href="https://www.siddharthagolu.com/posts/cinema/winter-sleep/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan
<h2 class="entry-hint-parent">Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan
</h2>
</header>
<div class="entry-content">
<p>Verdict: ★ ★ ★ ★ ☆ Check it out on Letterboxd
A slow, methodical display of patience and absurdity juxtaposed on the vast landscape, this film has something else going for it. When you read the synopsis or look at the posters, you expect a certain police procedural drama - the kind of which youve been accustomed to till date. What you get is a completely different take on the trope....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-02-07 22:44:49 &#43;0530 IST&#39;&gt;🗓 February 7, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/turkey&#34;&gt; turkey&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-02-07 22:44:49 +0530 IST'>🗓 February 7, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/turkey"> turkey</a></footer>
<a class="entry-link" aria-label="post link to Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan" href="https://www.siddharthagolu.com/posts/cinema/anatolia/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Riding Solo to the Top of the World (2006) by Gaurav Jani
<h2 class="entry-hint-parent">Riding Solo to the Top of the World (2006) by Gaurav Jani
</h2>
</header>
<div class="entry-content">
<p>Verdict: ★ ★ ★ ★ ★ Check it out on Letterboxd
Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-speed-ninjas-Harley-fans, and it usually gets a bad rap all across the world. Gaurav Jani is none of these things. His passion and humility and curious nature reminded me why I loved biking in the first place. This is a must-watch for anyone fascinated with two wheels and the places they enable you to visit.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-01-03 22:53:01 &#43;0530 IST&#39;&gt;🗓 January 3, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/motorcycling&#34;&gt; motorcycling&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-01-03 22:53:01 +0530 IST'>🗓 January 3, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/motorcycling"> motorcycling</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a></footer>
<a class="entry-link" aria-label="post link to Riding Solo to the Top of the World (2006) by Gaurav Jani" href="https://www.siddharthagolu.com/posts/cinema/riding-solo/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Waking Life (2001) by Richard Linklater
<h2 class="entry-hint-parent">Waking Life (2001) by Richard Linklater
</h2>
</header>
<div class="entry-content">
@ -231,13 +230,13 @@ Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-spee
There are films which you wish you had watched earlier in life, and there are others which dont make sense until you have had your fair share of world experiences. Waking Life falls in the former category.
The college sophomore me would have been really excited about discussing vague notions of self and freedom and free will and morality and dreams - and dont get me wrong, mid-twenties me is equally as excited about these things as my former self, if not more so - but the problem lies in the superficiality of it all....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-11-27 22:57:50 &#43;0530 IST&#39;&gt;🗓 November 27, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animation&#34;&gt; animation&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-11-27 22:57:50 +0530 IST'>🗓 November 27, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/animation"> animation</a></footer>
<a class="entry-link" aria-label="post link to Waking Life (2001) by Richard Linklater" href="https://www.siddharthagolu.com/posts/cinema/waking-life/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Oslo, August 31st (2011) by Joachim Trier
<h2 class="entry-hint-parent">Oslo, August 31st (2011) by Joachim Trier
</h2>
</header>
<div class="entry-content">
@ -246,25 +245,25 @@ Anhedonia. The Wikipedia entry for this word says:
a diverse array of deficits in hedonic function, including reduced motivation or ability to experience pleasure.
At one point or another, we have all experienced some version of this phenomenon - may be characterized by an oversaturation of love, or caused by a prolonged mediocrity in life, or as in the case of our protagonist here, the complete loss of will and motivation to feel anything....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-04 14:39:00 &#43;0530 IST&#39;&gt;🗓 June 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/norwegian&#34;&gt; norwegian&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-04 14:39:00 +0530 IST'>🗓 June 4, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/norwegian"> norwegian</a></footer>
<a class="entry-link" aria-label="post link to Oslo, August 31st (2011) by Joachim Trier" href="https://www.siddharthagolu.com/posts/cinema/oslo-august/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>The Darjeeling Limited (2007) by Wes Anderson
<h2 class="entry-hint-parent">The Darjeeling Limited (2007) by Wes Anderson
</h2>
</header>
<div class="entry-content">
<p>Wes Anderson and his colorful quirks</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-03-04 23:01:15 &#43;0530 IST&#39;&gt;🗓 March 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/colorful-quirks&#34;&gt; colorful-quirks&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-03-04 23:01:15 +0530 IST'>🗓 March 4, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/colorful-quirks"> colorful-quirks</a></footer>
<a class="entry-link" aria-label="post link to The Darjeeling Limited (2007) by Wes Anderson" href="https://www.siddharthagolu.com/posts/cinema/darjeeling/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Cinema on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/categories/cinema/</link>
@ -11,87 +11,72 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sun, 01 May 2022 22:41:55 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/categories/cinema/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Sun, 01 May 2022 22:41:55 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/categories/cinema/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>After Life (1998) by Hirokazu Kore-eda</title>
<link>https://www.siddharthagolu.com/posts/cinema/after-life/</link>
<pubDate>Sun, 01 May 2022 22:41:55 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/after-life/</guid>
<description>An interesting take on life, seen through the lens of afterlife. Highly recommended!</description>
</item>
<item>
<title>3 Iron (2004) by Kim Ki-duk</title>
<link>https://www.siddharthagolu.com/posts/cinema/3-iron/</link>
<pubDate>Sun, 14 Nov 2021 10:46:40 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/3-iron/</guid>
<description>A film where everything is conveyed through glances.</description>
</item>
<item>
<title>Winter Sleep (2014) by Nuri Bilge Ceylan</title>
<link>https://www.siddharthagolu.com/posts/cinema/winter-sleep/</link>
<pubDate>Mon, 15 Mar 2021 21:30:40 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/winter-sleep/</guid>
<description>Verdict: ★ ★ ★ ★ ★ Check it out on Letterboxd
Over the years, I have increasingly gravitated towards films where supposedly &amp;ldquo;nothing happens&amp;rdquo;. Characters talk, no attempt is made to instill a moral point into the minds of the audience, which is usually accompanied with long, patient shots of people existing in their environments. This was an excellent specimen of the same dish.
I had watched Once Upon a Time in Anatolia from the same director previously and much like films by Wes Anderson, I could immediately tell this was Ceylan&amp;rsquo;s film right from the start, although these two directors could not be any more different.</description>
</item>
<item>
<title>Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan</title>
<link>https://www.siddharthagolu.com/posts/cinema/anatolia/</link>
<pubDate>Sun, 07 Feb 2021 22:44:49 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/anatolia/</guid>
<description>Verdict: ★ ★ ★ ★ ☆ Check it out on Letterboxd
A slow, methodical display of patience and absurdity juxtaposed on the vast landscape, this film has something else going for it. When you read the synopsis or look at the posters, you expect a certain police procedural drama - the kind of which you&amp;rsquo;ve been accustomed to till date. What you get is a completely different take on the trope.</description>
</item>
<item>
<title>Riding Solo to the Top of the World (2006) by Gaurav Jani</title>
<link>https://www.siddharthagolu.com/posts/cinema/riding-solo/</link>
<pubDate>Sun, 03 Jan 2021 22:53:01 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/riding-solo/</guid>
<description>Verdict: ★ ★ ★ ★ ★ Check it out on Letterboxd
Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-speed-ninjas-Harley-fans, and it usually gets a bad rap all across the world. Gaurav Jani is none of these things. His passion and humility and curious nature reminded me why I loved biking in the first place. This is a must-watch for anyone fascinated with two wheels and the places they enable you to visit.</description>
</item>
<item>
<title>Waking Life (2001) by Richard Linklater</title>
<link>https://www.siddharthagolu.com/posts/cinema/waking-life/</link>
<pubDate>Fri, 27 Nov 2020 22:57:50 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/waking-life/</guid>
<description>Verdict: ★ ★ ★ ☆ ☆ Check it out on Letterboxd
There are films which you wish you had watched earlier in life, and there are others which don&amp;rsquo;t make sense until you have had your fair share of world experiences. Waking Life falls in the former category.
The college sophomore me would have been really excited about discussing vague notions of self and freedom and free will and morality and dreams - and don&amp;rsquo;t get me wrong, mid-twenties me is equally as excited about these things as my former self, if not more so - but the problem lies in the superficiality of it all.</description>
</item>
<item>
<title>Oslo, August 31st (2011) by Joachim Trier</title>
<link>https://www.siddharthagolu.com/posts/cinema/oslo-august/</link>
<pubDate>Thu, 04 Jun 2020 14:39:00 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/oslo-august/</guid>
<description>Verdict: ★ ★ ★ ★ ☆ Check out this review on Letterboxd
Anhedonia. The Wikipedia entry for this word says:
a diverse array of deficits in hedonic function, including reduced motivation or ability to experience pleasure.
At one point or another, we have all experienced some version of this phenomenon - may be characterized by an oversaturation of love, or caused by a prolonged mediocrity in life, or as in the case of our protagonist here, the complete loss of will and motivation to feel anything.</description>
</item>
<item>
<title>The Darjeeling Limited (2007) by Wes Anderson</title>
<link>https://www.siddharthagolu.com/posts/cinema/darjeeling/</link>
<pubDate>Wed, 04 Mar 2020 23:01:15 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/darjeeling/</guid>
<description>Wes Anderson and his colorful quirks</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/categories/drawings/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/categories/">Categories</a></div>
<h1>
Drawings
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/categories/drawings/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,79 +158,79 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>A Beautiful Woman
<h2 class="entry-hint-parent">A Beautiful Woman
</h2>
</header>
<div class="entry-content">
<p>I dont know why, but I liked the eyes-only version more. Linked below is the work-in-progress sketch:</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:26:51 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:26:51 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to A Beautiful Woman" href="https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Martin Freeman
<h2 class="entry-hint-parent">Martin Freeman
</h2>
</header>
<div class="entry-content">
<p>I used to be obsessed with Sherlock (the HBO show) during the time it aired, and part of my fascination was with Martin Freeman here, who so brilliantly played the role of Watson.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:20:16 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:20:16 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Martin Freeman" href="https://www.siddharthagolu.com/posts/drawings/martin-freeman/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Einstein
<h2 class="entry-hint-parent">Einstein
</h2>
</header>
<div class="entry-content">
<p>I have a particular affinity towards this sketch as I was very apprehensive about attempting Einstein, his face had much more complexity than what I usually dealt with, but it turned out good enough in the end.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:14:48 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:14:48 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Einstein" href="https://www.siddharthagolu.com/posts/drawings/einstein/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Mother Teresa
<h2 class="entry-hint-parent">Mother Teresa
</h2>
</header>
<div class="entry-content">
<p>Completely botched this drawing, but it reminds me of the drawing streak I used to have back when I was in my hometown during college vacations.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:09:43 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:09:43 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Mother Teresa" href="https://www.siddharthagolu.com/posts/drawings/teresa/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Charlie Chaplin (um... not quite)
<h2 class="entry-hint-parent">Charlie Chaplin (um... not quite)
</h2>
</header>
<div class="entry-content">
<p>I was either on acid or I had watched a sad movie before attempting this piece. A strange juxtaposition of Chaplin and Hitler.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:01:36 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:01:36 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Charlie Chaplin (um... not quite)" href="https://www.siddharthagolu.com/posts/drawings/chaplin/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Gandhi
<h2 class="entry-hint-parent">Gandhi
</h2>
</header>
<div class="entry-content">
<p>My first attempt at drawing after dabbling in caricature pieces in my childhood :)</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 16:51:23 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 16:51:23 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Gandhi" href="https://www.siddharthagolu.com/posts/drawings/gandhi/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Drawings on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/categories/drawings/</link>
@ -11,60 +11,49 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Tue, 09 Jun 2020 17:26:51 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/categories/drawings/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Tue, 09 Jun 2020 17:26:51 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/categories/drawings/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>A Beautiful Woman</title>
<link>https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/</link>
<pubDate>Tue, 09 Jun 2020 17:26:51 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/</guid>
<description>I don&amp;rsquo;t know why, but I liked the eyes-only version more. Linked below is the work-in-progress sketch:</description>
</item>
<item>
<title>Martin Freeman</title>
<link>https://www.siddharthagolu.com/posts/drawings/martin-freeman/</link>
<pubDate>Tue, 09 Jun 2020 17:20:16 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/martin-freeman/</guid>
<description>I used to be obsessed with Sherlock (the HBO show) during the time it aired, and part of my fascination was with Martin Freeman here, who so brilliantly played the role of Watson.</description>
</item>
<item>
<title>Einstein</title>
<link>https://www.siddharthagolu.com/posts/drawings/einstein/</link>
<pubDate>Tue, 09 Jun 2020 17:14:48 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/einstein/</guid>
<description>I have a particular affinity towards this sketch as I was very apprehensive about attempting Einstein, his face had much more complexity than what I usually dealt with, but it turned out good enough in the end.</description>
</item>
<item>
<title>Mother Teresa</title>
<link>https://www.siddharthagolu.com/posts/drawings/teresa/</link>
<pubDate>Tue, 09 Jun 2020 17:09:43 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/teresa/</guid>
<description>Completely botched this drawing, but it reminds me of the drawing streak I used to have back when I was in my hometown during college vacations.</description>
</item>
<item>
<title>Charlie Chaplin (um... not quite)</title>
<link>https://www.siddharthagolu.com/posts/drawings/chaplin/</link>
<pubDate>Tue, 09 Jun 2020 17:01:36 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/chaplin/</guid>
<description>I was either on acid or I had watched a sad movie before attempting this piece. A strange juxtaposition of Chaplin and Hitler.</description>
</item>
<item>
<title>Gandhi</title>
<link>https://www.siddharthagolu.com/posts/drawings/gandhi/</link>
<pubDate>Tue, 09 Jun 2020 16:51:23 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/gandhi/</guid>
<description>My first attempt at drawing after dabbling in caricature pieces in my childhood :)</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/categories/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -167,7 +166,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/categories/</link>
@ -11,51 +11,42 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sun, 03 Sep 2023 21:05:39 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/categories/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Sun, 03 Sep 2023 21:05:39 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/categories/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Book Notes</title>
<link>https://www.siddharthagolu.com/categories/book-notes/</link>
<pubDate>Sun, 03 Sep 2023 21:05:39 +0530</pubDate>
<guid>https://www.siddharthagolu.com/categories/book-notes/</guid>
<description></description>
</item>
<item>
<title>Cinema</title>
<link>https://www.siddharthagolu.com/categories/cinema/</link>
<pubDate>Sun, 01 May 2022 22:41:55 +0530</pubDate>
<guid>https://www.siddharthagolu.com/categories/cinema/</guid>
<description></description>
</item>
<item>
<title>Photography</title>
<link>https://www.siddharthagolu.com/categories/photography/</link>
<pubDate>Tue, 23 Mar 2021 20:18:21 +0530</pubDate>
<guid>https://www.siddharthagolu.com/categories/photography/</guid>
<description></description>
</item>
<item>
<title>Drawings</title>
<link>https://www.siddharthagolu.com/categories/drawings/</link>
<pubDate>Tue, 09 Jun 2020 17:26:51 +0530</pubDate>
<guid>https://www.siddharthagolu.com/categories/drawings/</guid>
<description></description>
</item>
<item>
<title>Poetry</title>
<link>https://www.siddharthagolu.com/categories/poetry/</link>
<pubDate>Sat, 25 Apr 2020 23:45:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/categories/poetry/</guid>
<description></description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/categories/photography/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/categories/">Categories</a></div>
<h1>
Photography
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/categories/photography/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,7 +158,7 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Photography
<h2 class="entry-hint-parent">Photography
</h2>
</header>
<div class="entry-content">
@ -167,13 +166,13 @@
You can browse the images below using left/right keys. All the images are hosted on flickr, Id recommend navigating to my photostream if you want to see them in full size. 1
You might need to enable Javascript if youre unable to see the images properly....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-03-23 20:18:21 &#43;0530 IST&#39;&gt;🗓 March 23, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Siddhartha Golu</footer>
<footer class="entry-footer"><span title='2021-03-23 20:18:21 +0530 IST'>🗓 March 23, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Siddhartha Golu</footer>
<a class="entry-link" aria-label="post link to Photography" href="https://www.siddharthagolu.com/photography/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Photography on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/categories/photography/</link>
@ -11,17 +11,16 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Tue, 23 Mar 2021 20:18:21 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/categories/photography/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Tue, 23 Mar 2021 20:18:21 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/categories/photography/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Photography</title>
<link>https://www.siddharthagolu.com/photography/</link>
<pubDate>Tue, 23 Mar 2021 20:18:21 +0530</pubDate>
<guid>https://www.siddharthagolu.com/photography/</guid>
<description>My fascination with the visual media brought me closer to seeing the world through a different lens. This is an ongoing effort to capture what I see and share it with the world.
You can browse the images below using left/right keys. All the images are hosted on flickr, I&amp;rsquo;d recommend navigating to my photostream if you want to see them in full size. 1
You might need to enable Javascript if you&amp;rsquo;re unable to see the images properly.</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/categories/poetry/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/categories/">Categories</a></div>
<h1>
Poetry
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/categories/poetry/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,7 +158,7 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Fear
<h2 class="entry-hint-parent">Fear
</h2>
</header>
<div class="entry-content">
@ -175,13 +174,13 @@ feasting on my thoughts,
mutating inside my head as if a colony of ants was given
an open invitation to a room full of sugary syrup....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-04-25 23:45:30 &#43;0530 IST&#39;&gt;🗓 April 25, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/poetry&#34;&gt; poetry&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/writing&#34;&gt; writing&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-04-25 23:45:30 +0530 IST'>🗓 April 25, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/poetry"> poetry</a>&nbsp;·&nbsp;<a href="/tags/writing"> writing</a></footer>
<a class="entry-link" aria-label="post link to Fear" href="https://www.siddharthagolu.com/posts/scared-in-lockdown/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Deference vs. Indifference
<h2 class="entry-hint-parent">Deference vs. Indifference
</h2>
</header>
<div class="entry-content">
@ -196,13 +195,13 @@ when I used to love the aroma
of the stick when it burned,
lighting up my day with the secret enchantments,...</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-03-15 22:27:30 &#43;0530 IST&#39;&gt;🗓 March 15, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/poetry&#34;&gt; poetry&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/writing&#34;&gt; writing&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-03-15 22:27:30 +0530 IST'>🗓 March 15, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/poetry"> poetry</a>&nbsp;·&nbsp;<a href="/tags/writing"> writing</a></footer>
<a class="entry-link" aria-label="post link to Deference vs. Indifference" href="https://www.siddharthagolu.com/posts/deference-vs-indifference/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Poetry on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/categories/poetry/</link>
@ -11,12 +11,12 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sat, 25 Apr 2020 23:45:30 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/categories/poetry/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Sat, 25 Apr 2020 23:45:30 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/categories/poetry/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Fear</title>
<link>https://www.siddharthagolu.com/posts/scared-in-lockdown/</link>
<pubDate>Sat, 25 Apr 2020 23:45:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/scared-in-lockdown/</guid>
<description>Check it out on Instagram
I&amp;rsquo;m scared.
@ -30,12 +30,10 @@ feasting on my thoughts,
mutating inside my head as if a colony of ants was given
an open invitation to a room full of sugary syrup.</description>
</item>
<item>
<title>Deference vs. Indifference</title>
<link>https://www.siddharthagolu.com/posts/deference-vs-indifference/</link>
<pubDate>Fri, 15 Mar 2019 22:27:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/deference-vs-indifference/</guid>
<description>(See this picture on Flickr)
Deference vs. Indifference There used to be a time
@ -48,6 +46,5 @@ when I used to love the aroma
of the stick when it burned,
lighting up my day with the secret enchantments,</description>
</item>
</channel>
</rss>

View File

@ -2,7 +2,7 @@
<html lang="en" dir="auto">
<head>
<meta name="generator" content="Hugo 0.121.1"><meta charset="utf-8">
<meta name="generator" content="Hugo 0.121.2"><meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="index, follow">
@ -11,8 +11,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +38,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -174,32 +173,35 @@
</div>
<footer class="entry-footer">
<div class="social-icons">
<a href="https://www.goodreads.com/siddharthagolu" target="_blank" rel="noopener noreferrer me" title="Goodreads">
<div class="social-icons" >
<a href="https://www.goodreads.com/siddharthagolu" target="_blank" rel="noopener noreferrer me"
title="Goodreads">
<svg xmlns="http://www.w3.org/2000/svg" role="img" fill="currentColor" viewBox="0 0 24 24">
<path
d="M11.43 23.995c-3.608-.208-6.274-2.077-6.448-5.078.695.007 1.375-.013 2.07-.006.224 1.342 1.065 2.43 2.683 3.026 1.583.496 3.737.46 5.082-.174 1.351-.636 2.145-1.822 2.503-3.577.212-1.042.236-1.734.231-2.92l-.005-1.631h-.059c-1.245 2.564-3.315 3.53-5.59 3.475-5.74-.054-7.68-4.534-7.528-8.606.01-5.241 3.22-8.537 7.557-8.495 2.354-.14 4.605 1.362 5.554 3.37l.059.002.002-2.918 2.099.004-.002 15.717c-.193 7.04-4.376 7.89-8.209 7.811zm6.1-15.633c-.096-3.26-1.601-6.62-5.503-6.645-3.954-.017-5.625 3.592-5.604 6.85-.013 3.439 1.643 6.305 4.703 6.762 4.532.591 6.551-3.411 6.404-6.967z" />
</svg>
</a>
<a href="https://flickr.com/photos/thelazyoxymoron/" target="_blank" rel="noopener noreferrer me" title="Flickr">
<a href="https://flickr.com/photos/thelazyoxymoron/" target="_blank" rel="noopener noreferrer me"
title="Flickr">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor">
<path
d="M5.334 6.666C2.3884 6.666 0 9.055 0 12c0 2.9456 2.3884 5.334 5.334 5.334 2.9456 0 5.332-2.3884 5.332-5.334 0-2.945-2.3864-5.334-5.332-5.334zm13.332 0c-2.9456 0-5.332 2.389-5.332 5.334 0 2.9456 2.3864 5.334 5.332 5.334C21.6116 17.334 24 14.9456 24 12c0-2.945-2.3884-5.334-5.334-5.334Z" />
</svg>
</a>
<a href="https://bsky.app/profile/siddharthagolu.com" target="_blank" rel="noopener noreferrer me" title="Bluesky">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path>
<path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path>
<a href="https://bsky.app/profile/siddharthagolu.com" target="_blank" rel="noopener noreferrer me"
title="Bluesky">
<svg viewBox="0 0 360 320" xmlns="http://www.w3.org/2000/svg" fill="currentColor">
<path d="M180 141.964C163.699 110.262 119.308 51.1817 78.0347 22.044C38.4971 -5.86834 23.414 -1.03207 13.526 3.43594C2.08093 8.60755 0 26.1785 0 36.5164C0 46.8542 5.66748 121.272 9.36416 133.694C21.5786 174.738 65.0603 188.607 105.104 184.156C107.151 183.852 109.227 183.572 111.329 183.312C109.267 183.642 107.19 183.924 105.104 184.156C46.4204 192.847 -5.69621 214.233 62.6582 290.33C137.848 368.18 165.705 273.637 180 225.702C194.295 273.637 210.76 364.771 295.995 290.33C360 225.702 313.58 192.85 254.896 184.158C252.81 183.926 250.733 183.645 248.671 183.315C250.773 183.574 252.849 183.855 254.896 184.158C294.94 188.61 338.421 174.74 350.636 133.697C354.333 121.275 360 46.8568 360 36.519C360 26.1811 357.919 8.61012 346.474 3.43851C336.586 -1.02949 321.503 -5.86576 281.965 22.0466C240.692 51.1843 196.301 110.262 180 141.964Z"/>
</svg>
</a>
<a href="https://letterboxd.com/Carte_Blanche/" target="_blank" rel="noopener noreferrer me" title="Letterboxd">
<a href="https://letterboxd.com/Carte_Blanche/" target="_blank" rel="noopener noreferrer me"
title="Letterboxd">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"fill="currentColor">
<path d="M11.052 22.339V9.599H8.729V6.401h8.438v3.198h-2.328v12.766h5.234v-3.49h3.781v6.724H8.729v-3.26zM0 16c0 8.839 7.161 16 16 16s16-7.161 16-16S24.839 0 16 0S0 7.161 0 16z"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/siddharthagolu/" target="_blank" rel="noopener noreferrer me" title="LinkedIn">
<a href="https://www.linkedin.com/in/siddharthagolu/" target="_blank" rel="noopener noreferrer me"
title="LinkedIn">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path>
@ -214,116 +216,116 @@
<article class="post-entry">
<header class="entry-header">
<h2>Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan
<h2 class="entry-hint-parent">Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan
</h2>
</header>
<div class="entry-content">
<p>A powerful exploration into the psyche of Indian women and how society perpetuates the status quo</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-09-03 21:05:39 &#43;0530 IST&#39;&gt;🗓 September 3, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/feminism&#34;&gt; feminism&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-09-03 21:05:39 +0530 IST'>🗓 September 3, 2023</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/feminism"> feminism</a></footer>
<a class="entry-link" aria-label="post link to Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan" href="https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Empire of Pain: The Secret History of the Sackler Dynasty
<h2 class="entry-hint-parent">Empire of Pain: The Secret History of the Sackler Dynasty
</h2>
</header>
<div class="entry-content">
<p>If you want to understand how the opioid crisis began, read this</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-06-21 08:49:32 &#43;0530 IST&#39;&gt;🗓 June 21, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/public-health&#34;&gt; public-health&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-06-21 08:49:32 +0530 IST'>🗓 June 21, 2023</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/public-health"> public-health</a></footer>
<a class="entry-link" aria-label="post link to Empire of Pain: The Secret History of the Sackler Dynasty" href="https://www.siddharthagolu.com/posts/reading/empire-of-pain/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>So Good They Can&#39;t Ignore You - Cal Newport
<h2 class="entry-hint-parent">So Good They Can&#39;t Ignore You - Cal Newport
</h2>
</header>
<div class="entry-content">
<p>A series of blog posts that unfortunately became a book. Not recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-03-29 15:04:13 &#43;0530 IST&#39;&gt;🗓 March 29, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/fast-food-books&#34;&gt; fast-food-books&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-03-29 15:04:13 +0530 IST'>🗓 March 29, 2023</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a>&nbsp;·&nbsp;<a href="/tags/fast-food-books"> fast-food-books</a></footer>
<a class="entry-link" aria-label="post link to So Good They Can&#39;t Ignore You - Cal Newport" href="https://www.siddharthagolu.com/posts/reading/so-good-newport/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman
<h2 class="entry-hint-parent">Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman
</h2>
</header>
<div class="entry-content">
<p>A book about time and our relationship with it. Recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-09-21 07:35:24 &#43;0530 IST&#39;&gt;🗓 September 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-09-21 07:35:24 +0530 IST'>🗓 September 21, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a></footer>
<a class="entry-link" aria-label="post link to Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman" href="https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>After Life (1998) by Hirokazu Kore-eda
<h2 class="entry-hint-parent">After Life (1998) by Hirokazu Kore-eda
</h2>
</header>
<div class="entry-content">
<p>An interesting take on life, seen through the lens of afterlife. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-05-01 22:41:55 &#43;0530 IST&#39;&gt;🗓 May 1, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-05-01 22:41:55 +0530 IST'>🗓 May 1, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to After Life (1998) by Hirokazu Kore-eda" href="https://www.siddharthagolu.com/posts/cinema/after-life/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Life Between Buildings by Jan Gehl
<h2 class="entry-hint-parent">Life Between Buildings by Jan Gehl
</h2>
</header>
<div class="entry-content">
<p>A gentle introduction to the study of buildings and the way they enable societal interactions.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-04-21 09:04:49 &#43;0530 IST&#39;&gt;🗓 April 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/architecture&#34;&gt; architecture&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/society&#34;&gt; society&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-04-21 09:04:49 +0530 IST'>🗓 April 21, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/architecture"> architecture</a>&nbsp;·&nbsp;<a href="/tags/society"> society</a></footer>
<a class="entry-link" aria-label="post link to Life Between Buildings by Jan Gehl" href="https://www.siddharthagolu.com/posts/reading/life-between-buildings/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>3 Iron (2004) by Kim Ki-duk
<h2 class="entry-hint-parent">3 Iron (2004) by Kim Ki-duk
</h2>
</header>
<div class="entry-content">
<p>A film where everything is conveyed through glances.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-11-14 10:46:40 &#43;0530 IST&#39;&gt;🗓 November 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/minimalism&#34;&gt; minimalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/minimalism"> minimalism</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to 3 Iron (2004) by Kim Ki-duk" href="https://www.siddharthagolu.com/posts/cinema/3-iron/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>The Way We Eat: Why Our Food Choices Matter by Peter Singer
<h2 class="entry-hint-parent">The Way We Eat: Why Our Food Choices Matter by Peter Singer
</h2>
</header>
<div class="entry-content">
<p>The ethical dilemma of eating. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-09-01 10:43:25 &#43;0530 IST&#39;&gt;🗓 September 1, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/review&#34;&gt; review&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/debating-ethics&#34;&gt; debating-ethics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animal-cruelty&#34;&gt; animal-cruelty&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/review"> review</a>&nbsp;·&nbsp;<a href="/tags/debating-ethics"> debating-ethics</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/animal-cruelty"> animal-cruelty</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to The Way We Eat: Why Our Food Choices Matter by Peter Singer" href="https://www.siddharthagolu.com/posts/reading/the-way-we-eat/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Shame by Salman Rushdie
<h2 class="entry-hint-parent">Shame by Salman Rushdie
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
Now that Ive moved away from reading fiction, I find that I face a lot of inertia to pick up something purely for pleasure. Maybe this is a nasty by-product of wanting to be as “productive” as possible. But the more I have drifted away from reading for pleasure, more mechanical the whole process has become for me. Partly to avoid this feeling, and partly because of my shame at seeing my bookshelf filled with dusty unread books, I picked up this one to assuage my feelings of guilt....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-08-17 22:55:02 &#43;0530 IST&#39;&gt;🗓 August 17, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-08-17 22:55:02 +0530 IST'>🗓 August 17, 2021</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a></footer>
<a class="entry-link" aria-label="post link to Shame by Salman Rushdie" href="https://www.siddharthagolu.com/posts/reading/shame-rushdie/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>What I Talk About When I Talk About Running by Haruki Murakami
<h2 class="entry-hint-parent">What I Talk About When I Talk About Running by Haruki Murakami
</h2>
</header>
<div class="entry-content">
@ -331,7 +333,7 @@ Now that Ive moved away from reading fiction, I find that I face a lot of ine
Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-08-14 20:09:56 &#43;0530 IST&#39;&gt;🗓 August 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/health&#34;&gt; health&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-08-14 20:09:56 +0530 IST'>🗓 August 14, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/health"> health</a></footer>
<a class="entry-link" aria-label="post link to What I Talk About When I Talk About Running by Haruki Murakami" href="https://www.siddharthagolu.com/posts/reading/running-murakami/"></a>
</article>
<footer class="page-footer">
@ -343,7 +345,7 @@ I have no affinity for running, even for short jogs, and much less for wanting t
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/</link>
@ -11,284 +11,228 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sun, 03 Sep 2023 21:05:39 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Sun, 03 Sep 2023 21:05:39 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan</title>
<link>https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/</link>
<pubDate>Sun, 03 Sep 2023 21:05:39 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/</guid>
<description>A powerful exploration into the psyche of Indian women and how society perpetuates the status quo</description>
</item>
<item>
<title>Empire of Pain: The Secret History of the Sackler Dynasty</title>
<link>https://www.siddharthagolu.com/posts/reading/empire-of-pain/</link>
<pubDate>Wed, 21 Jun 2023 08:49:32 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/empire-of-pain/</guid>
<description>If you want to understand how the opioid crisis began, read this</description>
</item>
<item>
<title>So Good They Can&#39;t Ignore You - Cal Newport</title>
<link>https://www.siddharthagolu.com/posts/reading/so-good-newport/</link>
<pubDate>Wed, 29 Mar 2023 15:04:13 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/so-good-newport/</guid>
<description>A series of blog posts that unfortunately became a book. Not recommended.</description>
</item>
<item>
<title>Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman</title>
<link>https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/</link>
<pubDate>Wed, 21 Sep 2022 07:35:24 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/</guid>
<description>A book about time and our relationship with it. Recommended.</description>
</item>
<item>
<title>After Life (1998) by Hirokazu Kore-eda</title>
<link>https://www.siddharthagolu.com/posts/cinema/after-life/</link>
<pubDate>Sun, 01 May 2022 22:41:55 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/after-life/</guid>
<description>An interesting take on life, seen through the lens of afterlife. Highly recommended!</description>
</item>
<item>
<title>Life Between Buildings by Jan Gehl</title>
<link>https://www.siddharthagolu.com/posts/reading/life-between-buildings/</link>
<pubDate>Thu, 21 Apr 2022 09:04:49 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/life-between-buildings/</guid>
<description>A gentle introduction to the study of buildings and the way they enable societal interactions.</description>
</item>
<item>
<title>3 Iron (2004) by Kim Ki-duk</title>
<link>https://www.siddharthagolu.com/posts/cinema/3-iron/</link>
<pubDate>Sun, 14 Nov 2021 10:46:40 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/3-iron/</guid>
<description>A film where everything is conveyed through glances.</description>
</item>
<item>
<title>The Way We Eat: Why Our Food Choices Matter by Peter Singer</title>
<link>https://www.siddharthagolu.com/posts/reading/the-way-we-eat/</link>
<pubDate>Wed, 01 Sep 2021 10:43:25 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-way-we-eat/</guid>
<description>The ethical dilemma of eating. Highly recommended!</description>
</item>
<item>
<title>Shame by Salman Rushdie</title>
<link>https://www.siddharthagolu.com/posts/reading/shame-rushdie/</link>
<pubDate>Tue, 17 Aug 2021 22:55:02 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/shame-rushdie/</guid>
<description>Check it out on Goodreads
Now that I&amp;rsquo;ve moved away from reading fiction, I find that I face a lot of inertia to pick up something purely for pleasure. Maybe this is a nasty by-product of wanting to be as &amp;ldquo;productive&amp;rdquo; as possible. But the more I have drifted away from reading for pleasure, more mechanical the whole process has become for me. Partly to avoid this feeling, and partly because of my shame at seeing my bookshelf filled with dusty unread books, I picked up this one to assuage my feelings of guilt.</description>
</item>
<item>
<title>What I Talk About When I Talk About Running by Haruki Murakami</title>
<link>https://www.siddharthagolu.com/posts/reading/running-murakami/</link>
<pubDate>Sat, 14 Aug 2021 20:09:56 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/running-murakami/</guid>
<description>Check it out on Goodreads
Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity.</description>
</item>
<item>
<title>Annihilation of Caste(Annotated Edition) by Arundhati Roy</title>
<link>https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/</link>
<pubDate>Fri, 23 Jul 2021 22:56:47 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/</guid>
<description>Check it out on Goodreads
I find India really fascinating sometimes, even though I&amp;rsquo;ve lived my whole life here. What the cultural multitudes and colorful festivals hide underneath is an ugly facade which threatens to break everything that has been built over the years. What I find most fascinating is how we&amp;rsquo;ve conditioned ourselves to ignore the blatant reality and move ahead with an oblivious calm, living in shit and aspiring for the gold.</description>
</item>
<item>
<title>Photography</title>
<link>https://www.siddharthagolu.com/photography/</link>
<pubDate>Tue, 23 Mar 2021 20:18:21 +0530</pubDate>
<guid>https://www.siddharthagolu.com/photography/</guid>
<description>My fascination with the visual media brought me closer to seeing the world through a different lens. This is an ongoing effort to capture what I see and share it with the world.
You can browse the images below using left/right keys. All the images are hosted on flickr, I&amp;rsquo;d recommend navigating to my photostream if you want to see them in full size. 1
You might need to enable Javascript if you&amp;rsquo;re unable to see the images properly.</description>
</item>
<item>
<title>Parenting Beyond Belief by Dale McGowan</title>
<link>https://www.siddharthagolu.com/posts/reading/parenting/</link>
<pubDate>Thu, 18 Mar 2021 22:14:21 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/parenting/</guid>
<description>Check it out on Goodreads
I have had a very curious relationship with religion, although now that I talk to others, it was a much more normal experience than what I led myself to believe. I followed the typical path of receiving a particular religion from my parents (born a &amp;ldquo;Hindu child&amp;rdquo;), which had a supporting role in my life up until my late-teenage/early-adolescent years.
As is the norm for every child brought up in religion, I used to consider myself special believing that I had a &amp;ldquo;personal relationship&amp;rdquo; with God.</description>
</item>
<item>
<title>Winter Sleep (2014) by Nuri Bilge Ceylan</title>
<link>https://www.siddharthagolu.com/posts/cinema/winter-sleep/</link>
<pubDate>Mon, 15 Mar 2021 21:30:40 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/winter-sleep/</guid>
<description>Verdict: ★ ★ ★ ★ ★ Check it out on Letterboxd
Over the years, I have increasingly gravitated towards films where supposedly &amp;ldquo;nothing happens&amp;rdquo;. Characters talk, no attempt is made to instill a moral point into the minds of the audience, which is usually accompanied with long, patient shots of people existing in their environments. This was an excellent specimen of the same dish.
I had watched Once Upon a Time in Anatolia from the same director previously and much like films by Wes Anderson, I could immediately tell this was Ceylan&amp;rsquo;s film right from the start, although these two directors could not be any more different.</description>
</item>
<item>
<title>Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan</title>
<link>https://www.siddharthagolu.com/posts/cinema/anatolia/</link>
<pubDate>Sun, 07 Feb 2021 22:44:49 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/anatolia/</guid>
<description>Verdict: ★ ★ ★ ★ ☆ Check it out on Letterboxd
A slow, methodical display of patience and absurdity juxtaposed on the vast landscape, this film has something else going for it. When you read the synopsis or look at the posters, you expect a certain police procedural drama - the kind of which you&amp;rsquo;ve been accustomed to till date. What you get is a completely different take on the trope.</description>
</item>
<item>
<title>Riding Solo to the Top of the World (2006) by Gaurav Jani</title>
<link>https://www.siddharthagolu.com/posts/cinema/riding-solo/</link>
<pubDate>Sun, 03 Jan 2021 22:53:01 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/riding-solo/</guid>
<description>Verdict: ★ ★ ★ ★ ★ Check it out on Letterboxd
Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-speed-ninjas-Harley-fans, and it usually gets a bad rap all across the world. Gaurav Jani is none of these things. His passion and humility and curious nature reminded me why I loved biking in the first place. This is a must-watch for anyone fascinated with two wheels and the places they enable you to visit.</description>
</item>
<item>
<title>I Do What I Do by Raghuram Rajan</title>
<link>https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/</link>
<pubDate>Sat, 19 Dec 2020 09:24:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/</guid>
<description>Check it out on Goodreads
I had picked up this one thinking it to be an autobiography, and with an expectation that it&amp;rsquo;ll cover Rajan&amp;rsquo;s tussles with the government in more details. I was pleasantly surprised to find instead a good collection of technical essays covering the workings of RBI, and economics in general. If you&amp;rsquo;re looking for a good explanatory work in the field of Economics (and especially those concerning India and its policies), you&amp;rsquo;ll enjoy this.</description>
</item>
<item>
<title>Waking Life (2001) by Richard Linklater</title>
<link>https://www.siddharthagolu.com/posts/cinema/waking-life/</link>
<pubDate>Fri, 27 Nov 2020 22:57:50 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/waking-life/</guid>
<description>Verdict: ★ ★ ★ ☆ ☆ Check it out on Letterboxd
There are films which you wish you had watched earlier in life, and there are others which don&amp;rsquo;t make sense until you have had your fair share of world experiences. Waking Life falls in the former category.
The college sophomore me would have been really excited about discussing vague notions of self and freedom and free will and morality and dreams - and don&amp;rsquo;t get me wrong, mid-twenties me is equally as excited about these things as my former self, if not more so - but the problem lies in the superficiality of it all.</description>
</item>
<item>
<title>Azadi by Arundhati Roy</title>
<link>https://www.siddharthagolu.com/posts/reading/azadi/</link>
<pubDate>Wed, 30 Sep 2020 22:22:13 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/azadi/</guid>
<description>A series of essays on the bleak reality in India. Highly recommended.</description>
</item>
<item>
<title>Stoner by John Williams</title>
<link>https://www.siddharthagolu.com/posts/reading/stoner/</link>
<pubDate>Sun, 28 Jun 2020 19:45:36 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/stoner/</guid>
<description>Check it out on Goodreads
Reading fiction has always been a double-edged sword for me. Some of the most intimate moments I&amp;rsquo;ve spent alone is while reading fictional stories, while at the same time, feeling a pang of disappointment for myself because I wasn&amp;rsquo;t doing anything &amp;ldquo;productive.&amp;rdquo; Is this mere entertainment? Am I just escaping my real-life responsibilities and reading stories of make-believe? While I still haven&amp;rsquo;t found sincere answers to these questions, I&amp;rsquo;ve grown more confident of what I enjoy and what I don&amp;rsquo;t, which has consequently helped me find peace with this conflict.</description>
</item>
<item>
<title>A Beautiful Woman</title>
<link>https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/</link>
<pubDate>Tue, 09 Jun 2020 17:26:51 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/</guid>
<description>I don&amp;rsquo;t know why, but I liked the eyes-only version more. Linked below is the work-in-progress sketch:</description>
</item>
<item>
<title>Martin Freeman</title>
<link>https://www.siddharthagolu.com/posts/drawings/martin-freeman/</link>
<pubDate>Tue, 09 Jun 2020 17:20:16 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/martin-freeman/</guid>
<description>I used to be obsessed with Sherlock (the HBO show) during the time it aired, and part of my fascination was with Martin Freeman here, who so brilliantly played the role of Watson.</description>
</item>
<item>
<title>Einstein</title>
<link>https://www.siddharthagolu.com/posts/drawings/einstein/</link>
<pubDate>Tue, 09 Jun 2020 17:14:48 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/einstein/</guid>
<description>I have a particular affinity towards this sketch as I was very apprehensive about attempting Einstein, his face had much more complexity than what I usually dealt with, but it turned out good enough in the end.</description>
</item>
<item>
<title>Mother Teresa</title>
<link>https://www.siddharthagolu.com/posts/drawings/teresa/</link>
<pubDate>Tue, 09 Jun 2020 17:09:43 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/teresa/</guid>
<description>Completely botched this drawing, but it reminds me of the drawing streak I used to have back when I was in my hometown during college vacations.</description>
</item>
<item>
<title>Charlie Chaplin (um... not quite)</title>
<link>https://www.siddharthagolu.com/posts/drawings/chaplin/</link>
<pubDate>Tue, 09 Jun 2020 17:01:36 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/chaplin/</guid>
<description>I was either on acid or I had watched a sad movie before attempting this piece. A strange juxtaposition of Chaplin and Hitler.</description>
</item>
<item>
<title>Gandhi</title>
<link>https://www.siddharthagolu.com/posts/drawings/gandhi/</link>
<pubDate>Tue, 09 Jun 2020 16:51:23 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/gandhi/</guid>
<description>My first attempt at drawing after dabbling in caricature pieces in my childhood :)</description>
</item>
<item>
<title>Oslo, August 31st (2011) by Joachim Trier</title>
<link>https://www.siddharthagolu.com/posts/cinema/oslo-august/</link>
<pubDate>Thu, 04 Jun 2020 14:39:00 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/oslo-august/</guid>
<description>Verdict: ★ ★ ★ ★ ☆ Check out this review on Letterboxd
Anhedonia. The Wikipedia entry for this word says:
a diverse array of deficits in hedonic function, including reduced motivation or ability to experience pleasure.
At one point or another, we have all experienced some version of this phenomenon - may be characterized by an oversaturation of love, or caused by a prolonged mediocrity in life, or as in the case of our protagonist here, the complete loss of will and motivation to feel anything.</description>
</item>
<item>
<title>Bad Blood by John Carreyrou</title>
<link>https://www.siddharthagolu.com/posts/reading/bad-blood/</link>
<pubDate>Fri, 01 May 2020 23:39:18 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/bad-blood/</guid>
<description>Check it out on Goodreads
How to fool the world and become a Billionaire I remember hearing about Elizabeth Holmes when I was in my late teens, at that impressionable age when you get hyper-inspired by reading about icons that are going to change the world. There was a profile of her in Wired, with an eye-catching image of her wearing a turtleneck black sweater holding what looked like a test-tube with a tiny amount of blood with a science-y background.</description>
</item>
<item>
<title>Fear</title>
<link>https://www.siddharthagolu.com/posts/scared-in-lockdown/</link>
<pubDate>Sat, 25 Apr 2020 23:45:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/scared-in-lockdown/</guid>
<description>Check it out on Instagram
I&amp;rsquo;m scared.
@ -302,84 +246,68 @@ feasting on my thoughts,
mutating inside my head as if a colony of ants was given
an open invitation to a room full of sugary syrup.</description>
</item>
<item>
<title>Waking Up by Sam Harris</title>
<link>https://www.siddharthagolu.com/posts/reading/waking-up/</link>
<pubDate>Wed, 15 Apr 2020 23:31:08 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/waking-up/</guid>
<description>Check it out on Goodreads
A disappointing jumble of thoughts Disappointed.
I am an atheist interested in the power of mindfulness and the whole world of so-called spirituality, so naturally, I am the ideal audience that Sam Harris is looking for. But it disappointed in almost every domain that I had expectations in. Using deep-sounding difficult words and wrapping them in an almost mythical aura of &amp;ldquo;Consciousness&amp;rdquo;, this one was a huge letdown.</description>
</item>
<item>
<title>Glimpses of World History by Jawaharlal Nehru</title>
<link>https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/</link>
<pubDate>Thu, 12 Mar 2020 23:23:19 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/</guid>
<description>Check it out on Goodreads
World history in a nutshell More than 1100 pages, this behemoth of a book still fails to capture the whole essence of world history - and rightly so. How can you combine over 2000 years of human history and still do justice to every element? But the unique manner in which this book - or more appropriately, collection of letters - has been written, it shines brightly amongst the plethora of history books you can find on this vast subject of world history.</description>
</item>
<item>
<title>The Darjeeling Limited (2007) by Wes Anderson</title>
<link>https://www.siddharthagolu.com/posts/cinema/darjeeling/</link>
<pubDate>Wed, 04 Mar 2020 23:01:15 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/darjeeling/</guid>
<description>Wes Anderson and his colorful quirks</description>
</item>
<item>
<title>Reasons to Stay Alive by Matt Haig</title>
<link>https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/</link>
<pubDate>Tue, 28 Jan 2020 22:28:18 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/</guid>
<description>Check it out on Goodreads
Reasons you should read this book:
If you&amp;rsquo;ve ever had a panic attack. If you&amp;rsquo;ve ever counted the number of times the ceiling fan rotates, just so you could avoid dealing with the endless voices in your head. If you&amp;rsquo;ve ever felt ashamed to admit that you might be suffering from the D-word. If reading about personal stories of how people overcame their mental illnesses soothes you.</description>
</item>
<item>
<title>How to Listen to and Understand Great Music by Robert Greenberg</title>
<link>https://www.siddharthagolu.com/posts/reading/great-music/</link>
<pubDate>Thu, 16 Jan 2020 22:05:06 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/great-music/</guid>
<description>Check it out on Goodreads
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it.</description>
</item>
<item>
<title>Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky</title>
<link>https://www.siddharthagolu.com/posts/reading/behave-review/</link>
<pubDate>Thu, 12 Sep 2019 20:12:10 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/behave-review/</guid>
<description>Check it out on Goodreads
There are few books which leave you in a mesmerizing state after having read them. You ponder about it for days to come, want to scream your head off about it to anyone who&amp;rsquo;d listen, and then dwell in this fear of picking up another book because how can something else ever come close to being this perfect! I have felt this way before - first when I&amp;rsquo;d finished The Complete Sherlock Holmes, later when I was left in a daze for multiple days after finishing the notorious and brilliant House of Leaves, and much more recently when I was unable to sleep after reading Why We Sleep by Matthew Walker.</description>
</item>
<item>
<title>Range by David Epstein</title>
<link>https://www.siddharthagolu.com/posts/reading/range-a-review/</link>
<pubDate>Thu, 05 Sep 2019 00:16:14 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/range-a-review/</guid>
<description>Check it out on Goodreads
Started with a tightly-knit structure, but faltered at the end. The last few chapters were a slog to get through - mostly because of numerous &amp;ldquo;business-class&amp;rdquo; style case studies.
Main takeaway? Other than the central idea around which the book revolves (and succinctly mentioned as the book subtitle too), the idea of interleaving is what struck me the most. I had already read about this particular method in Michael Nielsen&amp;rsquo;s brilliant post on Anki (&amp;ldquo;Augmenting Long-term Memory&amp;rdquo;) and it was interesting to read about it formally in the book.</description>
</item>
<item>
<title>Deference vs. Indifference</title>
<link>https://www.siddharthagolu.com/posts/deference-vs-indifference/</link>
<pubDate>Fri, 15 Mar 2019 22:27:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/deference-vs-indifference/</guid>
<description>(See this picture on Flickr)
Deference vs. Indifference There used to be a time
@ -392,39 +320,30 @@ when I used to love the aroma
of the stick when it burned,
lighting up my day with the secret enchantments,</description>
</item>
<item>
<title>The Course of Love by Alain de Botton</title>
<link>https://www.siddharthagolu.com/posts/reading/the-course-of-love/</link>
<pubDate>Thu, 14 Feb 2019 20:21:45 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-course-of-love/</guid>
<description>Check it out on Goodreads
The School of Life - a massively popular YouTube channel - used to be this source of solace in some turbulent times of my college life. It is not something that you&amp;rsquo;d think would be cheerful and uplifting - a quick glance at some of the most popular videos of the channel would include titles such as &amp;ldquo;Why we go cold on our partners&amp;rdquo;, &amp;ldquo;Why you will marry the wrong person&amp;rdquo; etc.</description>
</item>
<item>
<title>The Stranger and The Plague by Albert Camus</title>
<link>https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/</link>
<pubDate>Mon, 21 Jan 2019 14:39:14 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/</guid>
<description>On my journey to learn more about philosophy - the first step into the realms of existentialism</description>
</item>
<item>
<title>About Me</title>
<link>https://www.siddharthagolu.com/about/</link>
<pubDate>Wed, 09 Jan 2019 11:16:16 +0530</pubDate>
<guid>https://www.siddharthagolu.com/about/</guid>
<description>(See this picture on flickr)
&amp;ldquo;Tell me about yourself.&amp;rdquo;
I have always dreaded this question. It doesn&amp;rsquo;t matter which setting I&amp;rsquo;m in - a social gathering, an interview, or while traveling - I invariably become visibly flabbergasted when people introduce themselves to me which is followed by the silent expectation that I&amp;rsquo;d return the favor and say something about myself.
So to solve this little problem of mine, I came up with this unoriginal idea.</description>
</item>
</channel>
</rss>

View File

@ -2,7 +2,7 @@
<html lang="en" dir="auto">
<head>
<meta name="generator" content="Hugo 0.121.1"><meta charset="utf-8">
<meta name="generator" content="Hugo 0.121.2"><meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="index, follow">
@ -11,8 +11,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +38,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -161,20 +160,20 @@
<article class="post-entry">
<header class="entry-header">
<h2>Annihilation of Caste(Annotated Edition) by Arundhati Roy
<h2 class="entry-hint-parent">Annihilation of Caste(Annotated Edition) by Arundhati Roy
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I find India really fascinating sometimes, even though Ive lived my whole life here. What the cultural multitudes and colorful festivals hide underneath is an ugly facade which threatens to break everything that has been built over the years. What I find most fascinating is how weve conditioned ourselves to ignore the blatant reality and move ahead with an oblivious calm, living in shit and aspiring for the gold....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-07-23 22:56:47 &#43;0530 IST&#39;&gt;🗓 July 23, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-07-23 22:56:47 +0530 IST'>🗓 July 23, 2021</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Annihilation of Caste(Annotated Edition) by Arundhati Roy" href="https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Parenting Beyond Belief by Dale McGowan
<h2 class="entry-hint-parent">Parenting Beyond Belief by Dale McGowan
</h2>
</header>
<div class="entry-content">
@ -182,13 +181,13 @@ I find India really fascinating sometimes, even though Ive lived my whole lif
I have had a very curious relationship with religion, although now that I talk to others, it was a much more normal experience than what I led myself to believe. I followed the typical path of receiving a particular religion from my parents (born a “Hindu child”), which had a supporting role in my life up until my late-teenage/early-adolescent years.
As is the norm for every child brought up in religion, I used to consider myself special believing that I had a “personal relationship” with God....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-03-18 22:14:21 &#43;0530 IST&#39;&gt;🗓 March 18, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/parenting&#34;&gt; parenting&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-03-18 22:14:21 +0530 IST'>🗓 March 18, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/parenting"> parenting</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Parenting Beyond Belief by Dale McGowan" href="https://www.siddharthagolu.com/posts/reading/parenting/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Winter Sleep (2014) by Nuri Bilge Ceylan
<h2 class="entry-hint-parent">Winter Sleep (2014) by Nuri Bilge Ceylan
</h2>
</header>
<div class="entry-content">
@ -196,52 +195,52 @@ As is the norm for every child brought up in religion, I used to consider myself
Over the years, I have increasingly gravitated towards films where supposedly “nothing happens”. Characters talk, no attempt is made to instill a moral point into the minds of the audience, which is usually accompanied with long, patient shots of people existing in their environments. This was an excellent specimen of the same dish.
I had watched Once Upon a Time in Anatolia from the same director previously and much like films by Wes Anderson, I could immediately tell this was Ceylans film right from the start, although these two directors could not be any more different....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-03-15 21:30:40 &#43;0530 IST&#39;&gt;🗓 March 15, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/turkey&#34;&gt; turkey&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-03-15 21:30:40 +0530 IST'>🗓 March 15, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/turkey"> turkey</a></footer>
<a class="entry-link" aria-label="post link to Winter Sleep (2014) by Nuri Bilge Ceylan" href="https://www.siddharthagolu.com/posts/cinema/winter-sleep/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan
<h2 class="entry-hint-parent">Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan
</h2>
</header>
<div class="entry-content">
<p>Verdict: ★ ★ ★ ★ ☆ Check it out on Letterboxd
A slow, methodical display of patience and absurdity juxtaposed on the vast landscape, this film has something else going for it. When you read the synopsis or look at the posters, you expect a certain police procedural drama - the kind of which youve been accustomed to till date. What you get is a completely different take on the trope....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-02-07 22:44:49 &#43;0530 IST&#39;&gt;🗓 February 7, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/turkey&#34;&gt; turkey&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-02-07 22:44:49 +0530 IST'>🗓 February 7, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/turkey"> turkey</a></footer>
<a class="entry-link" aria-label="post link to Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan" href="https://www.siddharthagolu.com/posts/cinema/anatolia/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Riding Solo to the Top of the World (2006) by Gaurav Jani
<h2 class="entry-hint-parent">Riding Solo to the Top of the World (2006) by Gaurav Jani
</h2>
</header>
<div class="entry-content">
<p>Verdict: ★ ★ ★ ★ ★ Check it out on Letterboxd
Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-speed-ninjas-Harley-fans, and it usually gets a bad rap all across the world. Gaurav Jani is none of these things. His passion and humility and curious nature reminded me why I loved biking in the first place. This is a must-watch for anyone fascinated with two wheels and the places they enable you to visit.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-01-03 22:53:01 &#43;0530 IST&#39;&gt;🗓 January 3, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/motorcycling&#34;&gt; motorcycling&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-01-03 22:53:01 +0530 IST'>🗓 January 3, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/motorcycling"> motorcycling</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a></footer>
<a class="entry-link" aria-label="post link to Riding Solo to the Top of the World (2006) by Gaurav Jani" href="https://www.siddharthagolu.com/posts/cinema/riding-solo/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>I Do What I Do by Raghuram Rajan
<h2 class="entry-hint-parent">I Do What I Do by Raghuram Rajan
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I had picked up this one thinking it to be an autobiography, and with an expectation that itll cover Rajans tussles with the government in more details. I was pleasantly surprised to find instead a good collection of technical essays covering the workings of RBI, and economics in general. If youre looking for a good explanatory work in the field of Economics (and especially those concerning India and its policies), youll enjoy this....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-12-19 09:24:30 &#43;0530 IST&#39;&gt;🗓 December 19, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/economics&#34;&gt; economics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-12-19 09:24:30 +0530 IST'>🗓 December 19, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/economics"> economics</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a></footer>
<a class="entry-link" aria-label="post link to I Do What I Do by Raghuram Rajan" href="https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Waking Life (2001) by Richard Linklater
<h2 class="entry-hint-parent">Waking Life (2001) by Richard Linklater
</h2>
</header>
<div class="entry-content">
@ -249,44 +248,44 @@ I had picked up this one thinking it to be an autobiography, and with an expecta
There are films which you wish you had watched earlier in life, and there are others which dont make sense until you have had your fair share of world experiences. Waking Life falls in the former category.
The college sophomore me would have been really excited about discussing vague notions of self and freedom and free will and morality and dreams - and dont get me wrong, mid-twenties me is equally as excited about these things as my former self, if not more so - but the problem lies in the superficiality of it all....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-11-27 22:57:50 &#43;0530 IST&#39;&gt;🗓 November 27, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animation&#34;&gt; animation&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-11-27 22:57:50 +0530 IST'>🗓 November 27, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/animation"> animation</a></footer>
<a class="entry-link" aria-label="post link to Waking Life (2001) by Richard Linklater" href="https://www.siddharthagolu.com/posts/cinema/waking-life/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Azadi by Arundhati Roy
<h2 class="entry-hint-parent">Azadi by Arundhati Roy
</h2>
</header>
<div class="entry-content">
<p>A series of essays on the bleak reality in India. Highly recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-09-30 22:22:13 &#43;0530 IST&#39;&gt;🗓 September 30, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-09-30 22:22:13 +0530 IST'>🗓 September 30, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Azadi by Arundhati Roy" href="https://www.siddharthagolu.com/posts/reading/azadi/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Stoner by John Williams
<h2 class="entry-hint-parent">Stoner by John Williams
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
Reading fiction has always been a double-edged sword for me. Some of the most intimate moments Ive spent alone is while reading fictional stories, while at the same time, feeling a pang of disappointment for myself because I wasnt doing anything “productive.” Is this mere entertainment? Am I just escaping my real-life responsibilities and reading stories of make-believe? While I still havent found sincere answers to these questions, Ive grown more confident of what I enjoy and what I dont, which has consequently helped me find peace with this conflict....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-28 19:45:36 &#43;0530 IST&#39;&gt;🗓 June 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-28 19:45:36 +0530 IST'>🗓 June 28, 2020</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a></footer>
<a class="entry-link" aria-label="post link to Stoner by John Williams" href="https://www.siddharthagolu.com/posts/reading/stoner/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>A Beautiful Woman
<h2 class="entry-hint-parent">A Beautiful Woman
</h2>
</header>
<div class="entry-content">
<p>I dont know why, but I liked the eyes-only version more. Linked below is the work-in-progress sketch:</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:26:51 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:26:51 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to A Beautiful Woman" href="https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/"></a>
</article>
<footer class="page-footer">
@ -301,7 +300,7 @@ Reading fiction has always been a double-edged sword for me. Some of the most in
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -2,7 +2,7 @@
<html lang="en" dir="auto">
<head>
<meta name="generator" content="Hugo 0.121.1"><meta charset="utf-8">
<meta name="generator" content="Hugo 0.121.2"><meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="index, follow">
@ -11,8 +11,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +38,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -161,67 +160,67 @@
<article class="post-entry">
<header class="entry-header">
<h2>Martin Freeman
<h2 class="entry-hint-parent">Martin Freeman
</h2>
</header>
<div class="entry-content">
<p>I used to be obsessed with Sherlock (the HBO show) during the time it aired, and part of my fascination was with Martin Freeman here, who so brilliantly played the role of Watson.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:20:16 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:20:16 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Martin Freeman" href="https://www.siddharthagolu.com/posts/drawings/martin-freeman/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Einstein
<h2 class="entry-hint-parent">Einstein
</h2>
</header>
<div class="entry-content">
<p>I have a particular affinity towards this sketch as I was very apprehensive about attempting Einstein, his face had much more complexity than what I usually dealt with, but it turned out good enough in the end.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:14:48 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:14:48 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Einstein" href="https://www.siddharthagolu.com/posts/drawings/einstein/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Mother Teresa
<h2 class="entry-hint-parent">Mother Teresa
</h2>
</header>
<div class="entry-content">
<p>Completely botched this drawing, but it reminds me of the drawing streak I used to have back when I was in my hometown during college vacations.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:09:43 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:09:43 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Mother Teresa" href="https://www.siddharthagolu.com/posts/drawings/teresa/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Charlie Chaplin (um... not quite)
<h2 class="entry-hint-parent">Charlie Chaplin (um... not quite)
</h2>
</header>
<div class="entry-content">
<p>I was either on acid or I had watched a sad movie before attempting this piece. A strange juxtaposition of Chaplin and Hitler.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:01:36 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:01:36 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Charlie Chaplin (um... not quite)" href="https://www.siddharthagolu.com/posts/drawings/chaplin/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Gandhi
<h2 class="entry-hint-parent">Gandhi
</h2>
</header>
<div class="entry-content">
<p>My first attempt at drawing after dabbling in caricature pieces in my childhood :)</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 16:51:23 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 16:51:23 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Gandhi" href="https://www.siddharthagolu.com/posts/drawings/gandhi/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Oslo, August 31st (2011) by Joachim Trier
<h2 class="entry-hint-parent">Oslo, August 31st (2011) by Joachim Trier
</h2>
</header>
<div class="entry-content">
@ -230,26 +229,26 @@ Anhedonia. The Wikipedia entry for this word says:
a diverse array of deficits in hedonic function, including reduced motivation or ability to experience pleasure.
At one point or another, we have all experienced some version of this phenomenon - may be characterized by an oversaturation of love, or caused by a prolonged mediocrity in life, or as in the case of our protagonist here, the complete loss of will and motivation to feel anything....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-04 14:39:00 &#43;0530 IST&#39;&gt;🗓 June 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/norwegian&#34;&gt; norwegian&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-04 14:39:00 +0530 IST'>🗓 June 4, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/norwegian"> norwegian</a></footer>
<a class="entry-link" aria-label="post link to Oslo, August 31st (2011) by Joachim Trier" href="https://www.siddharthagolu.com/posts/cinema/oslo-august/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Bad Blood by John Carreyrou
<h2 class="entry-hint-parent">Bad Blood by John Carreyrou
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
How to fool the world and become a Billionaire I remember hearing about Elizabeth Holmes when I was in my late teens, at that impressionable age when you get hyper-inspired by reading about icons that are going to change the world. There was a profile of her in Wired, with an eye-catching image of her wearing a turtleneck black sweater holding what looked like a test-tube with a tiny amount of blood with a science-y background....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-05-01 23:39:18 &#43;0530 IST&#39;&gt;🗓 May 1, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/journalism&#34;&gt; journalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-05-01 23:39:18 +0530 IST'>🗓 May 1, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/journalism"> journalism</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a></footer>
<a class="entry-link" aria-label="post link to Bad Blood by John Carreyrou" href="https://www.siddharthagolu.com/posts/reading/bad-blood/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Fear
<h2 class="entry-hint-parent">Fear
</h2>
</header>
<div class="entry-content">
@ -265,13 +264,13 @@ feasting on my thoughts,
mutating inside my head as if a colony of ants was given
an open invitation to a room full of sugary syrup....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-04-25 23:45:30 &#43;0530 IST&#39;&gt;🗓 April 25, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/poetry&#34;&gt; poetry&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/writing&#34;&gt; writing&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-04-25 23:45:30 +0530 IST'>🗓 April 25, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/poetry"> poetry</a>&nbsp;·&nbsp;<a href="/tags/writing"> writing</a></footer>
<a class="entry-link" aria-label="post link to Fear" href="https://www.siddharthagolu.com/posts/scared-in-lockdown/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Waking Up by Sam Harris
<h2 class="entry-hint-parent">Waking Up by Sam Harris
</h2>
</header>
<div class="entry-content">
@ -279,20 +278,20 @@ an open invitation to a room full of sugary syrup....</p>
A disappointing jumble of thoughts Disappointed.
I am an atheist interested in the power of mindfulness and the whole world of so-called spirituality, so naturally, I am the ideal audience that Sam Harris is looking for. But it disappointed in almost every domain that I had expectations in. Using deep-sounding difficult words and wrapping them in an almost mythical aura of “Consciousness”, this one was a huge letdown....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-04-15 23:31:08 &#43;0530 IST&#39;&gt;🗓 April 15, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/meditation&#34;&gt; meditation&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-04-15 23:31:08 +0530 IST'>🗓 April 15, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/meditation"> meditation</a></footer>
<a class="entry-link" aria-label="post link to Waking Up by Sam Harris" href="https://www.siddharthagolu.com/posts/reading/waking-up/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Glimpses of World History by Jawaharlal Nehru
<h2 class="entry-hint-parent">Glimpses of World History by Jawaharlal Nehru
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
World history in a nutshell More than 1100 pages, this behemoth of a book still fails to capture the whole essence of world history - and rightly so. How can you combine over 2000 years of human history and still do justice to every element? But the unique manner in which this book - or more appropriately, collection of letters - has been written, it shines brightly amongst the plethora of history books you can find on this vast subject of world history....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-03-12 23:23:19 &#43;0530 IST&#39;&gt;🗓 March 12, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/letters&#34;&gt; letters&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-03-12 23:23:19 +0530 IST'>🗓 March 12, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/letters"> letters</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Glimpses of World History by Jawaharlal Nehru" href="https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/"></a>
</article>
<footer class="page-footer">
@ -307,7 +306,7 @@ World history in a nutshell More than 1100 pages, this behemoth of a book still
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -2,7 +2,7 @@
<html lang="en" dir="auto">
<head>
<meta name="generator" content="Hugo 0.121.1"><meta charset="utf-8">
<meta name="generator" content="Hugo 0.121.2"><meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="index, follow">
@ -11,8 +11,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +38,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -161,19 +160,19 @@
<article class="post-entry">
<header class="entry-header">
<h2>The Darjeeling Limited (2007) by Wes Anderson
<h2 class="entry-hint-parent">The Darjeeling Limited (2007) by Wes Anderson
</h2>
</header>
<div class="entry-content">
<p>Wes Anderson and his colorful quirks</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-03-04 23:01:15 &#43;0530 IST&#39;&gt;🗓 March 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/colorful-quirks&#34;&gt; colorful-quirks&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-03-04 23:01:15 +0530 IST'>🗓 March 4, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/colorful-quirks"> colorful-quirks</a></footer>
<a class="entry-link" aria-label="post link to The Darjeeling Limited (2007) by Wes Anderson" href="https://www.siddharthagolu.com/posts/cinema/darjeeling/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Reasons to Stay Alive by Matt Haig
<h2 class="entry-hint-parent">Reasons to Stay Alive by Matt Haig
</h2>
</header>
<div class="entry-content">
@ -181,39 +180,39 @@
Reasons you should read this book:
If youve ever had a panic attack. If youve ever counted the number of times the ceiling fan rotates, just so you could avoid dealing with the endless voices in your head. If youve ever felt ashamed to admit that you might be suffering from the D-word. If reading about personal stories of how people overcame their mental illnesses soothes you....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-01-28 22:28:18 &#43;0530 IST&#39;&gt;🗓 January 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/depression&#34;&gt; depression&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-01-28 22:28:18 +0530 IST'>🗓 January 28, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/depression"> depression</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a></footer>
<a class="entry-link" aria-label="post link to Reasons to Stay Alive by Matt Haig" href="https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>How to Listen to and Understand Great Music by Robert Greenberg
<h2 class="entry-hint-parent">How to Listen to and Understand Great Music by Robert Greenberg
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-01-16 22:05:06 &#43;0530 IST&#39;&gt;🗓 January 16, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/classical-music&#34;&gt; classical-music&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-01-16 22:05:06 +0530 IST'>🗓 January 16, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/classical-music"> classical-music</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a></footer>
<a class="entry-link" aria-label="post link to How to Listen to and Understand Great Music by Robert Greenberg" href="https://www.siddharthagolu.com/posts/reading/great-music/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky
<h2 class="entry-hint-parent">Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
There are few books which leave you in a mesmerizing state after having read them. You ponder about it for days to come, want to scream your head off about it to anyone whod listen, and then dwell in this fear of picking up another book because how can something else ever come close to being this perfect! I have felt this way before - first when Id finished The Complete Sherlock Holmes, later when I was left in a daze for multiple days after finishing the notorious and brilliant House of Leaves, and much more recently when I was unable to sleep after reading Why We Sleep by Matthew Walker....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-09-12 20:12:10 &#43;0530 IST&#39;&gt;🗓 September 12, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;6 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-09-12 20:12:10 +0530 IST'>🗓 September 12, 2019</span>&nbsp;·&nbsp;6 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a></footer>
<a class="entry-link" aria-label="post link to Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky" href="https://www.siddharthagolu.com/posts/reading/behave-review/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Range by David Epstein
<h2 class="entry-hint-parent">Range by David Epstein
</h2>
</header>
<div class="entry-content">
@ -221,13 +220,13 @@ There are few books which leave you in a mesmerizing state after having read the
Started with a tightly-knit structure, but faltered at the end. The last few chapters were a slog to get through - mostly because of numerous “business-class” style case studies.
Main takeaway? Other than the central idea around which the book revolves (and succinctly mentioned as the book subtitle too), the idea of interleaving is what struck me the most. I had already read about this particular method in Michael Nielsens brilliant post on Anki (“Augmenting Long-term Memory”) and it was interesting to read about it formally in the book....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-09-05 00:16:14 &#43;0530 IST&#39;&gt;🗓 September 5, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-09-05 00:16:14 +0530 IST'>🗓 September 5, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a></footer>
<a class="entry-link" aria-label="post link to Range by David Epstein" href="https://www.siddharthagolu.com/posts/reading/range-a-review/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Deference vs. Indifference
<h2 class="entry-hint-parent">Deference vs. Indifference
</h2>
</header>
<div class="entry-content">
@ -242,32 +241,32 @@ when I used to love the aroma
of the stick when it burned,
lighting up my day with the secret enchantments,...</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-03-15 22:27:30 &#43;0530 IST&#39;&gt;🗓 March 15, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/poetry&#34;&gt; poetry&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/writing&#34;&gt; writing&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-03-15 22:27:30 +0530 IST'>🗓 March 15, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/poetry"> poetry</a>&nbsp;·&nbsp;<a href="/tags/writing"> writing</a></footer>
<a class="entry-link" aria-label="post link to Deference vs. Indifference" href="https://www.siddharthagolu.com/posts/deference-vs-indifference/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>The Course of Love by Alain de Botton
<h2 class="entry-hint-parent">The Course of Love by Alain de Botton
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
The School of Life - a massively popular YouTube channel - used to be this source of solace in some turbulent times of my college life. It is not something that youd think would be cheerful and uplifting - a quick glance at some of the most popular videos of the channel would include titles such as “Why we go cold on our partners”, “Why you will marry the wrong person” etc....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-02-14 20:21:45 &#43;0530 IST&#39;&gt;🗓 February 14, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/relationship&#34;&gt; relationship&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-02-14 20:21:45 +0530 IST'>🗓 February 14, 2019</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/relationship"> relationship</a></footer>
<a class="entry-link" aria-label="post link to The Course of Love by Alain de Botton" href="https://www.siddharthagolu.com/posts/reading/the-course-of-love/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>The Stranger and The Plague by Albert Camus
<h2 class="entry-hint-parent">The Stranger and The Plague by Albert Camus
</h2>
</header>
<div class="entry-content">
<p>Preamble Philosophy has always been one of those baffling things that entice you at first by its simplicity, but as you get sucked into it more and more, you find yourself searching for the end of this labyrinthine landscape. I had my first exposure to anything related to philosophy in my second year of college when I stumbled upon The Fountainhead by Ayn Rand. At the time, it was one of the fascinating books I had ever read....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-01-21 14:39:14 &#43;0530 IST&#39;&gt;🗓 January 21, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;7 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/existentialism&#34;&gt; existentialism&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-01-21 14:39:14 +0530 IST'>🗓 January 21, 2019</span>&nbsp;·&nbsp;7 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/existentialism"> existentialism</a></footer>
<a class="entry-link" aria-label="post link to The Stranger and The Plague by Albert Camus" href="https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/"></a>
</article>
<footer class="page-footer">
@ -280,7 +279,7 @@ The School of Life - a massively popular YouTube channel - used to be this sourc
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -12,10 +12,7 @@ You can browse the images below using left/right keys. All the images are hosted
You might need to enable Javascript if you&rsquo;re unable to see the images properly.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/photography/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -40,7 +37,7 @@ You might need to enable Javascript if you&rsquo;re unable to see the images pro
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,10 +201,10 @@ You might need to enable Javascript if you&rsquo;re unable to see the images pro
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Photography
</h1>
<div class="post-meta">&lt;span title=&#39;2021-03-23 20:18:21 &#43;0530 IST&#39;&gt;🗓 March 23, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Siddhartha Golu
<div class="post-meta"><span title='2021-03-23 20:18:21 +0530 IST'>🗓 March 23, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Siddhartha Golu
</div>
</header>
@ -324,7 +321,7 @@ You might need to enable Javascript if you&rsquo;re unable to see the images pro
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="A film where everything is conveyed through glances.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/cinema/3-iron/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,16 +201,13 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
3 Iron (2004) by Kim Ki-duk
</h1>
<div class="post-meta">&lt;span title=&#39;2021-11-14 10:46:40 &#43;0530 IST&#39;&gt;🗓 November 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/minimalism&#34;&gt; minimalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;
<div class="post-meta"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/minimalism"> minimalism</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/3-iron.webp" alt="">
</figure>
<div class="post-content"><p>Verdict: <!-- raw HTML omitted --> ★ ★ ★ ★ ★ <!-- raw HTML omitted --></p>
<p><a href="https://letterboxd.com/carte_blanche/film/3-iron/">Check it out on Letterboxd</a></p>
<hr>
@ -336,7 +330,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="An interesting take on life, seen through the lens of afterlife. Highly recommended!">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/cinema/after-life/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,16 +201,13 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
After Life (1998) by Hirokazu Kore-eda
</h1>
<div class="post-meta">&lt;span title=&#39;2022-05-01 22:41:55 &#43;0530 IST&#39;&gt;🗓 May 1, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;
<div class="post-meta"><span title='2022-05-01 22:41:55 +0530 IST'>🗓 May 1, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/after-life.webp" alt="">
</figure>
<div class="post-content"><p>Verdict: <!-- raw HTML omitted --> ★ ★ ★ ★ ☆ <!-- raw HTML omitted --></p>
<p><a href="https://letterboxd.com/carte_blanche/film/after-life/">Check it out on Letterboxd</a></p>
<hr>
@ -341,7 +335,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
A slow, methodical display of patience and absurdity juxtaposed on the vast landscape, this film has something else going for it. When you read the synopsis or look at the posters, you expect a certain police procedural drama - the kind of which you&rsquo;ve been accustomed to till date. What you get is a completely different take on the trope.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/cinema/anatolia/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ A slow, methodical display of patience and absurdity juxtaposed on the vast land
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,16 +204,13 @@ A slow, methodical display of patience and absurdity juxtaposed on the vast land
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan
</h1>
<div class="post-meta">&lt;span title=&#39;2021-02-07 22:44:49 &#43;0530 IST&#39;&gt;🗓 February 7, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/turkey&#34;&gt; turkey&lt;/a&gt;
<div class="post-meta"><span title='2021-02-07 22:44:49 +0530 IST'>🗓 February 7, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/turkey"> turkey</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/anatolia.jpg" alt="">
</figure>
<div class="post-content"><p>Verdict: <!-- raw HTML omitted --> ★ ★ ★ ★ ☆ <!-- raw HTML omitted --></p>
<p><a href="https://letterboxd.com/carte_blanche/film/once-upon-a-time-in-anatolia/">Check it out on Letterboxd</a></p>
<hr>
@ -334,7 +328,7 @@ A slow, methodical display of patience and absurdity juxtaposed on the vast land
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="Wes Anderson and his colorful quirks">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/cinema/darjeeling/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,16 +201,13 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
The Darjeeling Limited (2007) by Wes Anderson
</h1>
<div class="post-meta">&lt;span title=&#39;2020-03-04 23:01:15 &#43;0530 IST&#39;&gt;🗓 March 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/colorful-quirks&#34;&gt; colorful-quirks&lt;/a&gt;
<div class="post-meta"><span title='2020-03-04 23:01:15 +0530 IST'>🗓 March 4, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/colorful-quirks"> colorful-quirks</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/darjeeling.jpg" alt="">
</figure>
<div class="post-content"><p>Verdict: <!-- raw HTML omitted --> ★ ★ ★ ☆ ☆ <!-- raw HTML omitted --></p>
<p><a href="https://letterboxd.com/carte_blanche/film/the-darjeeling-limited/">Check out this review on Letterboxd</a></p>
<hr>
@ -329,7 +323,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -13,10 +13,7 @@ a diverse array of deficits in hedonic function, including reduced motivation or
At one point or another, we have all experienced some version of this phenomenon - may be characterized by an oversaturation of love, or caused by a prolonged mediocrity in life, or as in the case of our protagonist here, the complete loss of will and motivation to feel anything.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/cinema/oslo-august/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -41,7 +38,7 @@ At one point or another, we have all experienced some version of this phenomenon
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -213,16 +210,13 @@ At one point or another, we have all experienced some version of this phenomenon
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Oslo, August 31st (2011) by Joachim Trier
</h1>
<div class="post-meta">&lt;span title=&#39;2020-06-04 14:39:00 &#43;0530 IST&#39;&gt;🗓 June 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/norwegian&#34;&gt; norwegian&lt;/a&gt;
<div class="post-meta"><span title='2020-06-04 14:39:00 +0530 IST'>🗓 June 4, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/norwegian"> norwegian</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/oslo-august-31.jpg" alt="">
</figure>
<div class="post-content"><p>Verdict: <!-- raw HTML omitted --> ★ ★ ★ ★ ☆ <!-- raw HTML omitted --></p>
<p><a href="https://letterboxd.com/carte_blanche/film/oslo-august-31st/">Check out this review on Letterboxd</a></p>
<hr>
@ -352,7 +346,7 @@ At one point or another, we have all experienced some version of this phenomenon
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-speed-ninjas-Harley-fans, and it usually gets a bad rap all across the world. Gaurav Jani is none of these things. His passion and humility and curious nature reminded me why I loved biking in the first place. This is a must-watch for anyone fascinated with two wheels and the places they enable you to visit.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/cinema/riding-solo/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-spee
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,16 +204,13 @@ Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-spee
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Riding Solo to the Top of the World (2006) by Gaurav Jani
</h1>
<div class="post-meta">&lt;span title=&#39;2021-01-03 22:53:01 &#43;0530 IST&#39;&gt;🗓 January 3, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/motorcycling&#34;&gt; motorcycling&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;
<div class="post-meta"><span title='2021-01-03 22:53:01 +0530 IST'>🗓 January 3, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/motorcycling"> motorcycling</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/riding-solo.png" alt="">
</figure>
<div class="post-content"><p>Verdict: <!-- raw HTML omitted --> ★ ★ ★ ★ ★ <!-- raw HTML omitted --></p>
<p><a href="https://letterboxd.com/carte_blanche/film/oslo-august-31st/">Check it out on Letterboxd</a></p>
<hr>
@ -334,7 +328,7 @@ Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-spee
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -12,10 +12,7 @@ There are films which you wish you had watched earlier in life, and there are ot
The college sophomore me would have been really excited about discussing vague notions of self and freedom and free will and morality and dreams - and don&rsquo;t get me wrong, mid-twenties me is equally as excited about these things as my former self, if not more so - but the problem lies in the superficiality of it all.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/cinema/waking-life/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -40,7 +37,7 @@ The college sophomore me would have been really excited about discussing vague n
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -210,16 +207,13 @@ The college sophomore me would have been really excited about discussing vague n
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Waking Life (2001) by Richard Linklater
</h1>
<div class="post-meta">&lt;span title=&#39;2020-11-27 22:57:50 &#43;0530 IST&#39;&gt;🗓 November 27, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animation&#34;&gt; animation&lt;/a&gt;
<div class="post-meta"><span title='2020-11-27 22:57:50 +0530 IST'>🗓 November 27, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/animation"> animation</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/waking-life.jpg" alt="">
</figure>
<div class="post-content"><p>Verdict: <!-- raw HTML omitted --> ★ ★ ★ ☆ ☆ <!-- raw HTML omitted --></p>
<p><a href="https://letterboxd.com/carte_blanche/film/waking-life/">Check it out on Letterboxd</a></p>
<hr>
@ -338,7 +332,7 @@ The college sophomore me would have been really excited about discussing vague n
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -12,10 +12,7 @@ Over the years, I have increasingly gravitated towards films where supposedly &l
I had watched Once Upon a Time in Anatolia from the same director previously and much like films by Wes Anderson, I could immediately tell this was Ceylan&rsquo;s film right from the start, although these two directors could not be any more different.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/cinema/winter-sleep/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -40,7 +37,7 @@ I had watched Once Upon a Time in Anatolia from the same director previously and
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -210,16 +207,13 @@ I had watched Once Upon a Time in Anatolia from the same director previously and
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Winter Sleep (2014) by Nuri Bilge Ceylan
</h1>
<div class="post-meta">&lt;span title=&#39;2021-03-15 21:30:40 &#43;0530 IST&#39;&gt;🗓 March 15, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/turkey&#34;&gt; turkey&lt;/a&gt;
<div class="post-meta"><span title='2021-03-15 21:30:40 +0530 IST'>🗓 March 15, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/turkey"> turkey</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/winter_sleep.png" alt="">
</figure>
<div class="post-content"><p>Verdict: <!-- raw HTML omitted --> ★ ★ ★ ★ ★ <!-- raw HTML omitted --></p>
<p><a href="https://letterboxd.com/carte_blanche/film/winter-sleep/">Check it out on Letterboxd</a></p>
<hr>
@ -337,7 +331,7 @@ I had watched Once Upon a Time in Anatolia from the same director previously and
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -19,10 +19,7 @@ of the stick when it burned,
lighting up my day with the secret enchantments,">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/deference-vs-indifference/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -47,7 +44,7 @@ lighting up my day with the secret enchantments,">
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -231,16 +228,13 @@ lighting up my day with the secret enchantments,"/>
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Deference vs. Indifference
</h1>
<div class="post-meta">&lt;span title=&#39;2019-03-15 22:27:30 &#43;0530 IST&#39;&gt;🗓 March 15, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/poetry&#34;&gt; poetry&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/writing&#34;&gt; writing&lt;/a&gt;
<div class="post-meta"><span title='2019-03-15 22:27:30 +0530 IST'>🗓 March 15, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/poetry"> poetry</a>&nbsp;·&nbsp;<a href="/tags/writing"> writing</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/the-solitude.jpg" alt="">
</figure>
<div class="post-content"><p><a href="https://www.flickr.com/photos/160696242@N07/46619008205/">(See this picture on Flickr)</a></p>
<hr>
<h2 id="deference-vs-indifference">Deference vs. Indifference<a hidden class="anchor" aria-hidden="true" href="#deference-vs-indifference">#</a></h2>
@ -408,7 +402,7 @@ There really is no answer, is there?</p>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="I don&rsquo;t know why, but I liked the eyes-only version more. Linked below is the work-in-progress sketch:">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,16 +201,13 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
A Beautiful Woman
</h1>
<div class="post-meta">&lt;span title=&#39;2020-06-09 17:26:51 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;
<div class="post-meta"><span title='2020-06-09 17:26:51 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/lady_finished.jpg" alt="">
</figure>
<div class="post-content"><hr>
<p>I don&rsquo;t know why, but I liked the eyes-only version more. Linked below is the work-in-progress sketch:</p>
<p><img loading="lazy" src="/images/lady_partial.jpg" alt="Work in progress" />
@ -329,7 +323,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="I was either on acid or I had watched a sad movie before attempting this piece. A strange juxtaposition of Chaplin and Hitler.">
<meta name="author" content="siddhartha">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/drawings/chaplin/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,16 +201,13 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Charlie Chaplin (um... not quite)
</h1>
<div class="post-meta">&lt;span title=&#39;2020-06-09 17:01:36 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;
<div class="post-meta"><span title='2020-06-09 17:01:36 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/Charlie_Chaplin.jpg" alt="">
</figure>
<div class="post-content"><hr>
<p>I was either on acid or I had watched a sad movie before attempting this piece. A strange juxtaposition of Chaplin and Hitler.</p>
@ -327,7 +321,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="I have a particular affinity towards this sketch as I was very apprehensive about attempting Einstein, his face had much more complexity than what I usually dealt with, but it turned out good enough in the end.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/drawings/einstein/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,16 +201,13 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Einstein
</h1>
<div class="post-meta">&lt;span title=&#39;2020-06-09 17:14:48 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;
<div class="post-meta"><span title='2020-06-09 17:14:48 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/Einstein.jpg" alt="">
</figure>
<div class="post-content"><hr>
<p>I have a particular affinity towards this sketch as I was very apprehensive about attempting Einstein, his face had much more complexity than what I usually dealt with, but it turned out good enough in the end.</p>
@ -327,7 +321,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="My first attempt at drawing after dabbling in caricature pieces in my childhood :)">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/drawings/gandhi/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,16 +201,13 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Gandhi
</h1>
<div class="post-meta">&lt;span title=&#39;2020-06-09 16:51:23 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;
<div class="post-meta"><span title='2020-06-09 16:51:23 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/Gandhi.jpg" alt="">
</figure>
<div class="post-content"><hr>
<p>My first attempt at drawing after dabbling in caricature pieces in my childhood :)</p>
@ -327,7 +321,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="I used to be obsessed with Sherlock (the HBO show) during the time it aired, and part of my fascination was with Martin Freeman here, who so brilliantly played the role of Watson.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/drawings/martin-freeman/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,16 +201,13 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Martin Freeman
</h1>
<div class="post-meta">&lt;span title=&#39;2020-06-09 17:20:16 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;
<div class="post-meta"><span title='2020-06-09 17:20:16 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/Freeman.jpg" alt="">
</figure>
<div class="post-content"><hr>
<p>I used to be obsessed with Sherlock (the HBO show) during the time it aired, and part of my fascination was with Martin Freeman here, who so brilliantly played the role of Watson.</p>
@ -327,7 +321,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="Completely botched this drawing, but it reminds me of the drawing streak I used to have back when I was in my hometown during college vacations.">
<meta name="author" content="siddhartha">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/drawings/teresa/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,16 +201,13 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Mother Teresa
</h1>
<div class="post-meta">&lt;span title=&#39;2020-06-09 17:09:43 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;
<div class="post-meta"><span title='2020-06-09 17:09:43 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/Mother_Teresa.jpg" alt="">
</figure>
<div class="post-content"><hr>
<p>Completely botched this drawing, but it reminds me of the drawing streak I used to have back when I was in my hometown during college vacations.</p>
@ -327,7 +321,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,8 +10,7 @@
<meta name="description" content="Posts - Siddhartha Golu">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -161,7 +160,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a></div>
<h1>
Posts
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/posts/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -174,116 +173,116 @@
<article class="post-entry">
<header class="entry-header">
<h2>Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan
<h2 class="entry-hint-parent">Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan
</h2>
</header>
<div class="entry-content">
<p>A powerful exploration into the psyche of Indian women and how society perpetuates the status quo</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-09-03 21:05:39 &#43;0530 IST&#39;&gt;🗓 September 3, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/feminism&#34;&gt; feminism&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-09-03 21:05:39 +0530 IST'>🗓 September 3, 2023</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/feminism"> feminism</a></footer>
<a class="entry-link" aria-label="post link to Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan" href="https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Empire of Pain: The Secret History of the Sackler Dynasty
<h2 class="entry-hint-parent">Empire of Pain: The Secret History of the Sackler Dynasty
</h2>
</header>
<div class="entry-content">
<p>If you want to understand how the opioid crisis began, read this</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-06-21 08:49:32 &#43;0530 IST&#39;&gt;🗓 June 21, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/public-health&#34;&gt; public-health&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-06-21 08:49:32 +0530 IST'>🗓 June 21, 2023</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/public-health"> public-health</a></footer>
<a class="entry-link" aria-label="post link to Empire of Pain: The Secret History of the Sackler Dynasty" href="https://www.siddharthagolu.com/posts/reading/empire-of-pain/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>So Good They Can&#39;t Ignore You - Cal Newport
<h2 class="entry-hint-parent">So Good They Can&#39;t Ignore You - Cal Newport
</h2>
</header>
<div class="entry-content">
<p>A series of blog posts that unfortunately became a book. Not recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-03-29 15:04:13 &#43;0530 IST&#39;&gt;🗓 March 29, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/fast-food-books&#34;&gt; fast-food-books&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-03-29 15:04:13 +0530 IST'>🗓 March 29, 2023</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a>&nbsp;·&nbsp;<a href="/tags/fast-food-books"> fast-food-books</a></footer>
<a class="entry-link" aria-label="post link to So Good They Can&#39;t Ignore You - Cal Newport" href="https://www.siddharthagolu.com/posts/reading/so-good-newport/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman
<h2 class="entry-hint-parent">Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman
</h2>
</header>
<div class="entry-content">
<p>A book about time and our relationship with it. Recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-09-21 07:35:24 &#43;0530 IST&#39;&gt;🗓 September 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-09-21 07:35:24 +0530 IST'>🗓 September 21, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a></footer>
<a class="entry-link" aria-label="post link to Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman" href="https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>After Life (1998) by Hirokazu Kore-eda
<h2 class="entry-hint-parent">After Life (1998) by Hirokazu Kore-eda
</h2>
</header>
<div class="entry-content">
<p>An interesting take on life, seen through the lens of afterlife. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-05-01 22:41:55 &#43;0530 IST&#39;&gt;🗓 May 1, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-05-01 22:41:55 +0530 IST'>🗓 May 1, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to After Life (1998) by Hirokazu Kore-eda" href="https://www.siddharthagolu.com/posts/cinema/after-life/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Life Between Buildings by Jan Gehl
<h2 class="entry-hint-parent">Life Between Buildings by Jan Gehl
</h2>
</header>
<div class="entry-content">
<p>A gentle introduction to the study of buildings and the way they enable societal interactions.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-04-21 09:04:49 &#43;0530 IST&#39;&gt;🗓 April 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/architecture&#34;&gt; architecture&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/society&#34;&gt; society&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-04-21 09:04:49 +0530 IST'>🗓 April 21, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/architecture"> architecture</a>&nbsp;·&nbsp;<a href="/tags/society"> society</a></footer>
<a class="entry-link" aria-label="post link to Life Between Buildings by Jan Gehl" href="https://www.siddharthagolu.com/posts/reading/life-between-buildings/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>3 Iron (2004) by Kim Ki-duk
<h2 class="entry-hint-parent">3 Iron (2004) by Kim Ki-duk
</h2>
</header>
<div class="entry-content">
<p>A film where everything is conveyed through glances.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-11-14 10:46:40 &#43;0530 IST&#39;&gt;🗓 November 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/minimalism&#34;&gt; minimalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/minimalism"> minimalism</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to 3 Iron (2004) by Kim Ki-duk" href="https://www.siddharthagolu.com/posts/cinema/3-iron/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>The Way We Eat: Why Our Food Choices Matter by Peter Singer
<h2 class="entry-hint-parent">The Way We Eat: Why Our Food Choices Matter by Peter Singer
</h2>
</header>
<div class="entry-content">
<p>The ethical dilemma of eating. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-09-01 10:43:25 &#43;0530 IST&#39;&gt;🗓 September 1, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/review&#34;&gt; review&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/debating-ethics&#34;&gt; debating-ethics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animal-cruelty&#34;&gt; animal-cruelty&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/review"> review</a>&nbsp;·&nbsp;<a href="/tags/debating-ethics"> debating-ethics</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/animal-cruelty"> animal-cruelty</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to The Way We Eat: Why Our Food Choices Matter by Peter Singer" href="https://www.siddharthagolu.com/posts/reading/the-way-we-eat/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Shame by Salman Rushdie
<h2 class="entry-hint-parent">Shame by Salman Rushdie
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
Now that Ive moved away from reading fiction, I find that I face a lot of inertia to pick up something purely for pleasure. Maybe this is a nasty by-product of wanting to be as “productive” as possible. But the more I have drifted away from reading for pleasure, more mechanical the whole process has become for me. Partly to avoid this feeling, and partly because of my shame at seeing my bookshelf filled with dusty unread books, I picked up this one to assuage my feelings of guilt....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-08-17 22:55:02 &#43;0530 IST&#39;&gt;🗓 August 17, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-08-17 22:55:02 +0530 IST'>🗓 August 17, 2021</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a></footer>
<a class="entry-link" aria-label="post link to Shame by Salman Rushdie" href="https://www.siddharthagolu.com/posts/reading/shame-rushdie/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>What I Talk About When I Talk About Running by Haruki Murakami
<h2 class="entry-hint-parent">What I Talk About When I Talk About Running by Haruki Murakami
</h2>
</header>
<div class="entry-content">
@ -291,7 +290,7 @@ Now that Ive moved away from reading fiction, I find that I face a lot of ine
Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-08-14 20:09:56 &#43;0530 IST&#39;&gt;🗓 August 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/health&#34;&gt; health&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-08-14 20:09:56 +0530 IST'>🗓 August 14, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/health"> health</a></footer>
<a class="entry-link" aria-label="post link to What I Talk About When I Talk About Running by Haruki Murakami" href="https://www.siddharthagolu.com/posts/reading/running-murakami/"></a>
</article>
<footer class="page-footer">
@ -303,7 +302,7 @@ I have no affinity for running, even for short jogs, and much less for wanting t
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Posts on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/posts/</link>
@ -11,273 +11,219 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sun, 03 Sep 2023 21:05:39 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/posts/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Sun, 03 Sep 2023 21:05:39 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan</title>
<link>https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/</link>
<pubDate>Sun, 03 Sep 2023 21:05:39 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/</guid>
<description>A powerful exploration into the psyche of Indian women and how society perpetuates the status quo</description>
</item>
<item>
<title>Empire of Pain: The Secret History of the Sackler Dynasty</title>
<link>https://www.siddharthagolu.com/posts/reading/empire-of-pain/</link>
<pubDate>Wed, 21 Jun 2023 08:49:32 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/empire-of-pain/</guid>
<description>If you want to understand how the opioid crisis began, read this</description>
</item>
<item>
<title>So Good They Can&#39;t Ignore You - Cal Newport</title>
<link>https://www.siddharthagolu.com/posts/reading/so-good-newport/</link>
<pubDate>Wed, 29 Mar 2023 15:04:13 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/so-good-newport/</guid>
<description>A series of blog posts that unfortunately became a book. Not recommended.</description>
</item>
<item>
<title>Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman</title>
<link>https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/</link>
<pubDate>Wed, 21 Sep 2022 07:35:24 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/</guid>
<description>A book about time and our relationship with it. Recommended.</description>
</item>
<item>
<title>After Life (1998) by Hirokazu Kore-eda</title>
<link>https://www.siddharthagolu.com/posts/cinema/after-life/</link>
<pubDate>Sun, 01 May 2022 22:41:55 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/after-life/</guid>
<description>An interesting take on life, seen through the lens of afterlife. Highly recommended!</description>
</item>
<item>
<title>Life Between Buildings by Jan Gehl</title>
<link>https://www.siddharthagolu.com/posts/reading/life-between-buildings/</link>
<pubDate>Thu, 21 Apr 2022 09:04:49 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/life-between-buildings/</guid>
<description>A gentle introduction to the study of buildings and the way they enable societal interactions.</description>
</item>
<item>
<title>3 Iron (2004) by Kim Ki-duk</title>
<link>https://www.siddharthagolu.com/posts/cinema/3-iron/</link>
<pubDate>Sun, 14 Nov 2021 10:46:40 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/3-iron/</guid>
<description>A film where everything is conveyed through glances.</description>
</item>
<item>
<title>The Way We Eat: Why Our Food Choices Matter by Peter Singer</title>
<link>https://www.siddharthagolu.com/posts/reading/the-way-we-eat/</link>
<pubDate>Wed, 01 Sep 2021 10:43:25 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-way-we-eat/</guid>
<description>The ethical dilemma of eating. Highly recommended!</description>
</item>
<item>
<title>Shame by Salman Rushdie</title>
<link>https://www.siddharthagolu.com/posts/reading/shame-rushdie/</link>
<pubDate>Tue, 17 Aug 2021 22:55:02 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/shame-rushdie/</guid>
<description>Check it out on Goodreads
Now that I&amp;rsquo;ve moved away from reading fiction, I find that I face a lot of inertia to pick up something purely for pleasure. Maybe this is a nasty by-product of wanting to be as &amp;ldquo;productive&amp;rdquo; as possible. But the more I have drifted away from reading for pleasure, more mechanical the whole process has become for me. Partly to avoid this feeling, and partly because of my shame at seeing my bookshelf filled with dusty unread books, I picked up this one to assuage my feelings of guilt.</description>
</item>
<item>
<title>What I Talk About When I Talk About Running by Haruki Murakami</title>
<link>https://www.siddharthagolu.com/posts/reading/running-murakami/</link>
<pubDate>Sat, 14 Aug 2021 20:09:56 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/running-murakami/</guid>
<description>Check it out on Goodreads
Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity.</description>
</item>
<item>
<title>Annihilation of Caste(Annotated Edition) by Arundhati Roy</title>
<link>https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/</link>
<pubDate>Fri, 23 Jul 2021 22:56:47 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/</guid>
<description>Check it out on Goodreads
I find India really fascinating sometimes, even though I&amp;rsquo;ve lived my whole life here. What the cultural multitudes and colorful festivals hide underneath is an ugly facade which threatens to break everything that has been built over the years. What I find most fascinating is how we&amp;rsquo;ve conditioned ourselves to ignore the blatant reality and move ahead with an oblivious calm, living in shit and aspiring for the gold.</description>
</item>
<item>
<title>Parenting Beyond Belief by Dale McGowan</title>
<link>https://www.siddharthagolu.com/posts/reading/parenting/</link>
<pubDate>Thu, 18 Mar 2021 22:14:21 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/parenting/</guid>
<description>Check it out on Goodreads
I have had a very curious relationship with religion, although now that I talk to others, it was a much more normal experience than what I led myself to believe. I followed the typical path of receiving a particular religion from my parents (born a &amp;ldquo;Hindu child&amp;rdquo;), which had a supporting role in my life up until my late-teenage/early-adolescent years.
As is the norm for every child brought up in religion, I used to consider myself special believing that I had a &amp;ldquo;personal relationship&amp;rdquo; with God.</description>
</item>
<item>
<title>Winter Sleep (2014) by Nuri Bilge Ceylan</title>
<link>https://www.siddharthagolu.com/posts/cinema/winter-sleep/</link>
<pubDate>Mon, 15 Mar 2021 21:30:40 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/winter-sleep/</guid>
<description>Verdict: ★ ★ ★ ★ ★ Check it out on Letterboxd
Over the years, I have increasingly gravitated towards films where supposedly &amp;ldquo;nothing happens&amp;rdquo;. Characters talk, no attempt is made to instill a moral point into the minds of the audience, which is usually accompanied with long, patient shots of people existing in their environments. This was an excellent specimen of the same dish.
I had watched Once Upon a Time in Anatolia from the same director previously and much like films by Wes Anderson, I could immediately tell this was Ceylan&amp;rsquo;s film right from the start, although these two directors could not be any more different.</description>
</item>
<item>
<title>Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan</title>
<link>https://www.siddharthagolu.com/posts/cinema/anatolia/</link>
<pubDate>Sun, 07 Feb 2021 22:44:49 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/anatolia/</guid>
<description>Verdict: ★ ★ ★ ★ ☆ Check it out on Letterboxd
A slow, methodical display of patience and absurdity juxtaposed on the vast landscape, this film has something else going for it. When you read the synopsis or look at the posters, you expect a certain police procedural drama - the kind of which you&amp;rsquo;ve been accustomed to till date. What you get is a completely different take on the trope.</description>
</item>
<item>
<title>Riding Solo to the Top of the World (2006) by Gaurav Jani</title>
<link>https://www.siddharthagolu.com/posts/cinema/riding-solo/</link>
<pubDate>Sun, 03 Jan 2021 22:53:01 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/riding-solo/</guid>
<description>Verdict: ★ ★ ★ ★ ★ Check it out on Letterboxd
Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-speed-ninjas-Harley-fans, and it usually gets a bad rap all across the world. Gaurav Jani is none of these things. His passion and humility and curious nature reminded me why I loved biking in the first place. This is a must-watch for anyone fascinated with two wheels and the places they enable you to visit.</description>
</item>
<item>
<title>I Do What I Do by Raghuram Rajan</title>
<link>https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/</link>
<pubDate>Sat, 19 Dec 2020 09:24:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/</guid>
<description>Check it out on Goodreads
I had picked up this one thinking it to be an autobiography, and with an expectation that it&amp;rsquo;ll cover Rajan&amp;rsquo;s tussles with the government in more details. I was pleasantly surprised to find instead a good collection of technical essays covering the workings of RBI, and economics in general. If you&amp;rsquo;re looking for a good explanatory work in the field of Economics (and especially those concerning India and its policies), you&amp;rsquo;ll enjoy this.</description>
</item>
<item>
<title>Waking Life (2001) by Richard Linklater</title>
<link>https://www.siddharthagolu.com/posts/cinema/waking-life/</link>
<pubDate>Fri, 27 Nov 2020 22:57:50 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/waking-life/</guid>
<description>Verdict: ★ ★ ★ ☆ ☆ Check it out on Letterboxd
There are films which you wish you had watched earlier in life, and there are others which don&amp;rsquo;t make sense until you have had your fair share of world experiences. Waking Life falls in the former category.
The college sophomore me would have been really excited about discussing vague notions of self and freedom and free will and morality and dreams - and don&amp;rsquo;t get me wrong, mid-twenties me is equally as excited about these things as my former self, if not more so - but the problem lies in the superficiality of it all.</description>
</item>
<item>
<title>Azadi by Arundhati Roy</title>
<link>https://www.siddharthagolu.com/posts/reading/azadi/</link>
<pubDate>Wed, 30 Sep 2020 22:22:13 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/azadi/</guid>
<description>A series of essays on the bleak reality in India. Highly recommended.</description>
</item>
<item>
<title>Stoner by John Williams</title>
<link>https://www.siddharthagolu.com/posts/reading/stoner/</link>
<pubDate>Sun, 28 Jun 2020 19:45:36 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/stoner/</guid>
<description>Check it out on Goodreads
Reading fiction has always been a double-edged sword for me. Some of the most intimate moments I&amp;rsquo;ve spent alone is while reading fictional stories, while at the same time, feeling a pang of disappointment for myself because I wasn&amp;rsquo;t doing anything &amp;ldquo;productive.&amp;rdquo; Is this mere entertainment? Am I just escaping my real-life responsibilities and reading stories of make-believe? While I still haven&amp;rsquo;t found sincere answers to these questions, I&amp;rsquo;ve grown more confident of what I enjoy and what I don&amp;rsquo;t, which has consequently helped me find peace with this conflict.</description>
</item>
<item>
<title>A Beautiful Woman</title>
<link>https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/</link>
<pubDate>Tue, 09 Jun 2020 17:26:51 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/</guid>
<description>I don&amp;rsquo;t know why, but I liked the eyes-only version more. Linked below is the work-in-progress sketch:</description>
</item>
<item>
<title>Martin Freeman</title>
<link>https://www.siddharthagolu.com/posts/drawings/martin-freeman/</link>
<pubDate>Tue, 09 Jun 2020 17:20:16 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/martin-freeman/</guid>
<description>I used to be obsessed with Sherlock (the HBO show) during the time it aired, and part of my fascination was with Martin Freeman here, who so brilliantly played the role of Watson.</description>
</item>
<item>
<title>Einstein</title>
<link>https://www.siddharthagolu.com/posts/drawings/einstein/</link>
<pubDate>Tue, 09 Jun 2020 17:14:48 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/einstein/</guid>
<description>I have a particular affinity towards this sketch as I was very apprehensive about attempting Einstein, his face had much more complexity than what I usually dealt with, but it turned out good enough in the end.</description>
</item>
<item>
<title>Mother Teresa</title>
<link>https://www.siddharthagolu.com/posts/drawings/teresa/</link>
<pubDate>Tue, 09 Jun 2020 17:09:43 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/teresa/</guid>
<description>Completely botched this drawing, but it reminds me of the drawing streak I used to have back when I was in my hometown during college vacations.</description>
</item>
<item>
<title>Charlie Chaplin (um... not quite)</title>
<link>https://www.siddharthagolu.com/posts/drawings/chaplin/</link>
<pubDate>Tue, 09 Jun 2020 17:01:36 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/chaplin/</guid>
<description>I was either on acid or I had watched a sad movie before attempting this piece. A strange juxtaposition of Chaplin and Hitler.</description>
</item>
<item>
<title>Gandhi</title>
<link>https://www.siddharthagolu.com/posts/drawings/gandhi/</link>
<pubDate>Tue, 09 Jun 2020 16:51:23 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/drawings/gandhi/</guid>
<description>My first attempt at drawing after dabbling in caricature pieces in my childhood :)</description>
</item>
<item>
<title>Oslo, August 31st (2011) by Joachim Trier</title>
<link>https://www.siddharthagolu.com/posts/cinema/oslo-august/</link>
<pubDate>Thu, 04 Jun 2020 14:39:00 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/oslo-august/</guid>
<description>Verdict: ★ ★ ★ ★ ☆ Check out this review on Letterboxd
Anhedonia. The Wikipedia entry for this word says:
a diverse array of deficits in hedonic function, including reduced motivation or ability to experience pleasure.
At one point or another, we have all experienced some version of this phenomenon - may be characterized by an oversaturation of love, or caused by a prolonged mediocrity in life, or as in the case of our protagonist here, the complete loss of will and motivation to feel anything.</description>
</item>
<item>
<title>Bad Blood by John Carreyrou</title>
<link>https://www.siddharthagolu.com/posts/reading/bad-blood/</link>
<pubDate>Fri, 01 May 2020 23:39:18 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/bad-blood/</guid>
<description>Check it out on Goodreads
How to fool the world and become a Billionaire I remember hearing about Elizabeth Holmes when I was in my late teens, at that impressionable age when you get hyper-inspired by reading about icons that are going to change the world. There was a profile of her in Wired, with an eye-catching image of her wearing a turtleneck black sweater holding what looked like a test-tube with a tiny amount of blood with a science-y background.</description>
</item>
<item>
<title>Fear</title>
<link>https://www.siddharthagolu.com/posts/scared-in-lockdown/</link>
<pubDate>Sat, 25 Apr 2020 23:45:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/scared-in-lockdown/</guid>
<description>Check it out on Instagram
I&amp;rsquo;m scared.
@ -291,84 +237,68 @@ feasting on my thoughts,
mutating inside my head as if a colony of ants was given
an open invitation to a room full of sugary syrup.</description>
</item>
<item>
<title>Waking Up by Sam Harris</title>
<link>https://www.siddharthagolu.com/posts/reading/waking-up/</link>
<pubDate>Wed, 15 Apr 2020 23:31:08 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/waking-up/</guid>
<description>Check it out on Goodreads
A disappointing jumble of thoughts Disappointed.
I am an atheist interested in the power of mindfulness and the whole world of so-called spirituality, so naturally, I am the ideal audience that Sam Harris is looking for. But it disappointed in almost every domain that I had expectations in. Using deep-sounding difficult words and wrapping them in an almost mythical aura of &amp;ldquo;Consciousness&amp;rdquo;, this one was a huge letdown.</description>
</item>
<item>
<title>Glimpses of World History by Jawaharlal Nehru</title>
<link>https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/</link>
<pubDate>Thu, 12 Mar 2020 23:23:19 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/</guid>
<description>Check it out on Goodreads
World history in a nutshell More than 1100 pages, this behemoth of a book still fails to capture the whole essence of world history - and rightly so. How can you combine over 2000 years of human history and still do justice to every element? But the unique manner in which this book - or more appropriately, collection of letters - has been written, it shines brightly amongst the plethora of history books you can find on this vast subject of world history.</description>
</item>
<item>
<title>The Darjeeling Limited (2007) by Wes Anderson</title>
<link>https://www.siddharthagolu.com/posts/cinema/darjeeling/</link>
<pubDate>Wed, 04 Mar 2020 23:01:15 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/darjeeling/</guid>
<description>Wes Anderson and his colorful quirks</description>
</item>
<item>
<title>Reasons to Stay Alive by Matt Haig</title>
<link>https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/</link>
<pubDate>Tue, 28 Jan 2020 22:28:18 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/</guid>
<description>Check it out on Goodreads
Reasons you should read this book:
If you&amp;rsquo;ve ever had a panic attack. If you&amp;rsquo;ve ever counted the number of times the ceiling fan rotates, just so you could avoid dealing with the endless voices in your head. If you&amp;rsquo;ve ever felt ashamed to admit that you might be suffering from the D-word. If reading about personal stories of how people overcame their mental illnesses soothes you.</description>
</item>
<item>
<title>How to Listen to and Understand Great Music by Robert Greenberg</title>
<link>https://www.siddharthagolu.com/posts/reading/great-music/</link>
<pubDate>Thu, 16 Jan 2020 22:05:06 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/great-music/</guid>
<description>Check it out on Goodreads
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it.</description>
</item>
<item>
<title>Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky</title>
<link>https://www.siddharthagolu.com/posts/reading/behave-review/</link>
<pubDate>Thu, 12 Sep 2019 20:12:10 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/behave-review/</guid>
<description>Check it out on Goodreads
There are few books which leave you in a mesmerizing state after having read them. You ponder about it for days to come, want to scream your head off about it to anyone who&amp;rsquo;d listen, and then dwell in this fear of picking up another book because how can something else ever come close to being this perfect! I have felt this way before - first when I&amp;rsquo;d finished The Complete Sherlock Holmes, later when I was left in a daze for multiple days after finishing the notorious and brilliant House of Leaves, and much more recently when I was unable to sleep after reading Why We Sleep by Matthew Walker.</description>
</item>
<item>
<title>Range by David Epstein</title>
<link>https://www.siddharthagolu.com/posts/reading/range-a-review/</link>
<pubDate>Thu, 05 Sep 2019 00:16:14 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/range-a-review/</guid>
<description>Check it out on Goodreads
Started with a tightly-knit structure, but faltered at the end. The last few chapters were a slog to get through - mostly because of numerous &amp;ldquo;business-class&amp;rdquo; style case studies.
Main takeaway? Other than the central idea around which the book revolves (and succinctly mentioned as the book subtitle too), the idea of interleaving is what struck me the most. I had already read about this particular method in Michael Nielsen&amp;rsquo;s brilliant post on Anki (&amp;ldquo;Augmenting Long-term Memory&amp;rdquo;) and it was interesting to read about it formally in the book.</description>
</item>
<item>
<title>Deference vs. Indifference</title>
<link>https://www.siddharthagolu.com/posts/deference-vs-indifference/</link>
<pubDate>Fri, 15 Mar 2019 22:27:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/deference-vs-indifference/</guid>
<description>(See this picture on Flickr)
Deference vs. Indifference There used to be a time
@ -381,25 +311,20 @@ when I used to love the aroma
of the stick when it burned,
lighting up my day with the secret enchantments,</description>
</item>
<item>
<title>The Course of Love by Alain de Botton</title>
<link>https://www.siddharthagolu.com/posts/reading/the-course-of-love/</link>
<pubDate>Thu, 14 Feb 2019 20:21:45 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-course-of-love/</guid>
<description>Check it out on Goodreads
The School of Life - a massively popular YouTube channel - used to be this source of solace in some turbulent times of my college life. It is not something that you&amp;rsquo;d think would be cheerful and uplifting - a quick glance at some of the most popular videos of the channel would include titles such as &amp;ldquo;Why we go cold on our partners&amp;rdquo;, &amp;ldquo;Why you will marry the wrong person&amp;rdquo; etc.</description>
</item>
<item>
<title>The Stranger and The Plague by Albert Camus</title>
<link>https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/</link>
<pubDate>Mon, 21 Jan 2019 14:39:14 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/</guid>
<description>On my journey to learn more about philosophy - the first step into the realms of existentialism</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Posts - Siddhartha Golu">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -161,7 +160,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a></div>
<h1>
Posts
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/posts/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -174,20 +173,20 @@
<article class="post-entry">
<header class="entry-header">
<h2>Annihilation of Caste(Annotated Edition) by Arundhati Roy
<h2 class="entry-hint-parent">Annihilation of Caste(Annotated Edition) by Arundhati Roy
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I find India really fascinating sometimes, even though Ive lived my whole life here. What the cultural multitudes and colorful festivals hide underneath is an ugly facade which threatens to break everything that has been built over the years. What I find most fascinating is how weve conditioned ourselves to ignore the blatant reality and move ahead with an oblivious calm, living in shit and aspiring for the gold....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-07-23 22:56:47 &#43;0530 IST&#39;&gt;🗓 July 23, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-07-23 22:56:47 +0530 IST'>🗓 July 23, 2021</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Annihilation of Caste(Annotated Edition) by Arundhati Roy" href="https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Parenting Beyond Belief by Dale McGowan
<h2 class="entry-hint-parent">Parenting Beyond Belief by Dale McGowan
</h2>
</header>
<div class="entry-content">
@ -195,13 +194,13 @@ I find India really fascinating sometimes, even though Ive lived my whole lif
I have had a very curious relationship with religion, although now that I talk to others, it was a much more normal experience than what I led myself to believe. I followed the typical path of receiving a particular religion from my parents (born a “Hindu child”), which had a supporting role in my life up until my late-teenage/early-adolescent years.
As is the norm for every child brought up in religion, I used to consider myself special believing that I had a “personal relationship” with God....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-03-18 22:14:21 &#43;0530 IST&#39;&gt;🗓 March 18, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/parenting&#34;&gt; parenting&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-03-18 22:14:21 +0530 IST'>🗓 March 18, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/parenting"> parenting</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Parenting Beyond Belief by Dale McGowan" href="https://www.siddharthagolu.com/posts/reading/parenting/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Winter Sleep (2014) by Nuri Bilge Ceylan
<h2 class="entry-hint-parent">Winter Sleep (2014) by Nuri Bilge Ceylan
</h2>
</header>
<div class="entry-content">
@ -209,52 +208,52 @@ As is the norm for every child brought up in religion, I used to consider myself
Over the years, I have increasingly gravitated towards films where supposedly “nothing happens”. Characters talk, no attempt is made to instill a moral point into the minds of the audience, which is usually accompanied with long, patient shots of people existing in their environments. This was an excellent specimen of the same dish.
I had watched Once Upon a Time in Anatolia from the same director previously and much like films by Wes Anderson, I could immediately tell this was Ceylans film right from the start, although these two directors could not be any more different....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-03-15 21:30:40 &#43;0530 IST&#39;&gt;🗓 March 15, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/turkey&#34;&gt; turkey&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-03-15 21:30:40 +0530 IST'>🗓 March 15, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/turkey"> turkey</a></footer>
<a class="entry-link" aria-label="post link to Winter Sleep (2014) by Nuri Bilge Ceylan" href="https://www.siddharthagolu.com/posts/cinema/winter-sleep/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan
<h2 class="entry-hint-parent">Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan
</h2>
</header>
<div class="entry-content">
<p>Verdict: ★ ★ ★ ★ ☆ Check it out on Letterboxd
A slow, methodical display of patience and absurdity juxtaposed on the vast landscape, this film has something else going for it. When you read the synopsis or look at the posters, you expect a certain police procedural drama - the kind of which youve been accustomed to till date. What you get is a completely different take on the trope....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-02-07 22:44:49 &#43;0530 IST&#39;&gt;🗓 February 7, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/turkey&#34;&gt; turkey&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-02-07 22:44:49 +0530 IST'>🗓 February 7, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/turkey"> turkey</a></footer>
<a class="entry-link" aria-label="post link to Once Upon a Time in Anatolia (2011) by Nuri Bilge Ceylan" href="https://www.siddharthagolu.com/posts/cinema/anatolia/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Riding Solo to the Top of the World (2006) by Gaurav Jani
<h2 class="entry-hint-parent">Riding Solo to the Top of the World (2006) by Gaurav Jani
</h2>
</header>
<div class="entry-content">
<p>Verdict: ★ ★ ★ ★ ★ Check it out on Letterboxd
Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-speed-ninjas-Harley-fans, and it usually gets a bad rap all across the world. Gaurav Jani is none of these things. His passion and humility and curious nature reminded me why I loved biking in the first place. This is a must-watch for anyone fascinated with two wheels and the places they enable you to visit.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-01-03 22:53:01 &#43;0530 IST&#39;&gt;🗓 January 3, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/motorcycling&#34;&gt; motorcycling&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-01-03 22:53:01 +0530 IST'>🗓 January 3, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/motorcycling"> motorcycling</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a></footer>
<a class="entry-link" aria-label="post link to Riding Solo to the Top of the World (2006) by Gaurav Jani" href="https://www.siddharthagolu.com/posts/cinema/riding-solo/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>I Do What I Do by Raghuram Rajan
<h2 class="entry-hint-parent">I Do What I Do by Raghuram Rajan
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I had picked up this one thinking it to be an autobiography, and with an expectation that itll cover Rajans tussles with the government in more details. I was pleasantly surprised to find instead a good collection of technical essays covering the workings of RBI, and economics in general. If youre looking for a good explanatory work in the field of Economics (and especially those concerning India and its policies), youll enjoy this....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-12-19 09:24:30 &#43;0530 IST&#39;&gt;🗓 December 19, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/economics&#34;&gt; economics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-12-19 09:24:30 +0530 IST'>🗓 December 19, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/economics"> economics</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a></footer>
<a class="entry-link" aria-label="post link to I Do What I Do by Raghuram Rajan" href="https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Waking Life (2001) by Richard Linklater
<h2 class="entry-hint-parent">Waking Life (2001) by Richard Linklater
</h2>
</header>
<div class="entry-content">
@ -262,44 +261,44 @@ I had picked up this one thinking it to be an autobiography, and with an expecta
There are films which you wish you had watched earlier in life, and there are others which dont make sense until you have had your fair share of world experiences. Waking Life falls in the former category.
The college sophomore me would have been really excited about discussing vague notions of self and freedom and free will and morality and dreams - and dont get me wrong, mid-twenties me is equally as excited about these things as my former self, if not more so - but the problem lies in the superficiality of it all....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-11-27 22:57:50 &#43;0530 IST&#39;&gt;🗓 November 27, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animation&#34;&gt; animation&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-11-27 22:57:50 +0530 IST'>🗓 November 27, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/animation"> animation</a></footer>
<a class="entry-link" aria-label="post link to Waking Life (2001) by Richard Linklater" href="https://www.siddharthagolu.com/posts/cinema/waking-life/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Azadi by Arundhati Roy
<h2 class="entry-hint-parent">Azadi by Arundhati Roy
</h2>
</header>
<div class="entry-content">
<p>A series of essays on the bleak reality in India. Highly recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-09-30 22:22:13 &#43;0530 IST&#39;&gt;🗓 September 30, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-09-30 22:22:13 +0530 IST'>🗓 September 30, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Azadi by Arundhati Roy" href="https://www.siddharthagolu.com/posts/reading/azadi/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Stoner by John Williams
<h2 class="entry-hint-parent">Stoner by John Williams
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
Reading fiction has always been a double-edged sword for me. Some of the most intimate moments Ive spent alone is while reading fictional stories, while at the same time, feeling a pang of disappointment for myself because I wasnt doing anything “productive.” Is this mere entertainment? Am I just escaping my real-life responsibilities and reading stories of make-believe? While I still havent found sincere answers to these questions, Ive grown more confident of what I enjoy and what I dont, which has consequently helped me find peace with this conflict....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-28 19:45:36 &#43;0530 IST&#39;&gt;🗓 June 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-28 19:45:36 +0530 IST'>🗓 June 28, 2020</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a></footer>
<a class="entry-link" aria-label="post link to Stoner by John Williams" href="https://www.siddharthagolu.com/posts/reading/stoner/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>A Beautiful Woman
<h2 class="entry-hint-parent">A Beautiful Woman
</h2>
</header>
<div class="entry-content">
<p>I dont know why, but I liked the eyes-only version more. Linked below is the work-in-progress sketch:</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:26:51 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:26:51 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to A Beautiful Woman" href="https://www.siddharthagolu.com/posts/drawings/a-beautiful-woman/"></a>
</article>
<footer class="page-footer">
@ -314,7 +313,7 @@ Reading fiction has always been a double-edged sword for me. Some of the most in
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,8 +10,7 @@
<meta name="description" content="Posts - Siddhartha Golu">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -161,7 +160,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a></div>
<h1>
Posts
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/posts/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -174,67 +173,67 @@
<article class="post-entry">
<header class="entry-header">
<h2>Martin Freeman
<h2 class="entry-hint-parent">Martin Freeman
</h2>
</header>
<div class="entry-content">
<p>I used to be obsessed with Sherlock (the HBO show) during the time it aired, and part of my fascination was with Martin Freeman here, who so brilliantly played the role of Watson.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:20:16 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:20:16 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Martin Freeman" href="https://www.siddharthagolu.com/posts/drawings/martin-freeman/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Einstein
<h2 class="entry-hint-parent">Einstein
</h2>
</header>
<div class="entry-content">
<p>I have a particular affinity towards this sketch as I was very apprehensive about attempting Einstein, his face had much more complexity than what I usually dealt with, but it turned out good enough in the end.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:14:48 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:14:48 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Einstein" href="https://www.siddharthagolu.com/posts/drawings/einstein/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Mother Teresa
<h2 class="entry-hint-parent">Mother Teresa
</h2>
</header>
<div class="entry-content">
<p>Completely botched this drawing, but it reminds me of the drawing streak I used to have back when I was in my hometown during college vacations.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:09:43 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:09:43 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Mother Teresa" href="https://www.siddharthagolu.com/posts/drawings/teresa/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Charlie Chaplin (um... not quite)
<h2 class="entry-hint-parent">Charlie Chaplin (um... not quite)
</h2>
</header>
<div class="entry-content">
<p>I was either on acid or I had watched a sad movie before attempting this piece. A strange juxtaposition of Chaplin and Hitler.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 17:01:36 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 17:01:36 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Charlie Chaplin (um... not quite)" href="https://www.siddharthagolu.com/posts/drawings/chaplin/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Gandhi
<h2 class="entry-hint-parent">Gandhi
</h2>
</header>
<div class="entry-content">
<p>My first attempt at drawing after dabbling in caricature pieces in my childhood :)</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-09 16:51:23 &#43;0530 IST&#39;&gt;🗓 June 9, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/sketching&#34;&gt; sketching&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-09 16:51:23 +0530 IST'>🗓 June 9, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/sketching"> sketching</a></footer>
<a class="entry-link" aria-label="post link to Gandhi" href="https://www.siddharthagolu.com/posts/drawings/gandhi/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Oslo, August 31st (2011) by Joachim Trier
<h2 class="entry-hint-parent">Oslo, August 31st (2011) by Joachim Trier
</h2>
</header>
<div class="entry-content">
@ -243,26 +242,26 @@ Anhedonia. The Wikipedia entry for this word says:
a diverse array of deficits in hedonic function, including reduced motivation or ability to experience pleasure.
At one point or another, we have all experienced some version of this phenomenon - may be characterized by an oversaturation of love, or caused by a prolonged mediocrity in life, or as in the case of our protagonist here, the complete loss of will and motivation to feel anything....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-06-04 14:39:00 &#43;0530 IST&#39;&gt;🗓 June 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/norwegian&#34;&gt; norwegian&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-06-04 14:39:00 +0530 IST'>🗓 June 4, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/norwegian"> norwegian</a></footer>
<a class="entry-link" aria-label="post link to Oslo, August 31st (2011) by Joachim Trier" href="https://www.siddharthagolu.com/posts/cinema/oslo-august/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Bad Blood by John Carreyrou
<h2 class="entry-hint-parent">Bad Blood by John Carreyrou
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
How to fool the world and become a Billionaire I remember hearing about Elizabeth Holmes when I was in my late teens, at that impressionable age when you get hyper-inspired by reading about icons that are going to change the world. There was a profile of her in Wired, with an eye-catching image of her wearing a turtleneck black sweater holding what looked like a test-tube with a tiny amount of blood with a science-y background....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-05-01 23:39:18 &#43;0530 IST&#39;&gt;🗓 May 1, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/journalism&#34;&gt; journalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-05-01 23:39:18 +0530 IST'>🗓 May 1, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/journalism"> journalism</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a></footer>
<a class="entry-link" aria-label="post link to Bad Blood by John Carreyrou" href="https://www.siddharthagolu.com/posts/reading/bad-blood/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Fear
<h2 class="entry-hint-parent">Fear
</h2>
</header>
<div class="entry-content">
@ -278,13 +277,13 @@ feasting on my thoughts,
mutating inside my head as if a colony of ants was given
an open invitation to a room full of sugary syrup....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-04-25 23:45:30 &#43;0530 IST&#39;&gt;🗓 April 25, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/poetry&#34;&gt; poetry&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/writing&#34;&gt; writing&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-04-25 23:45:30 +0530 IST'>🗓 April 25, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/poetry"> poetry</a>&nbsp;·&nbsp;<a href="/tags/writing"> writing</a></footer>
<a class="entry-link" aria-label="post link to Fear" href="https://www.siddharthagolu.com/posts/scared-in-lockdown/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Waking Up by Sam Harris
<h2 class="entry-hint-parent">Waking Up by Sam Harris
</h2>
</header>
<div class="entry-content">
@ -292,20 +291,20 @@ an open invitation to a room full of sugary syrup....</p>
A disappointing jumble of thoughts Disappointed.
I am an atheist interested in the power of mindfulness and the whole world of so-called spirituality, so naturally, I am the ideal audience that Sam Harris is looking for. But it disappointed in almost every domain that I had expectations in. Using deep-sounding difficult words and wrapping them in an almost mythical aura of “Consciousness”, this one was a huge letdown....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-04-15 23:31:08 &#43;0530 IST&#39;&gt;🗓 April 15, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/meditation&#34;&gt; meditation&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-04-15 23:31:08 +0530 IST'>🗓 April 15, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/meditation"> meditation</a></footer>
<a class="entry-link" aria-label="post link to Waking Up by Sam Harris" href="https://www.siddharthagolu.com/posts/reading/waking-up/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Glimpses of World History by Jawaharlal Nehru
<h2 class="entry-hint-parent">Glimpses of World History by Jawaharlal Nehru
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
World history in a nutshell More than 1100 pages, this behemoth of a book still fails to capture the whole essence of world history - and rightly so. How can you combine over 2000 years of human history and still do justice to every element? But the unique manner in which this book - or more appropriately, collection of letters - has been written, it shines brightly amongst the plethora of history books you can find on this vast subject of world history....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-03-12 23:23:19 &#43;0530 IST&#39;&gt;🗓 March 12, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/letters&#34;&gt; letters&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-03-12 23:23:19 +0530 IST'>🗓 March 12, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/letters"> letters</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Glimpses of World History by Jawaharlal Nehru" href="https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/"></a>
</article>
<footer class="page-footer">
@ -320,7 +319,7 @@ World history in a nutshell More than 1100 pages, this behemoth of a book still
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,8 +10,7 @@
<meta name="description" content="Posts - Siddhartha Golu">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -161,7 +160,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a></div>
<h1>
Posts
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/posts/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -174,19 +173,19 @@
<article class="post-entry">
<header class="entry-header">
<h2>The Darjeeling Limited (2007) by Wes Anderson
<h2 class="entry-hint-parent">The Darjeeling Limited (2007) by Wes Anderson
</h2>
</header>
<div class="entry-content">
<p>Wes Anderson and his colorful quirks</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-03-04 23:01:15 &#43;0530 IST&#39;&gt;🗓 March 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/colorful-quirks&#34;&gt; colorful-quirks&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-03-04 23:01:15 +0530 IST'>🗓 March 4, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/colorful-quirks"> colorful-quirks</a></footer>
<a class="entry-link" aria-label="post link to The Darjeeling Limited (2007) by Wes Anderson" href="https://www.siddharthagolu.com/posts/cinema/darjeeling/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Reasons to Stay Alive by Matt Haig
<h2 class="entry-hint-parent">Reasons to Stay Alive by Matt Haig
</h2>
</header>
<div class="entry-content">
@ -194,39 +193,39 @@
Reasons you should read this book:
If youve ever had a panic attack. If youve ever counted the number of times the ceiling fan rotates, just so you could avoid dealing with the endless voices in your head. If youve ever felt ashamed to admit that you might be suffering from the D-word. If reading about personal stories of how people overcame their mental illnesses soothes you....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-01-28 22:28:18 &#43;0530 IST&#39;&gt;🗓 January 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/depression&#34;&gt; depression&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-01-28 22:28:18 +0530 IST'>🗓 January 28, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/depression"> depression</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a></footer>
<a class="entry-link" aria-label="post link to Reasons to Stay Alive by Matt Haig" href="https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>How to Listen to and Understand Great Music by Robert Greenberg
<h2 class="entry-hint-parent">How to Listen to and Understand Great Music by Robert Greenberg
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-01-16 22:05:06 &#43;0530 IST&#39;&gt;🗓 January 16, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/classical-music&#34;&gt; classical-music&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-01-16 22:05:06 +0530 IST'>🗓 January 16, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/classical-music"> classical-music</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a></footer>
<a class="entry-link" aria-label="post link to How to Listen to and Understand Great Music by Robert Greenberg" href="https://www.siddharthagolu.com/posts/reading/great-music/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky
<h2 class="entry-hint-parent">Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
There are few books which leave you in a mesmerizing state after having read them. You ponder about it for days to come, want to scream your head off about it to anyone whod listen, and then dwell in this fear of picking up another book because how can something else ever come close to being this perfect! I have felt this way before - first when Id finished The Complete Sherlock Holmes, later when I was left in a daze for multiple days after finishing the notorious and brilliant House of Leaves, and much more recently when I was unable to sleep after reading Why We Sleep by Matthew Walker....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-09-12 20:12:10 &#43;0530 IST&#39;&gt;🗓 September 12, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;6 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-09-12 20:12:10 +0530 IST'>🗓 September 12, 2019</span>&nbsp;·&nbsp;6 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a></footer>
<a class="entry-link" aria-label="post link to Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky" href="https://www.siddharthagolu.com/posts/reading/behave-review/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Range by David Epstein
<h2 class="entry-hint-parent">Range by David Epstein
</h2>
</header>
<div class="entry-content">
@ -234,13 +233,13 @@ There are few books which leave you in a mesmerizing state after having read the
Started with a tightly-knit structure, but faltered at the end. The last few chapters were a slog to get through - mostly because of numerous “business-class” style case studies.
Main takeaway? Other than the central idea around which the book revolves (and succinctly mentioned as the book subtitle too), the idea of interleaving is what struck me the most. I had already read about this particular method in Michael Nielsens brilliant post on Anki (“Augmenting Long-term Memory”) and it was interesting to read about it formally in the book....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-09-05 00:16:14 &#43;0530 IST&#39;&gt;🗓 September 5, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-09-05 00:16:14 +0530 IST'>🗓 September 5, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a></footer>
<a class="entry-link" aria-label="post link to Range by David Epstein" href="https://www.siddharthagolu.com/posts/reading/range-a-review/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Deference vs. Indifference
<h2 class="entry-hint-parent">Deference vs. Indifference
</h2>
</header>
<div class="entry-content">
@ -255,32 +254,32 @@ when I used to love the aroma
of the stick when it burned,
lighting up my day with the secret enchantments,...</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-03-15 22:27:30 &#43;0530 IST&#39;&gt;🗓 March 15, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/poetry&#34;&gt; poetry&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/writing&#34;&gt; writing&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-03-15 22:27:30 +0530 IST'>🗓 March 15, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/poetry"> poetry</a>&nbsp;·&nbsp;<a href="/tags/writing"> writing</a></footer>
<a class="entry-link" aria-label="post link to Deference vs. Indifference" href="https://www.siddharthagolu.com/posts/deference-vs-indifference/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>The Course of Love by Alain de Botton
<h2 class="entry-hint-parent">The Course of Love by Alain de Botton
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
The School of Life - a massively popular YouTube channel - used to be this source of solace in some turbulent times of my college life. It is not something that youd think would be cheerful and uplifting - a quick glance at some of the most popular videos of the channel would include titles such as “Why we go cold on our partners”, “Why you will marry the wrong person” etc....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-02-14 20:21:45 &#43;0530 IST&#39;&gt;🗓 February 14, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/relationship&#34;&gt; relationship&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-02-14 20:21:45 +0530 IST'>🗓 February 14, 2019</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/relationship"> relationship</a></footer>
<a class="entry-link" aria-label="post link to The Course of Love by Alain de Botton" href="https://www.siddharthagolu.com/posts/reading/the-course-of-love/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>The Stranger and The Plague by Albert Camus
<h2 class="entry-hint-parent">The Stranger and The Plague by Albert Camus
</h2>
</header>
<div class="entry-content">
<p>Preamble Philosophy has always been one of those baffling things that entice you at first by its simplicity, but as you get sucked into it more and more, you find yourself searching for the end of this labyrinthine landscape. I had my first exposure to anything related to philosophy in my second year of college when I stumbled upon The Fountainhead by Ayn Rand. At the time, it was one of the fascinating books I had ever read....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-01-21 14:39:14 &#43;0530 IST&#39;&gt;🗓 January 21, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;7 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/existentialism&#34;&gt; existentialism&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-01-21 14:39:14 +0530 IST'>🗓 January 21, 2019</span>&nbsp;·&nbsp;7 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/existentialism"> existentialism</a></footer>
<a class="entry-link" aria-label="post link to The Stranger and The Plague by Albert Camus" href="https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/"></a>
</article>
<footer class="page-footer">
@ -293,7 +292,7 @@ The School of Life - a massively popular YouTube channel - used to be this sourc
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
I find India really fascinating sometimes, even though I&rsquo;ve lived my whole life here. What the cultural multitudes and colorful festivals hide underneath is an ugly facade which threatens to break everything that has been built over the years. What I find most fascinating is how we&rsquo;ve conditioned ourselves to ignore the blatant reality and move ahead with an oblivious calm, living in shit and aspiring for the gold.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ I find India really fascinating sometimes, even though I&rsquo;ve lived my whole
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,10 +204,10 @@ I find India really fascinating sometimes, even though I&rsquo;ve lived my whole
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Annihilation of Caste(Annotated Edition) by Arundhati Roy
</h1>
<div class="post-meta">&lt;span title=&#39;2021-07-23 22:56:47 &#43;0530 IST&#39;&gt;🗓 July 23, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;
<div class="post-meta"><span title='2021-07-23 22:56:47 +0530 IST'>🗓 July 23, 2021</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>
</div>
</header>
@ -344,7 +341,7 @@ radical precisely because i) they go against the cultural norms and ii) they que
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="A series of essays on the bleak reality in India. Highly recommended.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/azadi/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,10 +201,10 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Azadi by Arundhati Roy
</h1>
<div class="post-meta">&lt;span title=&#39;2020-09-30 22:22:13 &#43;0530 IST&#39;&gt;🗓 September 30, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;
<div class="post-meta"><span title='2020-09-30 22:22:13 +0530 IST'>🗓 September 30, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>
</div>
</header>
@ -338,7 +335,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
How to fool the world and become a Billionaire I remember hearing about Elizabeth Holmes when I was in my late teens, at that impressionable age when you get hyper-inspired by reading about icons that are going to change the world. There was a profile of her in Wired, with an eye-catching image of her wearing a turtleneck black sweater holding what looked like a test-tube with a tiny amount of blood with a science-y background.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/bad-blood/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ How to fool the world and become a Billionaire I remember hearing about Elizabet
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,10 +204,10 @@ How to fool the world and become a Billionaire I remember hearing about Elizabet
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Bad Blood by John Carreyrou
</h1>
<div class="post-meta">&lt;span title=&#39;2020-05-01 23:39:18 &#43;0530 IST&#39;&gt;🗓 May 1, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/journalism&#34;&gt; journalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;
<div class="post-meta"><span title='2020-05-01 23:39:18 +0530 IST'>🗓 May 1, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/journalism"> journalism</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a>
</div>
</header>
@ -341,7 +338,7 @@ How to fool the world and become a Billionaire I remember hearing about Elizabet
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
There are few books which leave you in a mesmerizing state after having read them. You ponder about it for days to come, want to scream your head off about it to anyone who&rsquo;d listen, and then dwell in this fear of picking up another book because how can something else ever come close to being this perfect! I have felt this way before - first when I&rsquo;d finished The Complete Sherlock Holmes, later when I was left in a daze for multiple days after finishing the notorious and brilliant House of Leaves, and much more recently when I was unable to sleep after reading Why We Sleep by Matthew Walker.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/behave-review/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ There are few books which leave you in a mesmerizing state after having read the
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,10 +204,10 @@ There are few books which leave you in a mesmerizing state after having read the
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Behave: The Biology of Humans at Our Best and Worst by Robert Sapolsky
</h1>
<div class="post-meta">&lt;span title=&#39;2019-09-12 20:12:10 &#43;0530 IST&#39;&gt;🗓 September 12, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;6 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;
<div class="post-meta"><span title='2019-09-12 20:12:10 +0530 IST'>🗓 September 12, 2019</span>&nbsp;·&nbsp;6 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>
</div>
</header>
@ -382,7 +379,7 @@ that you&rsquo;ll hardly feel the complications yourself and will end up profoun
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="A powerful exploration into the psyche of Indian women and how society perpetuates the status quo">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,10 +201,10 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan
</h1>
<div class="post-meta">&lt;span title=&#39;2023-09-03 21:05:39 &#43;0530 IST&#39;&gt;🗓 September 3, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/feminism&#34;&gt; feminism&lt;/a&gt;
<div class="post-meta"><span title='2023-09-03 21:05:39 +0530 IST'>🗓 September 3, 2023</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/feminism"> feminism</a>
</div>
</header>
@ -368,7 +365,7 @@ When we asked women about their biggest fear, it is invariably about loss of fam
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="If you want to understand how the opioid crisis began, read this">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/empire-of-pain/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,10 +201,10 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Empire of Pain: The Secret History of the Sackler Dynasty
</h1>
<div class="post-meta">&lt;span title=&#39;2023-06-21 08:49:32 &#43;0530 IST&#39;&gt;🗓 June 21, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/public-health&#34;&gt; public-health&lt;/a&gt;
<div class="post-meta"><span title='2023-06-21 08:49:32 +0530 IST'>🗓 June 21, 2023</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/public-health"> public-health</a>
</div>
</header>
@ -330,7 +327,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="A book about time and our relationship with it. Recommended.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/four-thousand-weeks/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,10 +201,10 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Four Thousand Weeks: Time Management for Mortals by Oliver Burkeman
</h1>
<div class="post-meta">&lt;span title=&#39;2022-09-21 07:35:24 &#43;0530 IST&#39;&gt;🗓 September 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;
<div class="post-meta"><span title='2022-09-21 07:35:24 +0530 IST'>🗓 September 21, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a>
</div>
</header>
@ -345,7 +342,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
World history in a nutshell More than 1100 pages, this behemoth of a book still fails to capture the whole essence of world history - and rightly so. How can you combine over 2000 years of human history and still do justice to every element? But the unique manner in which this book - or more appropriately, collection of letters - has been written, it shines brightly amongst the plethora of history books you can find on this vast subject of world history.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/glimpses-of-world-history/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ World history in a nutshell More than 1100 pages, this behemoth of a book still
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,16 +204,13 @@ World history in a nutshell More than 1100 pages, this behemoth of a book still
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Glimpses of World History by Jawaharlal Nehru
</h1>
<div class="post-meta">&lt;span title=&#39;2020-03-12 23:23:19 &#43;0530 IST&#39;&gt;🗓 March 12, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/letters&#34;&gt; letters&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;
<div class="post-meta"><span title='2020-03-12 23:23:19 +0530 IST'>🗓 March 12, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/letters"> letters</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/world_history.jpg" alt="">
</figure>
<div class="post-content"><p><a href="https://www.goodreads.com/review/show/2891482793">Check it out on Goodreads</a></p>
<hr>
<h2 id="world-history-in-a-nutshell">World history in a nutshell<a hidden class="anchor" aria-hidden="true" href="#world-history-in-a-nutshell">#</a></h2>
@ -339,7 +333,7 @@ World history in a nutshell More than 1100 pages, this behemoth of a book still
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/great-music/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ I have been a lover of music since my early childhood - runs in the family - and
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,16 +204,13 @@ I have been a lover of music since my early childhood - runs in the family - and
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
How to Listen to and Understand Great Music by Robert Greenberg
</h1>
<div class="post-meta">&lt;span title=&#39;2020-01-16 22:05:06 &#43;0530 IST&#39;&gt;🗓 January 16, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/classical-music&#34;&gt; classical-music&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;
<div class="post-meta"><span title='2020-01-16 22:05:06 +0530 IST'>🗓 January 16, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/classical-music"> classical-music</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/ttc_great_music.jpg" alt="">
</figure>
<div class="post-content"><p><a href="https://www.goodreads.com/review/show/3030817409">Check it out on Goodreads</a></p>
<hr>
<p>I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it. Nobody else in my own vicinity that is. It didn&rsquo;t play on the radio, you won&rsquo;t hear it playing on any of the countless music channels and certainly, nobody was going on tours giving live performances.</p>
@ -338,7 +332,7 @@ I have been a lover of music since my early childhood - runs in the family - and
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
I had picked up this one thinking it to be an autobiography, and with an expectation that it&rsquo;ll cover Rajan&rsquo;s tussles with the government in more details. I was pleasantly surprised to find instead a good collection of technical essays covering the workings of RBI, and economics in general. If you&rsquo;re looking for a good explanatory work in the field of Economics (and especially those concerning India and its policies), you&rsquo;ll enjoy this.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ I had picked up this one thinking it to be an autobiography, and with an expecta
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,10 +204,10 @@ I had picked up this one thinking it to be an autobiography, and with an expecta
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
I Do What I Do by Raghuram Rajan
</h1>
<div class="post-meta">&lt;span title=&#39;2020-12-19 09:24:30 &#43;0530 IST&#39;&gt;🗓 December 19, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/economics&#34;&gt; economics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;
<div class="post-meta"><span title='2020-12-19 09:24:30 +0530 IST'>🗓 December 19, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/economics"> economics</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a>
</div>
</header>
@ -332,7 +329,7 @@ I had picked up this one thinking it to be an autobiography, and with an expecta
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="A gentle introduction to the study of buildings and the way they enable societal interactions.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/life-between-buildings/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,10 +201,10 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Life Between Buildings by Jan Gehl
</h1>
<div class="post-meta">&lt;span title=&#39;2022-04-21 09:04:49 &#43;0530 IST&#39;&gt;🗓 April 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/architecture&#34;&gt; architecture&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/society&#34;&gt; society&lt;/a&gt;
<div class="post-meta"><span title='2022-04-21 09:04:49 +0530 IST'>🗓 April 21, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/architecture"> architecture</a>&nbsp;·&nbsp;<a href="/tags/society"> society</a>
</div>
</header>
@ -329,7 +326,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -12,10 +12,7 @@ I have had a very curious relationship with religion, although now that I talk t
As is the norm for every child brought up in religion, I used to consider myself special believing that I had a &ldquo;personal relationship&rdquo; with God.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/parenting/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -40,7 +37,7 @@ As is the norm for every child brought up in religion, I used to consider myself
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -210,10 +207,10 @@ As is the norm for every child brought up in religion, I used to consider myself
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Parenting Beyond Belief by Dale McGowan
</h1>
<div class="post-meta">&lt;span title=&#39;2021-03-18 22:14:21 &#43;0530 IST&#39;&gt;🗓 March 18, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/parenting&#34;&gt; parenting&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;
<div class="post-meta"><span title='2021-03-18 22:14:21 +0530 IST'>🗓 March 18, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/parenting"> parenting</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>
</div>
</header>
@ -345,7 +342,7 @@ As is the norm for every child brought up in religion, I used to consider myself
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -12,10 +12,7 @@ Started with a tightly-knit structure, but faltered at the end. The last few cha
Main takeaway? Other than the central idea around which the book revolves (and succinctly mentioned as the book subtitle too), the idea of interleaving is what struck me the most. I had already read about this particular method in Michael Nielsen&rsquo;s brilliant post on Anki (&ldquo;Augmenting Long-term Memory&rdquo;) and it was interesting to read about it formally in the book.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/range-a-review/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -40,7 +37,7 @@ Main takeaway? Other than the central idea around which the book revolves (and s
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -210,16 +207,13 @@ Main takeaway? Other than the central idea around which the book revolves (and s
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Range by David Epstein
</h1>
<div class="post-meta">&lt;span title=&#39;2019-09-05 00:16:14 &#43;0530 IST&#39;&gt;🗓 September 5, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;
<div class="post-meta"><span title='2019-09-05 00:16:14 +0530 IST'>🗓 September 5, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/range_kindle.jpg" alt="">
</figure>
<div class="post-content"><p><a href="https://www.goodreads.com/review/show/2918108710">Check it out on Goodreads</a></p>
<hr>
<p>Started with a tightly-knit structure, but faltered at the end. The last few chapters were a slog to get through - mostly because of numerous &ldquo;business-class&rdquo; style case studies.</p>
@ -344,7 +338,7 @@ post</strong> on Anki (<a href="http://augmentingcognition.com/ltm.html">&ldquo;
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -12,10 +12,7 @@ Reasons you should read this book:
If you&rsquo;ve ever had a panic attack. If you&rsquo;ve ever counted the number of times the ceiling fan rotates, just so you could avoid dealing with the endless voices in your head. If you&rsquo;ve ever felt ashamed to admit that you might be suffering from the D-word. If reading about personal stories of how people overcame their mental illnesses soothes you.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -40,7 +37,7 @@ If you&rsquo;ve ever had a panic attack. If you&rsquo;ve ever counted the number
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -210,16 +207,13 @@ If you&rsquo;ve ever had a panic attack. If you&rsquo;ve ever counted the number
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Reasons to Stay Alive by Matt Haig
</h1>
<div class="post-meta">&lt;span title=&#39;2020-01-28 22:28:18 &#43;0530 IST&#39;&gt;🗓 January 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/depression&#34;&gt; depression&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;
<div class="post-meta"><span title='2020-01-28 22:28:18 +0530 IST'>🗓 January 28, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/depression"> depression</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/reasons_to_stay_alive.jpg" alt="">
</figure>
<div class="post-content"><p><a href="https://www.goodreads.com/review/show/3161153699">Check it out on Goodreads</a></p>
<hr>
<p><strong>Reasons you should read this book:</strong></p>
@ -343,7 +337,7 @@ If you&rsquo;ve ever had a panic attack. If you&rsquo;ve ever counted the number
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -12,10 +12,7 @@ Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/running-murakami/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -40,7 +37,7 @@ I have no affinity for running, even for short jogs, and much less for wanting t
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -210,10 +207,10 @@ I have no affinity for running, even for short jogs, and much less for wanting t
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
What I Talk About When I Talk About Running by Haruki Murakami
</h1>
<div class="post-meta">&lt;span title=&#39;2021-08-14 20:09:56 &#43;0530 IST&#39;&gt;🗓 August 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/health&#34;&gt; health&lt;/a&gt;
<div class="post-meta"><span title='2021-08-14 20:09:56 +0530 IST'>🗓 August 14, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/health"> health</a>
</div>
</header>
@ -356,7 +353,7 @@ up. And this is what I thought: If there are this many visible parts of my body
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
Now that I&rsquo;ve moved away from reading fiction, I find that I face a lot of inertia to pick up something purely for pleasure. Maybe this is a nasty by-product of wanting to be as &ldquo;productive&rdquo; as possible. But the more I have drifted away from reading for pleasure, more mechanical the whole process has become for me. Partly to avoid this feeling, and partly because of my shame at seeing my bookshelf filled with dusty unread books, I picked up this one to assuage my feelings of guilt.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/shame-rushdie/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ Now that I&rsquo;ve moved away from reading fiction, I find that I face a lot of
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,10 +204,10 @@ Now that I&rsquo;ve moved away from reading fiction, I find that I face a lot of
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Shame by Salman Rushdie
</h1>
<div class="post-meta">&lt;span title=&#39;2021-08-17 22:55:02 &#43;0530 IST&#39;&gt;🗓 August 17, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;
<div class="post-meta"><span title='2021-08-17 22:55:02 +0530 IST'>🗓 August 17, 2021</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>
</div>
</header>
@ -336,7 +333,7 @@ Now that I&rsquo;ve moved away from reading fiction, I find that I face a lot of
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="A series of blog posts that unfortunately became a book. Not recommended.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/so-good-newport/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,10 +201,10 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
So Good They Can&#39;t Ignore You - Cal Newport
</h1>
<div class="post-meta">&lt;span title=&#39;2023-03-29 15:04:13 &#43;0530 IST&#39;&gt;🗓 March 29, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/fast-food-books&#34;&gt; fast-food-books&lt;/a&gt;
<div class="post-meta"><span title='2023-03-29 15:04:13 +0530 IST'>🗓 March 29, 2023</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a>&nbsp;·&nbsp;<a href="/tags/fast-food-books"> fast-food-books</a>
</div>
</header>
@ -331,7 +328,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
Reading fiction has always been a double-edged sword for me. Some of the most intimate moments I&rsquo;ve spent alone is while reading fictional stories, while at the same time, feeling a pang of disappointment for myself because I wasn&rsquo;t doing anything &ldquo;productive.&rdquo; Is this mere entertainment? Am I just escaping my real-life responsibilities and reading stories of make-believe? While I still haven&rsquo;t found sincere answers to these questions, I&rsquo;ve grown more confident of what I enjoy and what I don&rsquo;t, which has consequently helped me find peace with this conflict.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/stoner/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ Reading fiction has always been a double-edged sword for me. Some of the most in
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,16 +204,13 @@ Reading fiction has always been a double-edged sword for me. Some of the most in
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Stoner by John Williams
</h1>
<div class="post-meta">&lt;span title=&#39;2020-06-28 19:45:36 &#43;0530 IST&#39;&gt;🗓 June 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;
<div class="post-meta"><span title='2020-06-28 19:45:36 +0530 IST'>🗓 June 28, 2020</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/stoner.jpg" alt="">
</figure>
<div class="post-content"><p><a href="https://www.goodreads.com/review/show/1389128822">Check it out on Goodreads</a></p>
<hr>
<p>Reading fiction has always been a double-edged sword for me. Some of the most intimate moments I&rsquo;ve spent alone is while reading fictional stories, while at the same time, feeling a pang of disappointment for myself because I wasn&rsquo;t doing anything &ldquo;productive.&rdquo; Is this mere entertainment? Am I just escaping my real-life responsibilities and reading stories of make-believe? While I still haven&rsquo;t found sincere answers to these questions, I&rsquo;ve grown more confident of what I enjoy and what I don&rsquo;t, which has consequently helped me find peace with this conflict. Over the years, I&rsquo;ve realized that reading good literature is therapeutic for me - not to be used as an afterthought but essential to keep me functional.</p>
@ -346,7 +340,7 @@ Reading fiction has always been a double-edged sword for me. Some of the most in
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -11,10 +11,7 @@
The School of Life - a massively popular YouTube channel - used to be this source of solace in some turbulent times of my college life. It is not something that you&rsquo;d think would be cheerful and uplifting - a quick glance at some of the most popular videos of the channel would include titles such as &ldquo;Why we go cold on our partners&rdquo;, &ldquo;Why you will marry the wrong person&rdquo; etc.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/the-course-of-love/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -39,7 +36,7 @@ The School of Life - a massively popular YouTube channel - used to be this sourc
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -207,16 +204,13 @@ The School of Life - a massively popular YouTube channel - used to be this sourc
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
The Course of Love by Alain de Botton
</h1>
<div class="post-meta">&lt;span title=&#39;2019-02-14 20:21:45 &#43;0530 IST&#39;&gt;🗓 February 14, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/relationship&#34;&gt; relationship&lt;/a&gt;
<div class="post-meta"><span title='2019-02-14 20:21:45 +0530 IST'>🗓 February 14, 2019</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/relationship"> relationship</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/the_course_of_love.jpg" alt="">
</figure>
<div class="post-content"><p><a href="https://www.goodreads.com/review/show/1855122398">Check it out on Goodreads</a></p>
<hr>
<p>The School of Life - a massively popular YouTube channel - used to be this source of solace in some turbulent times of my college life.
@ -349,7 +343,7 @@ other person respects and trusts us enough to think we should understand their u
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="On my journey to learn more about philosophy - the first step into the realms of existentialism">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,19 +201,16 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
The Stranger and The Plague by Albert Camus
</h1>
<div class="post-description">
On my journey to learn more about philosophy - the first step into the realms of existentialism
</div>
<div class="post-meta">&lt;span title=&#39;2019-01-21 14:39:14 &#43;0530 IST&#39;&gt;🗓 January 21, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;7 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/existentialism&#34;&gt; existentialism&lt;/a&gt;
<div class="post-meta"><span title='2019-01-21 14:39:14 +0530 IST'>🗓 January 21, 2019</span>&nbsp;·&nbsp;7 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/existentialism"> existentialism</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/The_Bookshelf.jpg" alt="">
</figure>
<div class="post-content"><h1 id="preamble">Preamble<a hidden class="anchor" aria-hidden="true" href="#preamble">#</a></h1>
<p>Philosophy has always been one of those baffling things that entice you at first by its simplicity, but as you get sucked into it more and more, you find yourself searching for the end of this labyrinthine landscape. I had my first exposure to anything related to philosophy in my second year of college when I stumbled upon <strong>The Fountainhead by Ayn Rand</strong>. At the time, it was one of the fascinating books I had ever read. I distinctly remember sitting down with the book at 9 PM having had my dinner, and as the custom goes, was looking forward to reading anything that could distract me from the mountain load of coursework that I had to finish for the upcoming semester exams. I became so engrossed in the story that when I finished the book and went outside to take in a fresh breath of air - I was startled to discover that the sunlight was already shining throughout the corridor - it was 7 o&rsquo;clock in the morning!</p>
<p>However, aside from a couple of books here and there, I was pretty ignorant about the whole field of philosophy . It was not until my last year of college when my then-girlfriend introduced me to different sub-fields of philosophy, and consequently, the names like <em>Albert Camus</em>, <em>Bertrand Russell</em>, and <em>Friedrich Nietzsche</em> and their ideas started sounding familiar. From all the ideas out there, <strong>Existentialism</strong> was something that drew me in the most.</p>
@ -383,7 +377,7 @@ hope that I keep myself motivated enough to finish all these books.</p>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,10 +10,7 @@
<meta name="description" content="The ethical dilemma of eating. Highly recommended!">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/the-way-we-eat/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -38,7 +35,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -204,10 +201,10 @@
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
The Way We Eat: Why Our Food Choices Matter by Peter Singer
</h1>
<div class="post-meta">&lt;span title=&#39;2021-09-01 10:43:25 &#43;0530 IST&#39;&gt;🗓 September 1, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/review&#34;&gt; review&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/debating-ethics&#34;&gt; debating-ethics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animal-cruelty&#34;&gt; animal-cruelty&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;
<div class="post-meta"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/review"> review</a>&nbsp;·&nbsp;<a href="/tags/debating-ethics"> debating-ethics</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/animal-cruelty"> animal-cruelty</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>
</div>
</header>
@ -342,7 +339,7 @@
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -12,10 +12,7 @@ A disappointing jumble of thoughts Disappointed.
I am an atheist interested in the power of mindfulness and the whole world of so-called spirituality, so naturally, I am the ideal audience that Sam Harris is looking for. But it disappointed in almost every domain that I had expectations in. Using deep-sounding difficult words and wrapping them in an almost mythical aura of &ldquo;Consciousness&rdquo;, this one was a huge letdown.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/waking-up/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -40,7 +37,7 @@ I am an atheist interested in the power of mindfulness and the whole world of so
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -210,16 +207,13 @@ I am an atheist interested in the power of mindfulness and the whole world of so
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Waking Up by Sam Harris
</h1>
<div class="post-meta">&lt;span title=&#39;2020-04-15 23:31:08 &#43;0530 IST&#39;&gt;🗓 April 15, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/meditation&#34;&gt; meditation&lt;/a&gt;
<div class="post-meta"><span title='2020-04-15 23:31:08 +0530 IST'>🗓 April 15, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/meditation"> meditation</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/waking_up.jpg" alt="">
</figure>
<div class="post-content"><p><a href="https://www.goodreads.com/review/show/3272821691">Check it out on Goodreads</a></p>
<hr>
<h2 id="a-disappointing-jumble-of-thoughts">A disappointing jumble of thoughts<a hidden class="anchor" aria-hidden="true" href="#a-disappointing-jumble-of-thoughts">#</a></h2>
@ -338,7 +332,7 @@ I am an atheist interested in the power of mindfulness and the whole world of so
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -20,10 +20,7 @@ mutating inside my head as if a colony of ants was given
an open invitation to a room full of sugary syrup.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/posts/scared-in-lockdown/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<script defer crossorigin="anonymous" src="/assets/js/highlight.f413e19d0714851f6474e7ee9632408e58ac146fbdbe62747134bea2fa3415e0.js" integrity="sha256-9BPhnQcUhR9kdOfuljJAjlisFG&#43;9vmJ0cTS&#43;ovo0FeA="
onload="hljs.initHighlightingOnLoad();"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -48,7 +45,7 @@ an open invitation to a room full of sugary syrup.">
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -234,16 +231,13 @@ an open invitation to a room full of sugary syrup."/>
<article class="post-single">
<header class="post-header">
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
<h1 class="post-title">
<h1 class="post-title entry-hint-parent">
Fear
</h1>
<div class="post-meta">&lt;span title=&#39;2020-04-25 23:45:30 &#43;0530 IST&#39;&gt;🗓 April 25, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/poetry&#34;&gt; poetry&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/writing&#34;&gt; writing&lt;/a&gt;
<div class="post-meta"><span title='2020-04-25 23:45:30 +0530 IST'>🗓 April 25, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/poetry"> poetry</a>&nbsp;·&nbsp;<a href="/tags/writing"> writing</a>
</div>
</header>
<figure class="entry-cover"><img loading="lazy" src="https://www.siddharthagolu.com/images/fear.png" alt="">
</figure>
<div class="post-content"><p><a href="https://www.instagram.com/p/B_Znc5AB_hK/">Check it out on Instagram</a></p>
<hr>
<p>I&rsquo;m scared.</p>
@ -404,7 +398,7 @@ it has to.</p>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,9 +10,8 @@
<meta name="description" content="search across all the posts">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/search/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style"><link crossorigin="anonymous" rel="preload" as="fetch" href="../index.json">
<script defer crossorigin="anonymous" src="/assets/js/search.fc4d3d259dc135ab09b5eda7510566d64eb9fe1769e5f728f1b0a7e2a992b39e.js" integrity="sha256-/E09JZ3BNasJte2nUQVm1k65/hdp5fco8bCn4qmSs54="></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style"><link crossorigin="anonymous" rel="preload" as="fetch" href="../index.json">
<script defer crossorigin="anonymous" src="/assets/js/search.40bc872e663a93629c28470a60af5070cb451de1a65f242264488d087eabd131.js" integrity="sha256-QLyHLmY6k2KcKEcKYK9QcMtFHeGmXyQiZEiNCH6r0TE="></script>
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -206,13 +205,13 @@
<div id="searchbox">
<input id="searchInput" autofocus placeholder="Start typing..."
aria-label="search" type="search" autocomplete="off">
aria-label="search" type="search" autocomplete="off" maxlength="64">
<ul id="searchResults" aria-label="search results"></ul>
</div>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/animal-cruelty/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
animal-cruelty
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/animal-cruelty/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,19 +158,19 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>The Way We Eat: Why Our Food Choices Matter by Peter Singer
<h2 class="entry-hint-parent">The Way We Eat: Why Our Food Choices Matter by Peter Singer
</h2>
</header>
<div class="entry-content">
<p>The ethical dilemma of eating. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-09-01 10:43:25 &#43;0530 IST&#39;&gt;🗓 September 1, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/review&#34;&gt; review&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/debating-ethics&#34;&gt; debating-ethics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animal-cruelty&#34;&gt; animal-cruelty&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/review"> review</a>&nbsp;·&nbsp;<a href="/tags/debating-ethics"> debating-ethics</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/animal-cruelty"> animal-cruelty</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to The Way We Eat: Why Our Food Choices Matter by Peter Singer" href="https://www.siddharthagolu.com/posts/reading/the-way-we-eat/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>animal-cruelty on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/animal-cruelty/</link>
@ -11,15 +11,14 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Wed, 01 Sep 2021 10:43:25 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/animal-cruelty/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Wed, 01 Sep 2021 10:43:25 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/animal-cruelty/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>The Way We Eat: Why Our Food Choices Matter by Peter Singer</title>
<link>https://www.siddharthagolu.com/posts/reading/the-way-we-eat/</link>
<pubDate>Wed, 01 Sep 2021 10:43:25 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-way-we-eat/</guid>
<description>The ethical dilemma of eating. Highly recommended!</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/animation/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
animation
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/animation/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,7 +158,7 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Waking Life (2001) by Richard Linklater
<h2 class="entry-hint-parent">Waking Life (2001) by Richard Linklater
</h2>
</header>
<div class="entry-content">
@ -167,13 +166,13 @@
There are films which you wish you had watched earlier in life, and there are others which dont make sense until you have had your fair share of world experiences. Waking Life falls in the former category.
The college sophomore me would have been really excited about discussing vague notions of self and freedom and free will and morality and dreams - and dont get me wrong, mid-twenties me is equally as excited about these things as my former self, if not more so - but the problem lies in the superficiality of it all....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-11-27 22:57:50 &#43;0530 IST&#39;&gt;🗓 November 27, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animation&#34;&gt; animation&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-11-27 22:57:50 +0530 IST'>🗓 November 27, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/animation"> animation</a></footer>
<a class="entry-link" aria-label="post link to Waking Life (2001) by Richard Linklater" href="https://www.siddharthagolu.com/posts/cinema/waking-life/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>animation on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/animation/</link>
@ -11,17 +11,16 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Fri, 27 Nov 2020 22:57:50 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/animation/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Fri, 27 Nov 2020 22:57:50 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/animation/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Waking Life (2001) by Richard Linklater</title>
<link>https://www.siddharthagolu.com/posts/cinema/waking-life/</link>
<pubDate>Fri, 27 Nov 2020 22:57:50 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/waking-life/</guid>
<description>Verdict: ★ ★ ★ ☆ ☆ Check it out on Letterboxd
There are films which you wish you had watched earlier in life, and there are others which don&amp;rsquo;t make sense until you have had your fair share of world experiences. Waking Life falls in the former category.
The college sophomore me would have been really excited about discussing vague notions of self and freedom and free will and morality and dreams - and don&amp;rsquo;t get me wrong, mid-twenties me is equally as excited about these things as my former self, if not more so - but the problem lies in the superficiality of it all.</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/architecture/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
architecture
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/architecture/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,19 +158,19 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Life Between Buildings by Jan Gehl
<h2 class="entry-hint-parent">Life Between Buildings by Jan Gehl
</h2>
</header>
<div class="entry-content">
<p>A gentle introduction to the study of buildings and the way they enable societal interactions.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-04-21 09:04:49 &#43;0530 IST&#39;&gt;🗓 April 21, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/architecture&#34;&gt; architecture&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/society&#34;&gt; society&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-04-21 09:04:49 +0530 IST'>🗓 April 21, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/architecture"> architecture</a>&nbsp;·&nbsp;<a href="/tags/society"> society</a></footer>
<a class="entry-link" aria-label="post link to Life Between Buildings by Jan Gehl" href="https://www.siddharthagolu.com/posts/reading/life-between-buildings/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>architecture on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/architecture/</link>
@ -11,15 +11,14 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Thu, 21 Apr 2022 09:04:49 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/architecture/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Thu, 21 Apr 2022 09:04:49 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/architecture/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Life Between Buildings by Jan Gehl</title>
<link>https://www.siddharthagolu.com/posts/reading/life-between-buildings/</link>
<pubDate>Thu, 21 Apr 2022 09:04:49 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/life-between-buildings/</guid>
<description>A gentle introduction to the study of buildings and the way they enable societal interactions.</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/asia/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
asia
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/asia/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,31 +158,31 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>After Life (1998) by Hirokazu Kore-eda
<h2 class="entry-hint-parent">After Life (1998) by Hirokazu Kore-eda
</h2>
</header>
<div class="entry-content">
<p>An interesting take on life, seen through the lens of afterlife. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-05-01 22:41:55 &#43;0530 IST&#39;&gt;🗓 May 1, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-05-01 22:41:55 +0530 IST'>🗓 May 1, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to After Life (1998) by Hirokazu Kore-eda" href="https://www.siddharthagolu.com/posts/cinema/after-life/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>3 Iron (2004) by Kim Ki-duk
<h2 class="entry-hint-parent">3 Iron (2004) by Kim Ki-duk
</h2>
</header>
<div class="entry-content">
<p>A film where everything is conveyed through glances.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-11-14 10:46:40 &#43;0530 IST&#39;&gt;🗓 November 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/minimalism&#34;&gt; minimalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/minimalism"> minimalism</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to 3 Iron (2004) by Kim Ki-duk" href="https://www.siddharthagolu.com/posts/cinema/3-iron/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>asia on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/asia/</link>
@ -11,24 +11,21 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sun, 01 May 2022 22:41:55 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/asia/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Sun, 01 May 2022 22:41:55 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/asia/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>After Life (1998) by Hirokazu Kore-eda</title>
<link>https://www.siddharthagolu.com/posts/cinema/after-life/</link>
<pubDate>Sun, 01 May 2022 22:41:55 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/after-life/</guid>
<description>An interesting take on life, seen through the lens of afterlife. Highly recommended!</description>
</item>
<item>
<title>3 Iron (2004) by Kim Ki-duk</title>
<link>https://www.siddharthagolu.com/posts/cinema/3-iron/</link>
<pubDate>Sun, 14 Nov 2021 10:46:40 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/3-iron/</guid>
<description>A film where everything is conveyed through glances.</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/audiobook/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
audiobook
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/audiobook/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,19 +158,19 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Empire of Pain: The Secret History of the Sackler Dynasty
<h2 class="entry-hint-parent">Empire of Pain: The Secret History of the Sackler Dynasty
</h2>
</header>
<div class="entry-content">
<p>If you want to understand how the opioid crisis began, read this</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-06-21 08:49:32 &#43;0530 IST&#39;&gt;🗓 June 21, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/public-health&#34;&gt; public-health&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-06-21 08:49:32 +0530 IST'>🗓 June 21, 2023</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/public-health"> public-health</a></footer>
<a class="entry-link" aria-label="post link to Empire of Pain: The Secret History of the Sackler Dynasty" href="https://www.siddharthagolu.com/posts/reading/empire-of-pain/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>What I Talk About When I Talk About Running by Haruki Murakami
<h2 class="entry-hint-parent">What I Talk About When I Talk About Running by Haruki Murakami
</h2>
</header>
<div class="entry-content">
@ -179,39 +178,39 @@
Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-08-14 20:09:56 &#43;0530 IST&#39;&gt;🗓 August 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/health&#34;&gt; health&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-08-14 20:09:56 +0530 IST'>🗓 August 14, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/health"> health</a></footer>
<a class="entry-link" aria-label="post link to What I Talk About When I Talk About Running by Haruki Murakami" href="https://www.siddharthagolu.com/posts/reading/running-murakami/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Bad Blood by John Carreyrou
<h2 class="entry-hint-parent">Bad Blood by John Carreyrou
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
How to fool the world and become a Billionaire I remember hearing about Elizabeth Holmes when I was in my late teens, at that impressionable age when you get hyper-inspired by reading about icons that are going to change the world. There was a profile of her in Wired, with an eye-catching image of her wearing a turtleneck black sweater holding what looked like a test-tube with a tiny amount of blood with a science-y background....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-05-01 23:39:18 &#43;0530 IST&#39;&gt;🗓 May 1, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/journalism&#34;&gt; journalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-05-01 23:39:18 +0530 IST'>🗓 May 1, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/journalism"> journalism</a>&nbsp;·&nbsp;<a href="/tags/audiobook"> audiobook</a></footer>
<a class="entry-link" aria-label="post link to Bad Blood by John Carreyrou" href="https://www.siddharthagolu.com/posts/reading/bad-blood/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>How to Listen to and Understand Great Music by Robert Greenberg
<h2 class="entry-hint-parent">How to Listen to and Understand Great Music by Robert Greenberg
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-01-16 22:05:06 &#43;0530 IST&#39;&gt;🗓 January 16, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/classical-music&#34;&gt; classical-music&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-01-16 22:05:06 +0530 IST'>🗓 January 16, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/classical-music"> classical-music</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a></footer>
<a class="entry-link" aria-label="post link to How to Listen to and Understand Great Music by Robert Greenberg" href="https://www.siddharthagolu.com/posts/reading/great-music/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>audiobook on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/audiobook/</link>
@ -11,46 +11,39 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Wed, 21 Jun 2023 08:49:32 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/audiobook/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Wed, 21 Jun 2023 08:49:32 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/audiobook/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Empire of Pain: The Secret History of the Sackler Dynasty</title>
<link>https://www.siddharthagolu.com/posts/reading/empire-of-pain/</link>
<pubDate>Wed, 21 Jun 2023 08:49:32 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/empire-of-pain/</guid>
<description>If you want to understand how the opioid crisis began, read this</description>
</item>
<item>
<title>What I Talk About When I Talk About Running by Haruki Murakami</title>
<link>https://www.siddharthagolu.com/posts/reading/running-murakami/</link>
<pubDate>Sat, 14 Aug 2021 20:09:56 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/running-murakami/</guid>
<description>Check it out on Goodreads
Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity.</description>
</item>
<item>
<title>Bad Blood by John Carreyrou</title>
<link>https://www.siddharthagolu.com/posts/reading/bad-blood/</link>
<pubDate>Fri, 01 May 2020 23:39:18 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/bad-blood/</guid>
<description>Check it out on Goodreads
How to fool the world and become a Billionaire I remember hearing about Elizabeth Holmes when I was in my late teens, at that impressionable age when you get hyper-inspired by reading about icons that are going to change the world. There was a profile of her in Wired, with an eye-catching image of her wearing a turtleneck black sweater holding what looked like a test-tube with a tiny amount of blood with a science-y background.</description>
</item>
<item>
<title>How to Listen to and Understand Great Music by Robert Greenberg</title>
<link>https://www.siddharthagolu.com/posts/reading/great-music/</link>
<pubDate>Thu, 16 Jan 2020 22:05:06 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/great-music/</guid>
<description>Check it out on Goodreads
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it.</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/career-advice/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
career-advice
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/career-advice/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,19 +158,19 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>So Good They Can&#39;t Ignore You - Cal Newport
<h2 class="entry-hint-parent">So Good They Can&#39;t Ignore You - Cal Newport
</h2>
</header>
<div class="entry-content">
<p>A series of blog posts that unfortunately became a book. Not recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-03-29 15:04:13 &#43;0530 IST&#39;&gt;🗓 March 29, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/fast-food-books&#34;&gt; fast-food-books&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-03-29 15:04:13 +0530 IST'>🗓 March 29, 2023</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a>&nbsp;·&nbsp;<a href="/tags/fast-food-books"> fast-food-books</a></footer>
<a class="entry-link" aria-label="post link to So Good They Can&#39;t Ignore You - Cal Newport" href="https://www.siddharthagolu.com/posts/reading/so-good-newport/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Range by David Epstein
<h2 class="entry-hint-parent">Range by David Epstein
</h2>
</header>
<div class="entry-content">
@ -179,13 +178,13 @@
Started with a tightly-knit structure, but faltered at the end. The last few chapters were a slog to get through - mostly because of numerous “business-class” style case studies.
Main takeaway? Other than the central idea around which the book revolves (and succinctly mentioned as the book subtitle too), the idea of interleaving is what struck me the most. I had already read about this particular method in Michael Nielsens brilliant post on Anki (“Augmenting Long-term Memory”) and it was interesting to read about it formally in the book....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-09-05 00:16:14 &#43;0530 IST&#39;&gt;🗓 September 5, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/understanding-ourselves&#34;&gt; understanding-ourselves&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-09-05 00:16:14 +0530 IST'>🗓 September 5, 2019</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/understanding-ourselves"> understanding-ourselves</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a></footer>
<a class="entry-link" aria-label="post link to Range by David Epstein" href="https://www.siddharthagolu.com/posts/reading/range-a-review/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>career-advice on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/career-advice/</link>
@ -11,26 +11,23 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Wed, 29 Mar 2023 15:04:13 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/career-advice/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Wed, 29 Mar 2023 15:04:13 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/career-advice/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>So Good They Can&#39;t Ignore You - Cal Newport</title>
<link>https://www.siddharthagolu.com/posts/reading/so-good-newport/</link>
<pubDate>Wed, 29 Mar 2023 15:04:13 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/so-good-newport/</guid>
<description>A series of blog posts that unfortunately became a book. Not recommended.</description>
</item>
<item>
<title>Range by David Epstein</title>
<link>https://www.siddharthagolu.com/posts/reading/range-a-review/</link>
<pubDate>Thu, 05 Sep 2019 00:16:14 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/range-a-review/</guid>
<description>Check it out on Goodreads
Started with a tightly-knit structure, but faltered at the end. The last few chapters were a slog to get through - mostly because of numerous &amp;ldquo;business-class&amp;rdquo; style case studies.
Main takeaway? Other than the central idea around which the book revolves (and succinctly mentioned as the book subtitle too), the idea of interleaving is what struck me the most. I had already read about this particular method in Michael Nielsen&amp;rsquo;s brilliant post on Anki (&amp;ldquo;Augmenting Long-term Memory&amp;rdquo;) and it was interesting to read about it formally in the book.</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/classical-music/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
classical-music
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/classical-music/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,20 +158,20 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>How to Listen to and Understand Great Music by Robert Greenberg
<h2 class="entry-hint-parent">How to Listen to and Understand Great Music by Robert Greenberg
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-01-16 22:05:06 &#43;0530 IST&#39;&gt;🗓 January 16, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/classical-music&#34;&gt; classical-music&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/history&#34;&gt; history&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-01-16 22:05:06 +0530 IST'>🗓 January 16, 2020</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/classical-music"> classical-music</a>&nbsp;·&nbsp;<a href="/tags/history"> history</a></footer>
<a class="entry-link" aria-label="post link to How to Listen to and Understand Great Music by Robert Greenberg" href="https://www.siddharthagolu.com/posts/reading/great-music/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>classical-music on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/classical-music/</link>
@ -11,16 +11,15 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Thu, 16 Jan 2020 22:05:06 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/classical-music/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Thu, 16 Jan 2020 22:05:06 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/classical-music/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How to Listen to and Understand Great Music by Robert Greenberg</title>
<link>https://www.siddharthagolu.com/posts/reading/great-music/</link>
<pubDate>Thu, 16 Jan 2020 22:05:06 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/great-music/</guid>
<description>Check it out on Goodreads
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it.</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/colorful-quirks/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
colorful-quirks
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/colorful-quirks/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,19 +158,19 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>The Darjeeling Limited (2007) by Wes Anderson
<h2 class="entry-hint-parent">The Darjeeling Limited (2007) by Wes Anderson
</h2>
</header>
<div class="entry-content">
<p>Wes Anderson and his colorful quirks</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-03-04 23:01:15 &#43;0530 IST&#39;&gt;🗓 March 4, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/colorful-quirks&#34;&gt; colorful-quirks&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-03-04 23:01:15 +0530 IST'>🗓 March 4, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/colorful-quirks"> colorful-quirks</a></footer>
<a class="entry-link" aria-label="post link to The Darjeeling Limited (2007) by Wes Anderson" href="https://www.siddharthagolu.com/posts/cinema/darjeeling/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>colorful-quirks on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/colorful-quirks/</link>
@ -11,15 +11,14 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Wed, 04 Mar 2020 23:01:15 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/colorful-quirks/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Wed, 04 Mar 2020 23:01:15 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/colorful-quirks/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>The Darjeeling Limited (2007) by Wes Anderson</title>
<link>https://www.siddharthagolu.com/posts/cinema/darjeeling/</link>
<pubDate>Wed, 04 Mar 2020 23:01:15 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/cinema/darjeeling/</guid>
<description>Wes Anderson and his colorful quirks</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/debating-ethics/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
debating-ethics
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/debating-ethics/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,19 +158,19 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>The Way We Eat: Why Our Food Choices Matter by Peter Singer
<h2 class="entry-hint-parent">The Way We Eat: Why Our Food Choices Matter by Peter Singer
</h2>
</header>
<div class="entry-content">
<p>The ethical dilemma of eating. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-09-01 10:43:25 &#43;0530 IST&#39;&gt;🗓 September 1, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/review&#34;&gt; review&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/debating-ethics&#34;&gt; debating-ethics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animal-cruelty&#34;&gt; animal-cruelty&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/review"> review</a>&nbsp;·&nbsp;<a href="/tags/debating-ethics"> debating-ethics</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/animal-cruelty"> animal-cruelty</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to The Way We Eat: Why Our Food Choices Matter by Peter Singer" href="https://www.siddharthagolu.com/posts/reading/the-way-we-eat/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>debating-ethics on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/debating-ethics/</link>
@ -11,15 +11,14 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Wed, 01 Sep 2021 10:43:25 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/debating-ethics/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Wed, 01 Sep 2021 10:43:25 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/debating-ethics/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>The Way We Eat: Why Our Food Choices Matter by Peter Singer</title>
<link>https://www.siddharthagolu.com/posts/reading/the-way-we-eat/</link>
<pubDate>Wed, 01 Sep 2021 10:43:25 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-way-we-eat/</guid>
<description>The ethical dilemma of eating. Highly recommended!</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/depression/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
depression
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/depression/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,7 +158,7 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Reasons to Stay Alive by Matt Haig
<h2 class="entry-hint-parent">Reasons to Stay Alive by Matt Haig
</h2>
</header>
<div class="entry-content">
@ -167,13 +166,13 @@
Reasons you should read this book:
If youve ever had a panic attack. If youve ever counted the number of times the ceiling fan rotates, just so you could avoid dealing with the endless voices in your head. If youve ever felt ashamed to admit that you might be suffering from the D-word. If reading about personal stories of how people overcame their mental illnesses soothes you....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-01-28 22:28:18 &#43;0530 IST&#39;&gt;🗓 January 28, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/depression&#34;&gt; depression&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-01-28 22:28:18 +0530 IST'>🗓 January 28, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/depression"> depression</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a></footer>
<a class="entry-link" aria-label="post link to Reasons to Stay Alive by Matt Haig" href="https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>depression on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/depression/</link>
@ -11,17 +11,16 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Tue, 28 Jan 2020 22:28:18 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/depression/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Tue, 28 Jan 2020 22:28:18 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/depression/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Reasons to Stay Alive by Matt Haig</title>
<link>https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/</link>
<pubDate>Tue, 28 Jan 2020 22:28:18 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/reasons-to-stay-alive/</guid>
<description>Check it out on Goodreads
Reasons you should read this book:
If you&amp;rsquo;ve ever had a panic attack. If you&amp;rsquo;ve ever counted the number of times the ceiling fan rotates, just so you could avoid dealing with the endless voices in your head. If you&amp;rsquo;ve ever felt ashamed to admit that you might be suffering from the D-word. If reading about personal stories of how people overcame their mental illnesses soothes you.</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/economics/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
economics
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/economics/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,20 +158,20 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>I Do What I Do by Raghuram Rajan
<h2 class="entry-hint-parent">I Do What I Do by Raghuram Rajan
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I had picked up this one thinking it to be an autobiography, and with an expectation that itll cover Rajans tussles with the government in more details. I was pleasantly surprised to find instead a good collection of technical essays covering the workings of RBI, and economics in general. If youre looking for a good explanatory work in the field of Economics (and especially those concerning India and its policies), youll enjoy this....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-12-19 09:24:30 &#43;0530 IST&#39;&gt;🗓 December 19, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/economics&#34;&gt; economics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-12-19 09:24:30 +0530 IST'>🗓 December 19, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/economics"> economics</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a></footer>
<a class="entry-link" aria-label="post link to I Do What I Do by Raghuram Rajan" href="https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>economics on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/economics/</link>
@ -11,16 +11,15 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sat, 19 Dec 2020 09:24:30 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/economics/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Sat, 19 Dec 2020 09:24:30 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/economics/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>I Do What I Do by Raghuram Rajan</title>
<link>https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/</link>
<pubDate>Sat, 19 Dec 2020 09:24:30 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/i-do-what-i-do/</guid>
<description>Check it out on Goodreads
I had picked up this one thinking it to be an autobiography, and with an expectation that it&amp;rsquo;ll cover Rajan&amp;rsquo;s tussles with the government in more details. I was pleasantly surprised to find instead a good collection of technical essays covering the workings of RBI, and economics in general. If you&amp;rsquo;re looking for a good explanatory work in the field of Economics (and especially those concerning India and its policies), you&amp;rsquo;ll enjoy this.</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/existentialism/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
existentialism
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/existentialism/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,19 +158,19 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>The Stranger and The Plague by Albert Camus
<h2 class="entry-hint-parent">The Stranger and The Plague by Albert Camus
</h2>
</header>
<div class="entry-content">
<p>Preamble Philosophy has always been one of those baffling things that entice you at first by its simplicity, but as you get sucked into it more and more, you find yourself searching for the end of this labyrinthine landscape. I had my first exposure to anything related to philosophy in my second year of college when I stumbled upon The Fountainhead by Ayn Rand. At the time, it was one of the fascinating books I had ever read....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2019-01-21 14:39:14 &#43;0530 IST&#39;&gt;🗓 January 21, 2019&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;7 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/philosophy&#34;&gt; philosophy&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/existentialism&#34;&gt; existentialism&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2019-01-21 14:39:14 +0530 IST'>🗓 January 21, 2019</span>&nbsp;·&nbsp;7 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/philosophy"> philosophy</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/existentialism"> existentialism</a></footer>
<a class="entry-link" aria-label="post link to The Stranger and The Plague by Albert Camus" href="https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>existentialism on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/existentialism/</link>
@ -11,15 +11,14 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Mon, 21 Jan 2019 14:39:14 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/existentialism/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Mon, 21 Jan 2019 14:39:14 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/existentialism/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>The Stranger and The Plague by Albert Camus</title>
<link>https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/</link>
<pubDate>Mon, 21 Jan 2019 14:39:14 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/the-stranger-and-the-plague-a-review/</guid>
<description>On my journey to learn more about philosophy - the first step into the realms of existentialism</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/fast-food-books/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
fast-food-books
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/fast-food-books/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,19 +158,19 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>So Good They Can&#39;t Ignore You - Cal Newport
<h2 class="entry-hint-parent">So Good They Can&#39;t Ignore You - Cal Newport
</h2>
</header>
<div class="entry-content">
<p>A series of blog posts that unfortunately became a book. Not recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-03-29 15:04:13 &#43;0530 IST&#39;&gt;🗓 March 29, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/productivity&#34;&gt; productivity&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/career-advice&#34;&gt; career-advice&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/fast-food-books&#34;&gt; fast-food-books&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-03-29 15:04:13 +0530 IST'>🗓 March 29, 2023</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/productivity"> productivity</a>&nbsp;·&nbsp;<a href="/tags/career-advice"> career-advice</a>&nbsp;·&nbsp;<a href="/tags/fast-food-books"> fast-food-books</a></footer>
<a class="entry-link" aria-label="post link to So Good They Can&#39;t Ignore You - Cal Newport" href="https://www.siddharthagolu.com/posts/reading/so-good-newport/"></a>
</article>
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>fast-food-books on Siddhartha Golu</title>
<link>https://www.siddharthagolu.com/tags/fast-food-books/</link>
@ -11,15 +11,14 @@
</image>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Wed, 29 Mar 2023 15:04:13 +0530</lastBuildDate><atom:link href="https://www.siddharthagolu.com/tags/fast-food-books/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Wed, 29 Mar 2023 15:04:13 +0530</lastBuildDate>
<atom:link href="https://www.siddharthagolu.com/tags/fast-food-books/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>So Good They Can&#39;t Ignore You - Cal Newport</title>
<link>https://www.siddharthagolu.com/posts/reading/so-good-newport/</link>
<pubDate>Wed, 29 Mar 2023 15:04:13 +0530</pubDate>
<guid>https://www.siddharthagolu.com/posts/reading/so-good-newport/</guid>
<description>A series of blog posts that unfortunately became a book. Not recommended.</description>
</item>
</channel>
</rss>

View File

@ -10,8 +10,7 @@
<meta name="description" content="Siddhartha&#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
<meta name="author" content="Siddhartha Golu">
<link rel="canonical" href="https://www.siddharthagolu.com/tags/favourites/">
<script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script>
<link crossorigin="anonymous" href="/assets/css/stylesheet.4f5576b27f1a8ee2d1559082cedf1e9ca257ea9b767d9780cb0718c2435f78e5.css" integrity="sha256-T1V2sn8ajuLRVZCCzt8enKJX6pt2fZeAywcYwkNfeOU=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.66857e85d743ed43ea67ff6c21de89acf86c4e0d759944d3eed3e3cc709b1266.css" integrity="sha256-ZoV&#43;hddD7UPqZ/9sId6JrPhsTg11mUTT7tPjzHCbEmY=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.siddharthagolu.com/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
@ -37,7 +36,7 @@
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--hljs-bg: rgb(46, 46, 51);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
@ -146,7 +145,7 @@
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a>&nbsp;»&nbsp;<a href="https://www.siddharthagolu.com/tags/">Tags</a></div>
<h1>
favourites
<a href="index.xml" title="RSS" aria-label="RSS">
<a href="/tags/favourites/index.xml" title="RSS" aria-label="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" height="23">
<path d="M4 11a9 9 0 0 1 9 9" />
@ -159,68 +158,68 @@
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan
<h2 class="entry-hint-parent">Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan
</h2>
</header>
<div class="entry-content">
<p>A powerful exploration into the psyche of Indian women and how society perpetuates the status quo</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2023-09-03 21:05:39 &#43;0530 IST&#39;&gt;🗓 September 3, 2023&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/feminism&#34;&gt; feminism&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2023-09-03 21:05:39 +0530 IST'>🗓 September 3, 2023</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/feminism"> feminism</a></footer>
<a class="entry-link" aria-label="post link to Chup: Breaking the Silence About India&#39;s Women by Deepa Narayan" href="https://www.siddharthagolu.com/posts/reading/chup-deepa-narayan/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>After Life (1998) by Hirokazu Kore-eda
<h2 class="entry-hint-parent">After Life (1998) by Hirokazu Kore-eda
</h2>
</header>
<div class="entry-content">
<p>An interesting take on life, seen through the lens of afterlife. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2022-05-01 22:41:55 &#43;0530 IST&#39;&gt;🗓 May 1, 2022&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2022-05-01 22:41:55 +0530 IST'>🗓 May 1, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to After Life (1998) by Hirokazu Kore-eda" href="https://www.siddharthagolu.com/posts/cinema/after-life/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>3 Iron (2004) by Kim Ki-duk
<h2 class="entry-hint-parent">3 Iron (2004) by Kim Ki-duk
</h2>
</header>
<div class="entry-content">
<p>A film where everything is conveyed through glances.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-11-14 10:46:40 &#43;0530 IST&#39;&gt;🗓 November 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/foreign-cinema&#34;&gt; foreign-cinema&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/asia&#34;&gt; asia&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/minimalism&#34;&gt; minimalism&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/foreign-cinema"> foreign-cinema</a>&nbsp;·&nbsp;<a href="/tags/asia"> asia</a>&nbsp;·&nbsp;<a href="/tags/minimalism"> minimalism</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to 3 Iron (2004) by Kim Ki-duk" href="https://www.siddharthagolu.com/posts/cinema/3-iron/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>The Way We Eat: Why Our Food Choices Matter by Peter Singer
<h2 class="entry-hint-parent">The Way We Eat: Why Our Food Choices Matter by Peter Singer
</h2>
</header>
<div class="entry-content">
<p>The ethical dilemma of eating. Highly recommended!</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-09-01 10:43:25 &#43;0530 IST&#39;&gt;🗓 September 1, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/review&#34;&gt; review&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/debating-ethics&#34;&gt; debating-ethics&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/animal-cruelty&#34;&gt; animal-cruelty&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/review"> review</a>&nbsp;·&nbsp;<a href="/tags/debating-ethics"> debating-ethics</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/animal-cruelty"> animal-cruelty</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to The Way We Eat: Why Our Food Choices Matter by Peter Singer" href="https://www.siddharthagolu.com/posts/reading/the-way-we-eat/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Shame by Salman Rushdie
<h2 class="entry-hint-parent">Shame by Salman Rushdie
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
Now that Ive moved away from reading fiction, I find that I face a lot of inertia to pick up something purely for pleasure. Maybe this is a nasty by-product of wanting to be as “productive” as possible. But the more I have drifted away from reading for pleasure, more mechanical the whole process has become for me. Partly to avoid this feeling, and partly because of my shame at seeing my bookshelf filled with dusty unread books, I picked up this one to assuage my feelings of guilt....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-08-17 22:55:02 &#43;0530 IST&#39;&gt;🗓 August 17, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/fiction&#34;&gt; fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-08-17 22:55:02 +0530 IST'>🗓 August 17, 2021</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/fiction"> fiction</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a></footer>
<a class="entry-link" aria-label="post link to Shame by Salman Rushdie" href="https://www.siddharthagolu.com/posts/reading/shame-rushdie/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>What I Talk About When I Talk About Running by Haruki Murakami
<h2 class="entry-hint-parent">What I Talk About When I Talk About Running by Haruki Murakami
</h2>
</header>
<div class="entry-content">
@ -228,26 +227,26 @@ Now that Ive moved away from reading fiction, I find that I face a lot of ine
Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-08-14 20:09:56 &#43;0530 IST&#39;&gt;🗓 August 14, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/audiobook&#34;&gt; audiobook&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/health&#34;&gt; health&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-08-14 20:09:56 +0530 IST'>🗓 August 14, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/audiobook"> audiobook</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/health"> health</a></footer>
<a class="entry-link" aria-label="post link to What I Talk About When I Talk About Running by Haruki Murakami" href="https://www.siddharthagolu.com/posts/reading/running-murakami/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Annihilation of Caste(Annotated Edition) by Arundhati Roy
<h2 class="entry-hint-parent">Annihilation of Caste(Annotated Edition) by Arundhati Roy
</h2>
</header>
<div class="entry-content">
<p>Check it out on Goodreads
I find India really fascinating sometimes, even though Ive lived my whole life here. What the cultural multitudes and colorful festivals hide underneath is an ugly facade which threatens to break everything that has been built over the years. What I find most fascinating is how weve conditioned ourselves to ignore the blatant reality and move ahead with an oblivious calm, living in shit and aspiring for the gold....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-07-23 22:56:47 &#43;0530 IST&#39;&gt;🗓 July 23, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-07-23 22:56:47 +0530 IST'>🗓 July 23, 2021</span>&nbsp;·&nbsp;3 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Annihilation of Caste(Annotated Edition) by Arundhati Roy" href="https://www.siddharthagolu.com/posts/reading/annihilation-of-caste/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Parenting Beyond Belief by Dale McGowan
<h2 class="entry-hint-parent">Parenting Beyond Belief by Dale McGowan
</h2>
</header>
<div class="entry-content">
@ -255,32 +254,32 @@ I find India really fascinating sometimes, even though Ive lived my whole lif
I have had a very curious relationship with religion, although now that I talk to others, it was a much more normal experience than what I led myself to believe. I followed the typical path of receiving a particular religion from my parents (born a “Hindu child”), which had a supporting role in my life up until my late-teenage/early-adolescent years.
As is the norm for every child brought up in religion, I used to consider myself special believing that I had a “personal relationship” with God....</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-03-18 22:14:21 &#43;0530 IST&#39;&gt;🗓 March 18, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/religion&#34;&gt; religion&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/parenting&#34;&gt; parenting&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-03-18 22:14:21 +0530 IST'>🗓 March 18, 2021</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/religion"> religion</a>&nbsp;·&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/parenting"> parenting</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Parenting Beyond Belief by Dale McGowan" href="https://www.siddharthagolu.com/posts/reading/parenting/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Riding Solo to the Top of the World (2006) by Gaurav Jani
<h2 class="entry-hint-parent">Riding Solo to the Top of the World (2006) by Gaurav Jani
</h2>
</header>
<div class="entry-content">
<p>Verdict: ★ ★ ★ ★ ★ Check it out on Letterboxd
Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-speed-ninjas-Harley-fans, and it usually gets a bad rap all across the world. Gaurav Jani is none of these things. His passion and humility and curious nature reminded me why I loved biking in the first place. This is a must-watch for anyone fascinated with two wheels and the places they enable you to visit.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2021-01-03 22:53:01 &#43;0530 IST&#39;&gt;🗓 January 3, 2021&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/motorcycling&#34;&gt; motorcycling&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/india&#34;&gt; india&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2021-01-03 22:53:01 +0530 IST'>🗓 January 3, 2021</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/motorcycling"> motorcycling</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a>&nbsp;·&nbsp;<a href="/tags/india"> india</a></footer>
<a class="entry-link" aria-label="post link to Riding Solo to the Top of the World (2006) by Gaurav Jani" href="https://www.siddharthagolu.com/posts/cinema/riding-solo/"></a>
</article>
<article class="post-entry tag-entry">
<header class="entry-header">
<h2>Azadi by Arundhati Roy
<h2 class="entry-hint-parent">Azadi by Arundhati Roy
</h2>
</header>
<div class="entry-content">
<p>A series of essays on the bleak reality in India. Highly recommended.</p>
</div>
<footer class="entry-footer">&lt;span title=&#39;2020-09-30 22:22:13 &#43;0530 IST&#39;&gt;🗓 September 30, 2020&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4 min&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;🔖&amp;nbsp;&lt;a href=&#34;/tags/non-fiction&#34;&gt; non-fiction&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/indian-authors&#34;&gt; indian-authors&lt;/a&gt;&amp;nbsp;·&amp;nbsp;&lt;a href=&#34;/tags/favourites&#34;&gt; favourites&lt;/a&gt;</footer>
<footer class="entry-footer"><span title='2020-09-30 22:22:13 +0530 IST'>🗓 September 30, 2020</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;🔖&nbsp;<a href="/tags/non-fiction"> non-fiction</a>&nbsp;·&nbsp;<a href="/tags/indian-authors"> indian-authors</a>&nbsp;·&nbsp;<a href="/tags/favourites"> favourites</a></footer>
<a class="entry-link" aria-label="post link to Azadi by Arundhati Roy" href="https://www.siddharthagolu.com/posts/reading/azadi/"></a>
</article>
<footer class="page-footer">
@ -292,7 +291,7 @@ Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-spee
</main>
<footer class="footer">
<span>&copy; 2023 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>&copy; 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span>
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

Some files were not shown because too many files have changed in this diff Show More