mirror of
https://gitlab.com/thelazyoxymoron/siddhartha-golu-website.git
synced 2025-07-27 17:17:58 +02:00
add post on proficient motorcycling
This commit is contained in:
26
content/posts/Reading/proficient-motorcycling.md
Normal file
26
content/posts/Reading/proficient-motorcycling.md
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: "Proficient Motorcycling by David L. Hough"
|
||||||
|
date: 2024-09-01T22:15:16+05:30
|
||||||
|
categories: ["Book Notes"]
|
||||||
|
summary: "A good primer on learning how to ride well"
|
||||||
|
tags: ["non-fiction", "motorcycling"]
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
**Started on:** July 12th, 2024
|
||||||
|
**Finished on:** Aug 29th, 2024
|
||||||
|
**Time to read:** 9 hours, 9 minutes
|
||||||
|
|
||||||
|
[Also published on Goodreads](https://www.goodreads.com/review/show/2835723629)
|
||||||
|
|
||||||
|
------------------------------------
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
I have been riding motorcycles for past 7 years. I've had so many crashes in the early days that people were afraid of sitting as a pillion on my bike. Slowly I started internalizing few things and gradually the accidents stopped. This is a typical journey of how you learn any skill. However, it becomes a problem if you never give yourself a chance to see your skills from first principles and examine bad patterns that you might have internalized.
|
||||||
|
|
||||||
|
Reading this book was a refreshing reminder to examine how I ride a motorcycle.
|
||||||
|
|
||||||
|
This didn't teach me anything extraordinary, but it explained so many things that I had, just sort of, accepted as given. Like how tyre pressure affects a bike's traction, why counter-steering works, why front brakes are much more powerful (and should be used more frequently) than rear brakes, and on and on.
|
||||||
|
|
||||||
|
Pick up this book if you'd like to improve, and understand, how you ride.
|
122
layouts/_default/list.html
Normal file
122
layouts/_default/list.html
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
{{- define "main" }}
|
||||||
|
|
||||||
|
{{- if (and site.Params.profileMode.enabled .IsHome) }}
|
||||||
|
{{- partial "index_profile.html" . }}
|
||||||
|
{{- else }} {{/* if not profileMode */}}
|
||||||
|
|
||||||
|
{{- if not .IsHome | and .Title }}
|
||||||
|
<header class="page-header">
|
||||||
|
{{- partial "breadcrumbs.html" . }}
|
||||||
|
<h1>
|
||||||
|
{{ .Title }}
|
||||||
|
{{- if and (or (eq .Kind `term`) (eq .Kind `section`)) (.Param "ShowRssButtonInSectionTermList") }}
|
||||||
|
{{- with .OutputFormats.Get "rss" }}
|
||||||
|
<a href="{{ .RelPermalink }}" 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>
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
{{- if .Description }}
|
||||||
|
<div class="post-description">
|
||||||
|
{{ .Description | markdownify }}
|
||||||
|
</div>
|
||||||
|
{{- end }}
|
||||||
|
</header>
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{- if .Content }}
|
||||||
|
<div class="post-content">
|
||||||
|
{{- if not (.Param "disableAnchoredHeadings") }}
|
||||||
|
{{- partial "anchored_headings.html" .Content -}}
|
||||||
|
{{- else }}{{ .Content }}{{ end }}
|
||||||
|
</div>
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{- $pages := union .RegularPages .Sections }}
|
||||||
|
|
||||||
|
{{- if .IsHome }}
|
||||||
|
{{- $pages = where site.RegularPages "Type" "in" site.Params.mainSections }}
|
||||||
|
{{- $pages = where $pages "Params.hiddenInHomeList" "!=" "true" }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{- $paginator := .Paginate $pages }}
|
||||||
|
|
||||||
|
{{- if and .IsHome site.Params.homeInfoParams (eq $paginator.PageNumber 1) }}
|
||||||
|
{{- partial "home_info.html" . }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{- $term := .Data.Term }}
|
||||||
|
{{- range $index, $page := $paginator.Pages }}
|
||||||
|
|
||||||
|
{{- $class := "post-entry" }}
|
||||||
|
|
||||||
|
{{- $user_preferred := or site.Params.disableSpecial1stPost site.Params.homeInfoParams }}
|
||||||
|
{{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0) (not $user_preferred)) }}
|
||||||
|
{{- $class = "first-entry" }}
|
||||||
|
{{- else if $term }}
|
||||||
|
{{- $class = "post-entry tag-entry" }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
<article class="{{ $class }}">
|
||||||
|
{{- $isHidden := (.Param "cover.hiddenInList") | default (.Param "cover.hidden") | default false }}
|
||||||
|
{{- partial "cover.html" (dict "cxt" . "IsSingle" false "isHidden" $isHidden) }}
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2 class="entry-hint-parent">
|
||||||
|
{{- .Title }}
|
||||||
|
{{- if .Draft }}
|
||||||
|
<span class="entry-hint" title="Draft">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" 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 }}
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
{{- if (ne (.Param "hideSummary") true) }}
|
||||||
|
<div class="entry-content">
|
||||||
|
<p>{{ .Summary | plainify | htmlUnescape }}{{ if .Truncated }}...{{ end }}</p>
|
||||||
|
</div>
|
||||||
|
{{- end }}
|
||||||
|
{{- if not (.Param "hideMeta") }}
|
||||||
|
<footer class="entry-footer">
|
||||||
|
{{- partial "post_meta.html" . -}}
|
||||||
|
</footer>
|
||||||
|
{{- end }}
|
||||||
|
<a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
|
||||||
|
</article>
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{- if gt $paginator.TotalPages 1 }}
|
||||||
|
<footer class="page-footer">
|
||||||
|
<nav class="pagination">
|
||||||
|
{{- if $paginator.HasPrev }}
|
||||||
|
<a class="prev" href="{{ $paginator.Prev.URL | absURL }}">
|
||||||
|
« {{ i18n "prev_page" }}
|
||||||
|
{{- if (.Param "ShowPageNums") }}
|
||||||
|
{{- sub $paginator.PageNumber 1 }}/{{ $paginator.TotalPages }}
|
||||||
|
{{- end }}
|
||||||
|
</a>
|
||||||
|
{{- end }}
|
||||||
|
{{- if $paginator.HasNext }}
|
||||||
|
<a class="next" href="{{ $paginator.Next.URL | absURL }}">
|
||||||
|
{{- i18n "next_page" }}
|
||||||
|
{{- if (.Param "ShowPageNums") }}
|
||||||
|
{{- add 1 $paginator.PageNumber }}/{{ $paginator.TotalPages }}
|
||||||
|
{{- end }} »
|
||||||
|
</a>
|
||||||
|
{{- end }}
|
||||||
|
</nav>
|
||||||
|
</footer>
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{- end }}{{/* end profileMode */}}
|
||||||
|
|
||||||
|
{{- end }}{{- /* end main */ -}}
|
@@ -5,36 +5,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -260,36 +260,39 @@ So to solve this little problem of mine, I came up with this unoriginal idea."/>
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -217,10 +217,29 @@
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<div class="archive-year">
|
<div class="archive-year">
|
||||||
<h2 class="archive-year-header">2024<sup class="archive-count"> 2</sup>
|
<h2 class="archive-year-header" id="2024">
|
||||||
|
<a class="archive-header-link" href="#2024">2024</a>
|
||||||
|
<sup class="archive-count"> 3</sup>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">June<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2024-September">
|
||||||
|
<a class="archive-header-link" href="#2024-September">September</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
|
<div class="archive-posts">
|
||||||
|
<div class="archive-entry">
|
||||||
|
<h3 class="archive-entry-title entry-hint-parent">Proficient Motorcycling by David L. Hough
|
||||||
|
</h3>
|
||||||
|
<div class="archive-meta"><span title='2024-09-01 22:15:16 +0530 IST'>🗓 September 1, 2024</span> · 1 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/motorcycling"> motorcycling</a></div>
|
||||||
|
<a class="entry-link" aria-label="post link to Proficient Motorcycling by David L. Hough" href="https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/"></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="archive-month">
|
||||||
|
<h3 class="archive-month-header" id="2024-June">
|
||||||
|
<a class="archive-header-link" href="#2024-June">June</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Freezing Apps on Non Rooted Phones (Without a PC)
|
<h3 class="archive-entry-title entry-hint-parent">Freezing Apps on Non Rooted Phones (Without a PC)
|
||||||
@@ -231,7 +250,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">April<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2024-April">
|
||||||
|
<a class="archive-header-link" href="#2024-April">April</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Midnight’s Children by Salman Rushdie
|
<h3 class="archive-entry-title entry-hint-parent">Midnight’s Children by Salman Rushdie
|
||||||
@@ -243,10 +265,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-year">
|
<div class="archive-year">
|
||||||
<h2 class="archive-year-header">2023<sup class="archive-count"> 3</sup>
|
<h2 class="archive-year-header" id="2023">
|
||||||
|
<a class="archive-header-link" href="#2023">2023</a>
|
||||||
|
<sup class="archive-count"> 3</sup>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">September<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2023-September">
|
||||||
|
<a class="archive-header-link" href="#2023-September">September</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Chup: Breaking the Silence About India’s Women by Deepa Narayan
|
<h3 class="archive-entry-title entry-hint-parent">Chup: Breaking the Silence About India’s Women by Deepa Narayan
|
||||||
@@ -257,7 +284,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">June<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2023-June">
|
||||||
|
<a class="archive-header-link" href="#2023-June">June</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">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
|
||||||
@@ -268,7 +298,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">March<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2023-March">
|
||||||
|
<a class="archive-header-link" href="#2023-March">March</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">So Good They Can’t Ignore You - Cal Newport
|
<h3 class="archive-entry-title entry-hint-parent">So Good They Can’t Ignore You - Cal Newport
|
||||||
@@ -280,10 +313,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-year">
|
<div class="archive-year">
|
||||||
<h2 class="archive-year-header">2022<sup class="archive-count"> 3</sup>
|
<h2 class="archive-year-header" id="2022">
|
||||||
|
<a class="archive-header-link" href="#2022">2022</a>
|
||||||
|
<sup class="archive-count"> 3</sup>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">September<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2022-September">
|
||||||
|
<a class="archive-header-link" href="#2022-September">September</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">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
|
||||||
@@ -294,7 +332,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">May<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2022-May">
|
||||||
|
<a class="archive-header-link" href="#2022-May">May</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">After Life (1998) by Hirokazu Kore-eda
|
<h3 class="archive-entry-title entry-hint-parent">After Life (1998) by Hirokazu Kore-eda
|
||||||
@@ -305,7 +346,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">April<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2022-April">
|
||||||
|
<a class="archive-header-link" href="#2022-April">April</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Life Between Buildings by Jan Gehl
|
<h3 class="archive-entry-title entry-hint-parent">Life Between Buildings by Jan Gehl
|
||||||
@@ -317,10 +361,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-year">
|
<div class="archive-year">
|
||||||
<h2 class="archive-year-header">2021<sup class="archive-count"> 10</sup>
|
<h2 class="archive-year-header" id="2021">
|
||||||
|
<a class="archive-header-link" href="#2021">2021</a>
|
||||||
|
<sup class="archive-count"> 10</sup>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">November<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2021-November">
|
||||||
|
<a class="archive-header-link" href="#2021-November">November</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">3 Iron (2004) by Kim Ki-duk
|
<h3 class="archive-entry-title entry-hint-parent">3 Iron (2004) by Kim Ki-duk
|
||||||
@@ -331,7 +380,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">September<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2021-September">
|
||||||
|
<a class="archive-header-link" href="#2021-September">September</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">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
|
||||||
@@ -342,7 +394,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">August<sup class="archive-count"> 2</sup></h3>
|
<h3 class="archive-month-header" id="2021-August">
|
||||||
|
<a class="archive-header-link" href="#2021-August">August</a>
|
||||||
|
<sup class="archive-count"> 2</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Shame by Salman Rushdie
|
<h3 class="archive-entry-title entry-hint-parent">Shame by Salman Rushdie
|
||||||
@@ -359,7 +414,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">July<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2021-July">
|
||||||
|
<a class="archive-header-link" href="#2021-July">July</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Annihilation of Caste(Annotated Edition) by Arundhati Roy
|
<h3 class="archive-entry-title entry-hint-parent">Annihilation of Caste(Annotated Edition) by Arundhati Roy
|
||||||
@@ -370,7 +428,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">March<sup class="archive-count"> 3</sup></h3>
|
<h3 class="archive-month-header" id="2021-March">
|
||||||
|
<a class="archive-header-link" href="#2021-March">March</a>
|
||||||
|
<sup class="archive-count"> 3</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Photography
|
<h3 class="archive-entry-title entry-hint-parent">Photography
|
||||||
@@ -393,7 +454,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">February<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2021-February">
|
||||||
|
<a class="archive-header-link" href="#2021-February">February</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">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
|
||||||
@@ -404,7 +468,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">January<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2021-January">
|
||||||
|
<a class="archive-header-link" href="#2021-January">January</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">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
|
||||||
@@ -416,10 +483,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-year">
|
<div class="archive-year">
|
||||||
<h2 class="archive-year-header">2020<sup class="archive-count"> 18</sup>
|
<h2 class="archive-year-header" id="2020">
|
||||||
|
<a class="archive-header-link" href="#2020">2020</a>
|
||||||
|
<sup class="archive-count"> 18</sup>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">December<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2020-December">
|
||||||
|
<a class="archive-header-link" href="#2020-December">December</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">I Do What I Do by Raghuram Rajan
|
<h3 class="archive-entry-title entry-hint-parent">I Do What I Do by Raghuram Rajan
|
||||||
@@ -430,7 +502,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">November<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2020-November">
|
||||||
|
<a class="archive-header-link" href="#2020-November">November</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Waking Life (2001) by Richard Linklater
|
<h3 class="archive-entry-title entry-hint-parent">Waking Life (2001) by Richard Linklater
|
||||||
@@ -441,7 +516,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">September<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2020-September">
|
||||||
|
<a class="archive-header-link" href="#2020-September">September</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Azadi by Arundhati Roy
|
<h3 class="archive-entry-title entry-hint-parent">Azadi by Arundhati Roy
|
||||||
@@ -452,7 +530,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">June<sup class="archive-count"> 8</sup></h3>
|
<h3 class="archive-month-header" id="2020-June">
|
||||||
|
<a class="archive-header-link" href="#2020-June">June</a>
|
||||||
|
<sup class="archive-count"> 8</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Stoner by John Williams
|
<h3 class="archive-entry-title entry-hint-parent">Stoner by John Williams
|
||||||
@@ -505,7 +586,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">May<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2020-May">
|
||||||
|
<a class="archive-header-link" href="#2020-May">May</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Bad Blood by John Carreyrou
|
<h3 class="archive-entry-title entry-hint-parent">Bad Blood by John Carreyrou
|
||||||
@@ -516,7 +600,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">April<sup class="archive-count"> 2</sup></h3>
|
<h3 class="archive-month-header" id="2020-April">
|
||||||
|
<a class="archive-header-link" href="#2020-April">April</a>
|
||||||
|
<sup class="archive-count"> 2</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Fear
|
<h3 class="archive-entry-title entry-hint-parent">Fear
|
||||||
@@ -533,7 +620,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">March<sup class="archive-count"> 2</sup></h3>
|
<h3 class="archive-month-header" id="2020-March">
|
||||||
|
<a class="archive-header-link" href="#2020-March">March</a>
|
||||||
|
<sup class="archive-count"> 2</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Glimpses of World History by Jawaharlal Nehru
|
<h3 class="archive-entry-title entry-hint-parent">Glimpses of World History by Jawaharlal Nehru
|
||||||
@@ -550,7 +640,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">January<sup class="archive-count"> 2</sup></h3>
|
<h3 class="archive-month-header" id="2020-January">
|
||||||
|
<a class="archive-header-link" href="#2020-January">January</a>
|
||||||
|
<sup class="archive-count"> 2</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Reasons to Stay Alive by Matt Haig
|
<h3 class="archive-entry-title entry-hint-parent">Reasons to Stay Alive by Matt Haig
|
||||||
@@ -568,10 +661,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-year">
|
<div class="archive-year">
|
||||||
<h2 class="archive-year-header">2019<sup class="archive-count"> 6</sup>
|
<h2 class="archive-year-header" id="2019">
|
||||||
|
<a class="archive-header-link" href="#2019">2019</a>
|
||||||
|
<sup class="archive-count"> 6</sup>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">September<sup class="archive-count"> 2</sup></h3>
|
<h3 class="archive-month-header" id="2019-September">
|
||||||
|
<a class="archive-header-link" href="#2019-September">September</a>
|
||||||
|
<sup class="archive-count"> 2</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">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
|
||||||
@@ -588,7 +686,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">March<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2019-March">
|
||||||
|
<a class="archive-header-link" href="#2019-March">March</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">Deference vs. Indifference
|
<h3 class="archive-entry-title entry-hint-parent">Deference vs. Indifference
|
||||||
@@ -599,7 +700,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">February<sup class="archive-count"> 1</sup></h3>
|
<h3 class="archive-month-header" id="2019-February">
|
||||||
|
<a class="archive-header-link" href="#2019-February">February</a>
|
||||||
|
<sup class="archive-count"> 1</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">The Course of Love by Alain de Botton
|
<h3 class="archive-entry-title entry-hint-parent">The Course of Love by Alain de Botton
|
||||||
@@ -610,7 +714,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">January<sup class="archive-count"> 2</sup></h3>
|
<h3 class="archive-month-header" id="2019-January">
|
||||||
|
<a class="archive-header-link" href="#2019-January">January</a>
|
||||||
|
<sup class="archive-count"> 2</sup>
|
||||||
|
</h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
<div class="archive-entry">
|
<div class="archive-entry">
|
||||||
<h3 class="archive-entry-title entry-hint-parent">The Stranger and The Plague by Albert Camus
|
<h3 class="archive-entry-title entry-hint-parent">The Stranger and The Plague by Albert Camus
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Blog
|
Blog
|
||||||
<a href="/categories/blog/index.xml" title="RSS" aria-label="RSS">
|
<a href="/categories/blog/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>http://localhost:1313/images/Love_for_mountains.jpeg</url>
|
<url>http://localhost:1313/images/Love_for_mountains.jpeg</url>
|
||||||
<link>http://localhost:1313/images/Love_for_mountains.jpeg</link>
|
<link>http://localhost:1313/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 10 Jan 2022 10:41:34 +0530</lastBuildDate>
|
<lastBuildDate>Mon, 10 Jan 2022 10:41:34 +0530</lastBuildDate>
|
||||||
<atom:link href="http://localhost:1313/categories/blog/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="http://localhost:1313/categories/blog/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Book Notes
|
Book Notes
|
||||||
<a href="/categories/book-notes/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
@@ -164,6 +164,18 @@
|
|||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<article class="post-entry tag-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2 class="entry-hint-parent">Proficient Motorcycling by David L. Hough
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p>A good primer on learning how to ride well</p>
|
||||||
|
</div>
|
||||||
|
<footer class="entry-footer"><span title='2024-09-01 22:15:16 +0530 IST'>🗓 September 1, 2024</span> · 1 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/motorcycling"> motorcycling</a></footer>
|
||||||
|
<a class="entry-link" aria-label="post link to Proficient Motorcycling by David L. Hough" href="https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/"></a>
|
||||||
|
</article>
|
||||||
|
|
||||||
<article class="post-entry tag-entry">
|
<article class="post-entry tag-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Midnight's Children by Salman Rushdie
|
<h2 class="entry-hint-parent">Midnight's Children by Salman Rushdie
|
||||||
@@ -274,19 +286,6 @@ I have no affinity for running, even for short jogs, and much less for wanting t
|
|||||||
<footer class="entry-footer"><span title='2021-08-14 20:09:56 +0530 IST'>🗓 August 14, 2021</span> · 4 min · 🔖 <a href="/tags/audiobook"> audiobook</a> · <a href="/tags/favourites"> favourites</a> · <a href="/tags/health"> health</a></footer>
|
<footer class="entry-footer"><span title='2021-08-14 20:09:56 +0530 IST'>🗓 August 14, 2021</span> · 4 min · 🔖 <a href="/tags/audiobook"> audiobook</a> · <a href="/tags/favourites"> favourites</a> · <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>
|
<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>
|
||||||
|
|
||||||
<article class="post-entry tag-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<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 I’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’ve 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"><span title='2021-07-23 22:56:47 +0530 IST'>🗓 July 23, 2021</span> · 3 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/indian-authors"> indian-authors</a> · <a href="/tags/religion"> religion</a> · <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>
|
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="next" href="https://www.siddharthagolu.com/categories/book-notes/page/2/">Next »
|
<a class="next" href="https://www.siddharthagolu.com/categories/book-notes/page/2/">Next »
|
||||||
|
@@ -9,10 +9,17 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sun, 21 Apr 2024 20:33:23 +0530</lastBuildDate>
|
<lastBuildDate>Sun, 01 Sep 2024 22:15:16 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/categories/book-notes/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/categories/book-notes/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Proficient Motorcycling by David L. Hough</title>
|
||||||
|
<link>https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/</link>
|
||||||
|
<pubDate>Sun, 01 Sep 2024 22:15:16 +0530</pubDate>
|
||||||
|
<guid>https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/</guid>
|
||||||
|
<description>A good primer on learning how to ride well</description>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Midnight's Children by Salman Rushdie</title>
|
<title>Midnight's Children by Salman Rushdie</title>
|
||||||
<link>https://www.siddharthagolu.com/posts/reading/midnight-rushdie/</link>
|
<link>https://www.siddharthagolu.com/posts/reading/midnight-rushdie/</link>
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Book Notes
|
Book Notes
|
||||||
<a href="/categories/book-notes/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
@@ -164,6 +164,19 @@
|
|||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<article class="post-entry tag-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<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 I’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’ve 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"><span title='2021-07-23 22:56:47 +0530 IST'>🗓 July 23, 2021</span> · 3 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/indian-authors"> indian-authors</a> · <a href="/tags/religion"> religion</a> · <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">
|
<article class="post-entry tag-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Parenting Beyond Belief by Dale McGowan
|
<h2 class="entry-hint-parent">Parenting Beyond Belief by Dale McGowan
|
||||||
@@ -282,19 +295,6 @@ I have been a lover of music since my early childhood - runs in the family - and
|
|||||||
<footer class="entry-footer"><span title='2020-01-16 22:05:06 +0530 IST'>🗓 January 16, 2020</span> · 2 min · 🔖 <a href="/tags/audiobook"> audiobook</a> · <a href="/tags/favourites"> favourites</a> · <a href="/tags/classical-music"> classical-music</a> · <a href="/tags/history"> history</a></footer>
|
<footer class="entry-footer"><span title='2020-01-16 22:05:06 +0530 IST'>🗓 January 16, 2020</span> · 2 min · 🔖 <a href="/tags/audiobook"> audiobook</a> · <a href="/tags/favourites"> favourites</a> · <a href="/tags/classical-music"> classical-music</a> · <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>
|
<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>
|
||||||
|
|
||||||
<article class="post-entry tag-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<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 who’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’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....</p>
|
|
||||||
</div>
|
|
||||||
<footer class="entry-footer"><span title='2019-09-12 20:12:10 +0530 IST'>🗓 September 12, 2019</span> · 6 min · 🔖 <a href="/tags/favourites"> favourites</a> · <a href="/tags/understanding-ourselves"> understanding-ourselves</a> · <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>
|
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="prev" href="https://www.siddharthagolu.com/categories/book-notes/">
|
<a class="prev" href="https://www.siddharthagolu.com/categories/book-notes/">
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Book Notes
|
Book Notes
|
||||||
<a href="/categories/book-notes/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
@@ -164,6 +164,19 @@
|
|||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<article class="post-entry tag-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<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 who’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’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....</p>
|
||||||
|
</div>
|
||||||
|
<footer class="entry-footer"><span title='2019-09-12 20:12:10 +0530 IST'>🗓 September 12, 2019</span> · 6 min · 🔖 <a href="/tags/favourites"> favourites</a> · <a href="/tags/understanding-ourselves"> understanding-ourselves</a> · <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">
|
<article class="post-entry tag-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Range by David Epstein
|
<h2 class="entry-hint-parent">Range by David Epstein
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Cinema
|
Cinema
|
||||||
<a href="/categories/cinema/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/categories/cinema/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/categories/cinema/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Drawings
|
Drawings
|
||||||
<a href="/categories/drawings/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 10 Jan 2022 10:41:34 +0530</lastBuildDate>
|
<lastBuildDate>Mon, 10 Jan 2022 10:41:34 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/categories/drawings/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/categories/drawings/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -156,7 +156,7 @@
|
|||||||
|
|
||||||
<ul class="terms-tags">
|
<ul class="terms-tags">
|
||||||
<li>
|
<li>
|
||||||
<a href="https://www.siddharthagolu.com/categories/book-notes/">Book Notes <sup><strong><sup>23</sup></strong></sup> </a>
|
<a href="https://www.siddharthagolu.com/categories/book-notes/">Book Notes <sup><strong><sup>24</sup></strong></sup> </a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://www.siddharthagolu.com/categories/cinema/">Cinema <sup><strong><sup>8</sup></strong></sup> </a>
|
<a href="https://www.siddharthagolu.com/categories/cinema/">Cinema <sup><strong><sup>8</sup></strong></sup> </a>
|
||||||
|
@@ -9,10 +9,17 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sun, 09 Jun 2024 09:57:20 +0530</lastBuildDate>
|
<lastBuildDate>Sun, 01 Sep 2024 22:15:16 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/categories/index.xml" rel="self" type="application/rss+xml" />
|
<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, 01 Sep 2024 22:15:16 +0530</pubDate>
|
||||||
|
<guid>https://www.siddharthagolu.com/categories/book-notes/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>TIL</title>
|
<title>TIL</title>
|
||||||
<link>https://www.siddharthagolu.com/categories/til/</link>
|
<link>https://www.siddharthagolu.com/categories/til/</link>
|
||||||
@@ -20,13 +27,6 @@
|
|||||||
<guid>https://www.siddharthagolu.com/categories/til/</guid>
|
<guid>https://www.siddharthagolu.com/categories/til/</guid>
|
||||||
<description></description>
|
<description></description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<title>Book Notes</title>
|
|
||||||
<link>https://www.siddharthagolu.com/categories/book-notes/</link>
|
|
||||||
<pubDate>Sun, 21 Apr 2024 19:53:52 +0530</pubDate>
|
|
||||||
<guid>https://www.siddharthagolu.com/categories/book-notes/</guid>
|
|
||||||
<description></description>
|
|
||||||
</item>
|
|
||||||
<item>
|
<item>
|
||||||
<title>Cinema</title>
|
<title>Cinema</title>
|
||||||
<link>https://www.siddharthagolu.com/categories/cinema/</link>
|
<link>https://www.siddharthagolu.com/categories/cinema/</link>
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Photography
|
Photography
|
||||||
<a href="/categories/photography/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 27 Jan 2024 17:54:11 +0530</lastBuildDate>
|
<lastBuildDate>Sat, 27 Jan 2024 17:54:11 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/categories/photography/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/categories/photography/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Poetry
|
Poetry
|
||||||
<a href="/categories/poetry/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/categories/poetry/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/categories/poetry/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
TIL
|
TIL
|
||||||
<a href="/categories/til/index.xml" title="RSS" aria-label="RSS">
|
<a href="/categories/til/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sun, 09 Jun 2024 09:57:20 +0530</lastBuildDate>
|
<lastBuildDate>Sun, 09 Jun 2024 09:57:20 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/categories/til/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/categories/til/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
BIN
public/images/proficient.jpg
Normal file
BIN
public/images/proficient.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
@@ -2,7 +2,7 @@
|
|||||||
<html lang="en" dir="auto">
|
<html lang="en" dir="auto">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta name="generator" content="Hugo 0.129.0"><meta charset="utf-8">
|
<meta name="generator" content="Hugo 0.133.1"><meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<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="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<meta name="robots" content="index, follow">
|
<meta name="robots" content="index, follow">
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
"@type": "Organization",
|
"@type": "Organization",
|
||||||
"name": "Siddhartha Golu",
|
"name": "Siddhartha Golu",
|
||||||
"url": "https://www.siddharthagolu.com/",
|
"url": "https://www.siddharthagolu.com/",
|
||||||
"description": "Siddhartha\u0026#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.",
|
"description": "Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.",
|
||||||
"thumbnailUrl": "https://www.siddharthagolu.com/favicon.ico",
|
"thumbnailUrl": "https://www.siddharthagolu.com/favicon.ico",
|
||||||
"sameAs": [
|
"sameAs": [
|
||||||
"https://www.goodreads.com/siddharthagolu", "https://twitter.com/SiddharthaGolu", "https://flickr.com/photos/thelazyoxymoron/", "https://bsky.app/profile/siddharthagolu.com", "https://letterboxd.com/Carte_Blanche/", "https://www.linkedin.com/in/siddharthagolu/"
|
"https://www.goodreads.com/siddharthagolu", "https://twitter.com/SiddharthaGolu", "https://flickr.com/photos/thelazyoxymoron/", "https://bsky.app/profile/siddharthagolu.com", "https://letterboxd.com/Carte_Blanche/", "https://www.linkedin.com/in/siddharthagolu/"
|
||||||
@@ -184,7 +184,7 @@
|
|||||||
<div class="social-icons" >
|
<div class="social-icons" >
|
||||||
<a href="https://www.goodreads.com/siddharthagolu" target="_blank" rel="noopener noreferrer me"
|
<a href="https://www.goodreads.com/siddharthagolu" target="_blank" rel="noopener noreferrer me"
|
||||||
title="Goodreads">
|
title="Goodreads">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" role="img" fill="currentColor" viewBox="0 0 24 24">
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
|
||||||
<path
|
<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" />
|
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>
|
</svg>
|
||||||
@@ -200,21 +200,23 @@
|
|||||||
</a>
|
</a>
|
||||||
<a href="https://flickr.com/photos/thelazyoxymoron/" target="_blank" rel="noopener noreferrer me"
|
<a href="https://flickr.com/photos/thelazyoxymoron/" target="_blank" rel="noopener noreferrer me"
|
||||||
title="Flickr">
|
title="Flickr">
|
||||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor">
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
|
||||||
<path
|
<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" />
|
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>
|
</svg>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://bsky.app/profile/siddharthagolu.com" target="_blank" rel="noopener noreferrer me"
|
<a href="https://bsky.app/profile/siddharthagolu.com" target="_blank" rel="noopener noreferrer me"
|
||||||
title="Bluesky">
|
title="Bluesky">
|
||||||
<svg viewBox="0 0 360 320" xmlns="http://www.w3.org/2000/svg" fill="currentColor">
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 360 320" 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"/>
|
<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>
|
</svg>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://letterboxd.com/Carte_Blanche/" target="_blank" rel="noopener noreferrer me"
|
<a href="https://letterboxd.com/Carte_Blanche/" target="_blank" rel="noopener noreferrer me"
|
||||||
title="Letterboxd">
|
title="Letterboxd">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"fill="currentColor">
|
<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"/>
|
<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>
|
</svg>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://www.linkedin.com/in/siddharthagolu/" target="_blank" rel="noopener noreferrer me"
|
<a href="https://www.linkedin.com/in/siddharthagolu/" target="_blank" rel="noopener noreferrer me"
|
||||||
@@ -231,6 +233,18 @@
|
|||||||
</footer>
|
</footer>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2 class="entry-hint-parent">Proficient Motorcycling by David L. Hough
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p>A good primer on learning how to ride well</p>
|
||||||
|
</div>
|
||||||
|
<footer class="entry-footer"><span title='2024-09-01 22:15:16 +0530 IST'>🗓 September 1, 2024</span> · 1 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/motorcycling"> motorcycling</a></footer>
|
||||||
|
<a class="entry-link" aria-label="post link to Proficient Motorcycling by David L. Hough" href="https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/"></a>
|
||||||
|
</article>
|
||||||
|
|
||||||
<article class="post-entry">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Freezing Apps on Non Rooted Phones (Without a PC)
|
<h2 class="entry-hint-parent">Freezing Apps on Non Rooted Phones (Without a PC)
|
||||||
@@ -340,18 +354,6 @@ Install Shizuku Starting with android 11, you can use ADB on the device without
|
|||||||
<footer class="entry-footer"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span> · 1 min · 🔖 <a href="/tags/foreign-cinema"> foreign-cinema</a> · <a href="/tags/asia"> asia</a> · <a href="/tags/minimalism"> minimalism</a> · <a href="/tags/favourites"> favourites</a></footer>
|
<footer class="entry-footer"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span> · 1 min · 🔖 <a href="/tags/foreign-cinema"> foreign-cinema</a> · <a href="/tags/asia"> asia</a> · <a href="/tags/minimalism"> minimalism</a> · <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>
|
<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>
|
||||||
|
|
||||||
<article class="post-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<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"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span> · 4 min · 🔖 <a href="/tags/review"> review</a> · <a href="/tags/debating-ethics"> debating-ethics</a> · <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/animal-cruelty"> animal-cruelty</a> · <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>
|
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="next" href="https://www.siddharthagolu.com/page/2/">Next »
|
<a class="next" href="https://www.siddharthagolu.com/page/2/">Next »
|
||||||
|
File diff suppressed because one or more lines are too long
@@ -9,10 +9,17 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sun, 09 Jun 2024 09:57:20 +0530</lastBuildDate>
|
<lastBuildDate>Sun, 01 Sep 2024 22:15:16 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Proficient Motorcycling by David L. Hough</title>
|
||||||
|
<link>https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/</link>
|
||||||
|
<pubDate>Sun, 01 Sep 2024 22:15:16 +0530</pubDate>
|
||||||
|
<guid>https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/</guid>
|
||||||
|
<description>A good primer on learning how to ride well</description>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Freezing Apps on Non Rooted Phones (Without a PC)</title>
|
<title>Freezing Apps on Non Rooted Phones (Without a PC)</title>
|
||||||
<link>https://www.siddharthagolu.com/posts/til/freezing-apps-on-non-rooted-phones/</link>
|
<link>https://www.siddharthagolu.com/posts/til/freezing-apps-on-non-rooted-phones/</link>
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
<html lang="en" dir="auto">
|
<html lang="en" dir="auto">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta name="generator" content="Hugo 0.129.0"><meta charset="utf-8">
|
<meta name="generator" content="Hugo 0.133.1"><meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<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="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<meta name="robots" content="index, follow">
|
<meta name="robots" content="index, follow">
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
"@type": "Organization",
|
"@type": "Organization",
|
||||||
"name": "Siddhartha Golu",
|
"name": "Siddhartha Golu",
|
||||||
"url": "https://www.siddharthagolu.com/",
|
"url": "https://www.siddharthagolu.com/",
|
||||||
"description": "Siddhartha\u0026#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.",
|
"description": "Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.",
|
||||||
"thumbnailUrl": "https://www.siddharthagolu.com/favicon.ico",
|
"thumbnailUrl": "https://www.siddharthagolu.com/favicon.ico",
|
||||||
"sameAs": [
|
"sameAs": [
|
||||||
"https://www.goodreads.com/siddharthagolu", "https://twitter.com/SiddharthaGolu", "https://flickr.com/photos/thelazyoxymoron/", "https://bsky.app/profile/siddharthagolu.com", "https://letterboxd.com/Carte_Blanche/", "https://www.linkedin.com/in/siddharthagolu/"
|
"https://www.goodreads.com/siddharthagolu", "https://twitter.com/SiddharthaGolu", "https://flickr.com/photos/thelazyoxymoron/", "https://bsky.app/profile/siddharthagolu.com", "https://letterboxd.com/Carte_Blanche/", "https://www.linkedin.com/in/siddharthagolu/"
|
||||||
@@ -166,6 +166,18 @@
|
|||||||
</header>
|
</header>
|
||||||
<main class="main">
|
<main class="main">
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<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"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span> · 4 min · 🔖 <a href="/tags/review"> review</a> · <a href="/tags/debating-ethics"> debating-ethics</a> · <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/animal-cruelty"> animal-cruelty</a> · <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">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Shame by Salman Rushdie
|
<h2 class="entry-hint-parent">Shame by Salman Rushdie
|
||||||
@@ -286,18 +298,6 @@ The college sophomore me would have been really excited about discussing vague n
|
|||||||
<footer class="entry-footer"><span title='2020-11-27 22:57:50 +0530 IST'>🗓 November 27, 2020</span> · 1 min · 🔖 <a href="/tags/philosophy"> philosophy</a> · <a href="/tags/animation"> animation</a></footer>
|
<footer class="entry-footer"><span title='2020-11-27 22:57:50 +0530 IST'>🗓 November 27, 2020</span> · 1 min · 🔖 <a href="/tags/philosophy"> philosophy</a> · <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>
|
<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>
|
||||||
|
|
||||||
<article class="post-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<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"><span title='2020-09-30 22:22:13 +0530 IST'>🗓 September 30, 2020</span> · 4 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/indian-authors"> indian-authors</a> · <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">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="prev" href="https://www.siddharthagolu.com/">
|
<a class="prev" href="https://www.siddharthagolu.com/">
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
<html lang="en" dir="auto">
|
<html lang="en" dir="auto">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta name="generator" content="Hugo 0.129.0"><meta charset="utf-8">
|
<meta name="generator" content="Hugo 0.133.1"><meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<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="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<meta name="robots" content="index, follow">
|
<meta name="robots" content="index, follow">
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
"@type": "Organization",
|
"@type": "Organization",
|
||||||
"name": "Siddhartha Golu",
|
"name": "Siddhartha Golu",
|
||||||
"url": "https://www.siddharthagolu.com/",
|
"url": "https://www.siddharthagolu.com/",
|
||||||
"description": "Siddhartha\u0026#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.",
|
"description": "Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.",
|
||||||
"thumbnailUrl": "https://www.siddharthagolu.com/favicon.ico",
|
"thumbnailUrl": "https://www.siddharthagolu.com/favicon.ico",
|
||||||
"sameAs": [
|
"sameAs": [
|
||||||
"https://www.goodreads.com/siddharthagolu", "https://twitter.com/SiddharthaGolu", "https://flickr.com/photos/thelazyoxymoron/", "https://bsky.app/profile/siddharthagolu.com", "https://letterboxd.com/Carte_Blanche/", "https://www.linkedin.com/in/siddharthagolu/"
|
"https://www.goodreads.com/siddharthagolu", "https://twitter.com/SiddharthaGolu", "https://flickr.com/photos/thelazyoxymoron/", "https://bsky.app/profile/siddharthagolu.com", "https://letterboxd.com/Carte_Blanche/", "https://www.linkedin.com/in/siddharthagolu/"
|
||||||
@@ -166,6 +166,18 @@
|
|||||||
</header>
|
</header>
|
||||||
<main class="main">
|
<main class="main">
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<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"><span title='2020-09-30 22:22:13 +0530 IST'>🗓 September 30, 2020</span> · 4 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/indian-authors"> indian-authors</a> · <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">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Stoner by John Williams
|
<h2 class="entry-hint-parent">Stoner by John Williams
|
||||||
@@ -278,28 +290,6 @@ How to fool the world and become a Billionaire I remember hearing about Elizabet
|
|||||||
<footer class="entry-footer"><span title='2020-05-01 23:39:18 +0530 IST'>🗓 May 1, 2020</span> · 2 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/journalism"> journalism</a> · <a href="/tags/audiobook"> audiobook</a></footer>
|
<footer class="entry-footer"><span title='2020-05-01 23:39:18 +0530 IST'>🗓 May 1, 2020</span> · 2 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/journalism"> journalism</a> · <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>
|
<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>
|
||||||
|
|
||||||
<article class="post-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<h2 class="entry-hint-parent">Fear
|
|
||||||
</h2>
|
|
||||||
</header>
|
|
||||||
<div class="entry-content">
|
|
||||||
<p>Check it out on Instagram
|
|
||||||
I’m scared.
|
|
||||||
No, not because there’s a pandemic going on,
|
|
||||||
even though that itself is enough
|
|
||||||
to make one lose their mind.
|
|
||||||
There’s another deadly virus crawling
|
|
||||||
its way into my whole being.
|
|
||||||
Slowly eating away at my sanity,
|
|
||||||
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"><span title='2020-04-25 23:45:30 +0530 IST'>🗓 April 25, 2020</span> · 2 min · 🔖 <a href="/tags/poetry"> poetry</a> · <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>
|
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="prev" href="https://www.siddharthagolu.com/page/2/">
|
<a class="prev" href="https://www.siddharthagolu.com/page/2/">
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
<html lang="en" dir="auto">
|
<html lang="en" dir="auto">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta name="generator" content="Hugo 0.129.0"><meta charset="utf-8">
|
<meta name="generator" content="Hugo 0.133.1"><meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<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="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<meta name="robots" content="index, follow">
|
<meta name="robots" content="index, follow">
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
"@type": "Organization",
|
"@type": "Organization",
|
||||||
"name": "Siddhartha Golu",
|
"name": "Siddhartha Golu",
|
||||||
"url": "https://www.siddharthagolu.com/",
|
"url": "https://www.siddharthagolu.com/",
|
||||||
"description": "Siddhartha\u0026#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.",
|
"description": "Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.",
|
||||||
"thumbnailUrl": "https://www.siddharthagolu.com/favicon.ico",
|
"thumbnailUrl": "https://www.siddharthagolu.com/favicon.ico",
|
||||||
"sameAs": [
|
"sameAs": [
|
||||||
"https://www.goodreads.com/siddharthagolu", "https://twitter.com/SiddharthaGolu", "https://flickr.com/photos/thelazyoxymoron/", "https://bsky.app/profile/siddharthagolu.com", "https://letterboxd.com/Carte_Blanche/", "https://www.linkedin.com/in/siddharthagolu/"
|
"https://www.goodreads.com/siddharthagolu", "https://twitter.com/SiddharthaGolu", "https://flickr.com/photos/thelazyoxymoron/", "https://bsky.app/profile/siddharthagolu.com", "https://letterboxd.com/Carte_Blanche/", "https://www.linkedin.com/in/siddharthagolu/"
|
||||||
@@ -166,6 +166,28 @@
|
|||||||
</header>
|
</header>
|
||||||
<main class="main">
|
<main class="main">
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2 class="entry-hint-parent">Fear
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p>Check it out on Instagram
|
||||||
|
I’m scared.
|
||||||
|
No, not because there’s a pandemic going on,
|
||||||
|
even though that itself is enough
|
||||||
|
to make one lose their mind.
|
||||||
|
There’s another deadly virus crawling
|
||||||
|
its way into my whole being.
|
||||||
|
Slowly eating away at my sanity,
|
||||||
|
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"><span title='2020-04-25 23:45:30 +0530 IST'>🗓 April 25, 2020</span> · 2 min · 🔖 <a href="/tags/poetry"> poetry</a> · <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">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Waking Up by Sam Harris
|
<h2 class="entry-hint-parent">Waking Up by Sam Harris
|
||||||
@@ -292,23 +314,13 @@ The School of Life - a massively popular YouTube channel - used to be this sourc
|
|||||||
<footer class="entry-footer"><span title='2019-02-14 20:21:45 +0530 IST'>🗓 February 14, 2019</span> · 3 min · 🔖 <a href="/tags/fiction"> fiction</a> · <a href="/tags/relationship"> relationship</a></footer>
|
<footer class="entry-footer"><span title='2019-02-14 20:21:45 +0530 IST'>🗓 February 14, 2019</span> · 3 min · 🔖 <a href="/tags/fiction"> fiction</a> · <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>
|
<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>
|
||||||
|
|
||||||
<article class="post-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<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"><span title='2019-01-21 14:39:14 +0530 IST'>🗓 January 21, 2019</span> · 7 min · 🔖 <a href="/tags/philosophy"> philosophy</a> · <a href="/tags/non-fiction"> non-fiction</a> · <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">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="prev" href="https://www.siddharthagolu.com/page/3/">
|
<a class="prev" href="https://www.siddharthagolu.com/page/3/">
|
||||||
« Prev
|
« Prev
|
||||||
</a>
|
</a>
|
||||||
|
<a class="next" href="https://www.siddharthagolu.com/page/5/">Next »
|
||||||
|
</a>
|
||||||
</nav>
|
</nav>
|
||||||
</footer>
|
</footer>
|
||||||
</main>
|
</main>
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
<html lang="en" dir="auto">
|
<html lang="en" dir="auto">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta name="generator" content="Hugo 0.129.0"><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script><meta charset="utf-8">
|
<meta name="generator" content="Hugo 0.133.1"><meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<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="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<meta name="robots" content="index, follow">
|
<meta name="robots" content="index, follow">
|
||||||
@@ -10,18 +10,18 @@
|
|||||||
<meta name="keywords" content="Blog, Portfolio, Minimal, Digital-Garden, Siddhartha, Siddhartha Golu">
|
<meta name="keywords" content="Blog, Portfolio, Minimal, Digital-Garden, Siddhartha, Siddhartha Golu">
|
||||||
<meta name="description" content="Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.">
|
<meta name="description" content="Siddhartha'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">
|
<meta name="author" content="Siddhartha Golu">
|
||||||
<link rel="canonical" href="http://localhost:1313/">
|
<link rel="canonical" href="https://www.siddharthagolu.com/">
|
||||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.53bb04f4aba62c3f850b0b622140c2cc64a7f75a7f7b0c6acde33a5f70de0244.css" integrity="sha256-U7sE9KumLD+FCwtiIUDCzGSn91p/ewxqzeM6X3DeAkQ=" rel="preload stylesheet" as="style">
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.53bb04f4aba62c3f850b0b622140c2cc64a7f75a7f7b0c6acde33a5f70de0244.css" integrity="sha256-U7sE9KumLD+FCwtiIUDCzGSn91p/ewxqzeM6X3DeAkQ=" rel="preload stylesheet" as="style">
|
||||||
<link rel="icon" href="http://localhost:1313/favicon.ico">
|
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="http://localhost:1313/favicon-16x16.png">
|
<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="http://localhost:1313/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
|
||||||
<link rel="apple-touch-icon" href="http://localhost:1313/apple-touch-icon.png">
|
<link rel="apple-touch-icon" href="https://www.siddharthagolu.com/apple-touch-icon.png">
|
||||||
<link rel="mask-icon" href="http://localhost:1313/safari-pinned-tab.svg">
|
<link rel="mask-icon" href="https://www.siddharthagolu.com/safari-pinned-tab.svg">
|
||||||
<meta name="theme-color" content="#2e2e33">
|
<meta name="theme-color" content="#2e2e33">
|
||||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/index.xml">
|
<link rel="alternate" type="application/rss+xml" href="https://www.siddharthagolu.com/index.xml">
|
||||||
<link rel="alternate" type="application/json" href="http://localhost:1313/index.json">
|
<link rel="alternate" type="application/json" href="https://www.siddharthagolu.com/index.json">
|
||||||
<link rel="alternate" hreflang="en" href="http://localhost:1313/">
|
<link rel="alternate" hreflang="en" href="https://www.siddharthagolu.com/">
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>
|
<style>
|
||||||
#theme-toggle,
|
#theme-toggle,
|
||||||
@@ -70,12 +70,12 @@
|
|||||||
<meta property="og:title" content="Siddhartha Golu" />
|
<meta property="og:title" content="Siddhartha Golu" />
|
||||||
<meta property="og:description" content="Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general." />
|
<meta property="og:description" content="Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="http://localhost:1313/" />
|
<meta property="og:url" content="https://www.siddharthagolu.com/" />
|
||||||
<meta property="og:image" content="http://localhost:1313/images/Love_for_mountains.jpeg" />
|
<meta property="og:image" content="https://www.siddharthagolu.com/images/Love_for_mountains.jpeg" />
|
||||||
<meta property="og:site_name" content="Siddhartha Golu" />
|
<meta property="og:site_name" content="Siddhartha Golu" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary_large_image" />
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
<meta name="twitter:image" content="http://localhost:1313/images/Love_for_mountains.jpeg" />
|
<meta name="twitter:image" content="https://www.siddharthagolu.com/images/Love_for_mountains.jpeg" />
|
||||||
<meta name="twitter:title" content="Siddhartha Golu"/>
|
<meta name="twitter:title" content="Siddhartha Golu"/>
|
||||||
<meta name="twitter:description" content="Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general."/>
|
<meta name="twitter:description" content="Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general."/>
|
||||||
|
|
||||||
@@ -84,9 +84,9 @@
|
|||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
"@type": "Organization",
|
"@type": "Organization",
|
||||||
"name": "Siddhartha Golu",
|
"name": "Siddhartha Golu",
|
||||||
"url": "http://localhost:1313/",
|
"url": "https://www.siddharthagolu.com/",
|
||||||
"description": "Siddhartha\u0026#39;s digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.",
|
"description": "Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general.",
|
||||||
"thumbnailUrl": "http://localhost:1313/favicon.ico",
|
"thumbnailUrl": "https://www.siddharthagolu.com/favicon.ico",
|
||||||
"sameAs": [
|
"sameAs": [
|
||||||
"https://www.goodreads.com/siddharthagolu", "https://twitter.com/SiddharthaGolu", "https://flickr.com/photos/thelazyoxymoron/", "https://bsky.app/profile/siddharthagolu.com", "https://letterboxd.com/Carte_Blanche/", "https://www.linkedin.com/in/siddharthagolu/"
|
"https://www.goodreads.com/siddharthagolu", "https://twitter.com/SiddharthaGolu", "https://flickr.com/photos/thelazyoxymoron/", "https://bsky.app/profile/siddharthagolu.com", "https://letterboxd.com/Carte_Blanche/", "https://www.linkedin.com/in/siddharthagolu/"
|
||||||
]
|
]
|
||||||
@@ -109,8 +109,8 @@
|
|||||||
<header class="header">
|
<header class="header">
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<a href="http://localhost:1313/" accesskey="h" title="Siddhartha Golu (Alt + H)">
|
<a href="https://www.siddharthagolu.com/" accesskey="h" title="Siddhartha Golu (Alt + H)">
|
||||||
<img src="http://localhost:1313/apple-touch-icon.png" alt="" aria-label="logo"
|
<img src="https://www.siddharthagolu.com/apple-touch-icon.png" alt="" aria-label="logo"
|
||||||
height="30">Siddhartha Golu</a>
|
height="30">Siddhartha Golu</a>
|
||||||
<div class="logo-switches">
|
<div class="logo-switches">
|
||||||
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
||||||
@@ -137,27 +137,27 @@
|
|||||||
</div>
|
</div>
|
||||||
<ul id="menu">
|
<ul id="menu">
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost:1313/about" title="About">
|
<a href="https://www.siddharthagolu.com/about" title="About">
|
||||||
<span>About</span>
|
<span>About</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost:1313/archive" title="Archive">
|
<a href="https://www.siddharthagolu.com/archive" title="Archive">
|
||||||
<span>Archive</span>
|
<span>Archive</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost:1313/categories" title="Categories">
|
<a href="https://www.siddharthagolu.com/categories" title="Categories">
|
||||||
<span>Categories</span>
|
<span>Categories</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost:1313/tags/" title="Tags">
|
<a href="https://www.siddharthagolu.com/tags/" title="Tags">
|
||||||
<span>Tags</span>
|
<span>Tags</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost:1313/search/" title="Search (Alt + /)" accesskey=/>
|
<a href="https://www.siddharthagolu.com/search/" title="Search (Alt + /)" accesskey=/>
|
||||||
<span>Search</span>
|
<span>Search</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -168,24 +168,18 @@
|
|||||||
|
|
||||||
<article class="post-entry">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">On Depression and Recovery
|
<h2 class="entry-hint-parent">The Stranger and The Plague by Albert Camus
|
||||||
<span class="entry-hint" title="Draft">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" 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>
|
|
||||||
</h2>
|
</h2>
|
||||||
</header>
|
</header>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<p>Depression is a very heavy handed word, and probably the most misunderstood one too. It stealthily engulfs you in its tight grasp, attackiong when you least expect it to. One moment you’re enjoying the weather, basking in the glory of some happy thought, maybe remembering that on thing that your partner did for you - and suddenly from this wave of happy and positive emotions, a tiny splash comes towards you - the splash of doubt....</p>
|
<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>
|
</div>
|
||||||
<footer class="entry-footer"><span title='2019-01-17 01:24:41 +0530 IST'>🗓 January 17, 2019</span> · 1 min · Siddhartha Golu</footer>
|
<footer class="entry-footer"><span title='2019-01-21 14:39:14 +0530 IST'>🗓 January 21, 2019</span> · 7 min · 🔖 <a href="/tags/philosophy"> philosophy</a> · <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/existentialism"> existentialism</a></footer>
|
||||||
<a class="entry-link" aria-label="post link to On Depression and Recovery" href="http://localhost:1313/posts/on-depression-and-recovery/"></a>
|
<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>
|
</article>
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="prev" href="http://localhost:1313/page/4/">
|
<a class="prev" href="https://www.siddharthagolu.com/page/4/">
|
||||||
« Prev
|
« Prev
|
||||||
</a>
|
</a>
|
||||||
</nav>
|
</nav>
|
||||||
@@ -193,7 +187,7 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<span>© 2024 <a href="http://localhost:1313/">Siddhartha Golu</a></span> ·
|
<span>© 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span> ·
|
||||||
|
|
||||||
<span>
|
<span>
|
||||||
Powered by
|
Powered by
|
||||||
|
@@ -247,36 +247,39 @@ You can browse the images below using left/right keys. All the images are hosted
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -261,36 +261,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -266,36 +266,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -259,36 +259,39 @@ A slow, methodical display of patience and absurdity juxtaposed on the vast land
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -254,36 +254,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -277,36 +277,39 @@ At one point or another, we have all experienced some version of this phenomenon
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -259,36 +259,39 @@ Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-spee
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -263,36 +263,39 @@ The college sophomore me would have been really excited about discussing vague n
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -262,36 +262,39 @@ I had watched Once Upon a Time in Anatolia from the same director previously and
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -333,36 +333,39 @@ There really is no answer, is there?</p>
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -254,36 +254,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -252,36 +252,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -252,36 +252,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -252,36 +252,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -252,36 +252,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -252,36 +252,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -169,8 +169,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Posts
|
Posts
|
||||||
<a href="/posts/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
@@ -179,6 +179,18 @@
|
|||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2 class="entry-hint-parent">Proficient Motorcycling by David L. Hough
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p>A good primer on learning how to ride well</p>
|
||||||
|
</div>
|
||||||
|
<footer class="entry-footer"><span title='2024-09-01 22:15:16 +0530 IST'>🗓 September 1, 2024</span> · 1 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/motorcycling"> motorcycling</a></footer>
|
||||||
|
<a class="entry-link" aria-label="post link to Proficient Motorcycling by David L. Hough" href="https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/"></a>
|
||||||
|
</article>
|
||||||
|
|
||||||
<article class="post-entry">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Freezing Apps on Non Rooted Phones (Without a PC)
|
<h2 class="entry-hint-parent">Freezing Apps on Non Rooted Phones (Without a PC)
|
||||||
@@ -288,18 +300,6 @@ Install Shizuku Starting with android 11, you can use ADB on the device without
|
|||||||
<footer class="entry-footer"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span> · 1 min · 🔖 <a href="/tags/foreign-cinema"> foreign-cinema</a> · <a href="/tags/asia"> asia</a> · <a href="/tags/minimalism"> minimalism</a> · <a href="/tags/favourites"> favourites</a></footer>
|
<footer class="entry-footer"><span title='2021-11-14 10:46:40 +0530 IST'>🗓 November 14, 2021</span> · 1 min · 🔖 <a href="/tags/foreign-cinema"> foreign-cinema</a> · <a href="/tags/asia"> asia</a> · <a href="/tags/minimalism"> minimalism</a> · <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>
|
<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>
|
||||||
|
|
||||||
<article class="post-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<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"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span> · 4 min · 🔖 <a href="/tags/review"> review</a> · <a href="/tags/debating-ethics"> debating-ethics</a> · <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/animal-cruelty"> animal-cruelty</a> · <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>
|
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="next" href="https://www.siddharthagolu.com/posts/page/2/">Next »
|
<a class="next" href="https://www.siddharthagolu.com/posts/page/2/">Next »
|
||||||
|
@@ -9,10 +9,17 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sun, 09 Jun 2024 09:57:20 +0530</lastBuildDate>
|
<lastBuildDate>Sun, 01 Sep 2024 22:15:16 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/posts/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Proficient Motorcycling by David L. Hough</title>
|
||||||
|
<link>https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/</link>
|
||||||
|
<pubDate>Sun, 01 Sep 2024 22:15:16 +0530</pubDate>
|
||||||
|
<guid>https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/</guid>
|
||||||
|
<description>A good primer on learning how to ride well</description>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Freezing Apps on Non Rooted Phones (Without a PC)</title>
|
<title>Freezing Apps on Non Rooted Phones (Without a PC)</title>
|
||||||
<link>https://www.siddharthagolu.com/posts/til/freezing-apps-on-non-rooted-phones/</link>
|
<link>https://www.siddharthagolu.com/posts/til/freezing-apps-on-non-rooted-phones/</link>
|
||||||
|
@@ -232,12 +232,7 @@ splash comes towards you - the splash of doubt. Was your colleague being sarcast
|
|||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<br>
|
|
||||||
<details>
|
|
||||||
<summary class="post-comment">View comments</summary><script data-isso="https://comments.siddharthagolu.com/" src="https://comments.siddharthagolu.com/js/embed.min.js"></script>
|
|
||||||
<section id = "isso-thread"></section>
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="post-footer">
|
<footer class="post-footer">
|
||||||
@@ -260,36 +255,39 @@ splash comes towards you - the splash of doubt. Was your colleague being sarcast
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -169,8 +169,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Posts
|
Posts
|
||||||
<a href="/posts/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
@@ -179,6 +179,18 @@
|
|||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<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"><span title='2021-09-01 10:43:25 +0530 IST'>🗓 September 1, 2021</span> · 4 min · 🔖 <a href="/tags/review"> review</a> · <a href="/tags/debating-ethics"> debating-ethics</a> · <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/animal-cruelty"> animal-cruelty</a> · <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">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Shame by Salman Rushdie
|
<h2 class="entry-hint-parent">Shame by Salman Rushdie
|
||||||
@@ -299,18 +311,6 @@ The college sophomore me would have been really excited about discussing vague n
|
|||||||
<footer class="entry-footer"><span title='2020-11-27 22:57:50 +0530 IST'>🗓 November 27, 2020</span> · 1 min · 🔖 <a href="/tags/philosophy"> philosophy</a> · <a href="/tags/animation"> animation</a></footer>
|
<footer class="entry-footer"><span title='2020-11-27 22:57:50 +0530 IST'>🗓 November 27, 2020</span> · 1 min · 🔖 <a href="/tags/philosophy"> philosophy</a> · <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>
|
<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>
|
||||||
|
|
||||||
<article class="post-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<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"><span title='2020-09-30 22:22:13 +0530 IST'>🗓 September 30, 2020</span> · 4 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/indian-authors"> indian-authors</a> · <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">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="prev" href="https://www.siddharthagolu.com/posts/">
|
<a class="prev" href="https://www.siddharthagolu.com/posts/">
|
||||||
|
@@ -169,8 +169,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Posts
|
Posts
|
||||||
<a href="/posts/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
@@ -179,6 +179,18 @@
|
|||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<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"><span title='2020-09-30 22:22:13 +0530 IST'>🗓 September 30, 2020</span> · 4 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/indian-authors"> indian-authors</a> · <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">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Stoner by John Williams
|
<h2 class="entry-hint-parent">Stoner by John Williams
|
||||||
@@ -291,28 +303,6 @@ How to fool the world and become a Billionaire I remember hearing about Elizabet
|
|||||||
<footer class="entry-footer"><span title='2020-05-01 23:39:18 +0530 IST'>🗓 May 1, 2020</span> · 2 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/journalism"> journalism</a> · <a href="/tags/audiobook"> audiobook</a></footer>
|
<footer class="entry-footer"><span title='2020-05-01 23:39:18 +0530 IST'>🗓 May 1, 2020</span> · 2 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/journalism"> journalism</a> · <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>
|
<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>
|
||||||
|
|
||||||
<article class="post-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<h2 class="entry-hint-parent">Fear
|
|
||||||
</h2>
|
|
||||||
</header>
|
|
||||||
<div class="entry-content">
|
|
||||||
<p>Check it out on Instagram
|
|
||||||
I’m scared.
|
|
||||||
No, not because there’s a pandemic going on,
|
|
||||||
even though that itself is enough
|
|
||||||
to make one lose their mind.
|
|
||||||
There’s another deadly virus crawling
|
|
||||||
its way into my whole being.
|
|
||||||
Slowly eating away at my sanity,
|
|
||||||
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"><span title='2020-04-25 23:45:30 +0530 IST'>🗓 April 25, 2020</span> · 2 min · 🔖 <a href="/tags/poetry"> poetry</a> · <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>
|
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="prev" href="https://www.siddharthagolu.com/posts/page/2/">
|
<a class="prev" href="https://www.siddharthagolu.com/posts/page/2/">
|
||||||
|
@@ -169,8 +169,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Posts
|
Posts
|
||||||
<a href="/posts/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
@@ -179,6 +179,28 @@
|
|||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2 class="entry-hint-parent">Fear
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p>Check it out on Instagram
|
||||||
|
I’m scared.
|
||||||
|
No, not because there’s a pandemic going on,
|
||||||
|
even though that itself is enough
|
||||||
|
to make one lose their mind.
|
||||||
|
There’s another deadly virus crawling
|
||||||
|
its way into my whole being.
|
||||||
|
Slowly eating away at my sanity,
|
||||||
|
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"><span title='2020-04-25 23:45:30 +0530 IST'>🗓 April 25, 2020</span> · 2 min · 🔖 <a href="/tags/poetry"> poetry</a> · <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">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Waking Up by Sam Harris
|
<h2 class="entry-hint-parent">Waking Up by Sam Harris
|
||||||
@@ -305,23 +327,13 @@ The School of Life - a massively popular YouTube channel - used to be this sourc
|
|||||||
<footer class="entry-footer"><span title='2019-02-14 20:21:45 +0530 IST'>🗓 February 14, 2019</span> · 3 min · 🔖 <a href="/tags/fiction"> fiction</a> · <a href="/tags/relationship"> relationship</a></footer>
|
<footer class="entry-footer"><span title='2019-02-14 20:21:45 +0530 IST'>🗓 February 14, 2019</span> · 3 min · 🔖 <a href="/tags/fiction"> fiction</a> · <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>
|
<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>
|
||||||
|
|
||||||
<article class="post-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<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"><span title='2019-01-21 14:39:14 +0530 IST'>🗓 January 21, 2019</span> · 7 min · 🔖 <a href="/tags/philosophy"> philosophy</a> · <a href="/tags/non-fiction"> non-fiction</a> · <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">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="prev" href="https://www.siddharthagolu.com/posts/page/3/">
|
<a class="prev" href="https://www.siddharthagolu.com/posts/page/3/">
|
||||||
« Prev
|
« Prev
|
||||||
</a>
|
</a>
|
||||||
|
<a class="next" href="https://www.siddharthagolu.com/posts/page/5/">Next »
|
||||||
|
</a>
|
||||||
</nav>
|
</nav>
|
||||||
</footer>
|
</footer>
|
||||||
</main>
|
</main>
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en" dir="auto">
|
<html lang="en" dir="auto">
|
||||||
|
|
||||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script><meta charset="utf-8">
|
<head><meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<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="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<meta name="robots" content="index, follow">
|
<meta name="robots" content="index, follow">
|
||||||
@@ -9,17 +9,17 @@
|
|||||||
<meta name="keywords" content="">
|
<meta name="keywords" content="">
|
||||||
<meta name="description" content="Posts - Siddhartha Golu">
|
<meta name="description" content="Posts - Siddhartha Golu">
|
||||||
<meta name="author" content="Siddhartha Golu">
|
<meta name="author" content="Siddhartha Golu">
|
||||||
<link rel="canonical" href="http://localhost:1313/posts/">
|
<link rel="canonical" href="https://www.siddharthagolu.com/posts/">
|
||||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.53bb04f4aba62c3f850b0b622140c2cc64a7f75a7f7b0c6acde33a5f70de0244.css" integrity="sha256-U7sE9KumLD+FCwtiIUDCzGSn91p/ewxqzeM6X3DeAkQ=" rel="preload stylesheet" as="style">
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.53bb04f4aba62c3f850b0b622140c2cc64a7f75a7f7b0c6acde33a5f70de0244.css" integrity="sha256-U7sE9KumLD+FCwtiIUDCzGSn91p/ewxqzeM6X3DeAkQ=" rel="preload stylesheet" as="style">
|
||||||
<link rel="icon" href="http://localhost:1313/favicon.ico">
|
<link rel="icon" href="https://www.siddharthagolu.com/favicon.ico">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="http://localhost:1313/favicon-16x16.png">
|
<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="http://localhost:1313/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="https://www.siddharthagolu.com/favicon-32x32.png">
|
||||||
<link rel="apple-touch-icon" href="http://localhost:1313/apple-touch-icon.png">
|
<link rel="apple-touch-icon" href="https://www.siddharthagolu.com/apple-touch-icon.png">
|
||||||
<link rel="mask-icon" href="http://localhost:1313/safari-pinned-tab.svg">
|
<link rel="mask-icon" href="https://www.siddharthagolu.com/safari-pinned-tab.svg">
|
||||||
<meta name="theme-color" content="#2e2e33">
|
<meta name="theme-color" content="#2e2e33">
|
||||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/posts/index.xml">
|
<link rel="alternate" type="application/rss+xml" href="https://www.siddharthagolu.com/posts/index.xml">
|
||||||
<link rel="alternate" hreflang="en" href="http://localhost:1313/posts/">
|
<link rel="alternate" hreflang="en" href="https://www.siddharthagolu.com/posts/">
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>
|
<style>
|
||||||
#theme-toggle,
|
#theme-toggle,
|
||||||
@@ -68,12 +68,12 @@
|
|||||||
<meta property="og:title" content="Posts" />
|
<meta property="og:title" content="Posts" />
|
||||||
<meta property="og:description" content="Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general." />
|
<meta property="og:description" content="Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="http://localhost:1313/posts/" />
|
<meta property="og:url" content="https://www.siddharthagolu.com/posts/" />
|
||||||
<meta property="og:image" content="http://localhost:1313/images/Love_for_mountains.jpeg" />
|
<meta property="og:image" content="https://www.siddharthagolu.com/images/Love_for_mountains.jpeg" />
|
||||||
<meta property="og:site_name" content="Siddhartha Golu" />
|
<meta property="og:site_name" content="Siddhartha Golu" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary_large_image" />
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
<meta name="twitter:image" content="http://localhost:1313/images/Love_for_mountains.jpeg" />
|
<meta name="twitter:image" content="https://www.siddharthagolu.com/images/Love_for_mountains.jpeg" />
|
||||||
<meta name="twitter:title" content="Posts"/>
|
<meta name="twitter:title" content="Posts"/>
|
||||||
<meta name="twitter:description" content="Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general."/>
|
<meta name="twitter:description" content="Siddhartha's digital garden. This is the preferred dumping ground for my thoughts about books, cinema and life in general."/>
|
||||||
|
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
"@type": "ListItem",
|
"@type": "ListItem",
|
||||||
"position": 1 ,
|
"position": 1 ,
|
||||||
"name": "Posts",
|
"name": "Posts",
|
||||||
"item": "http://localhost:1313/posts/"
|
"item": "https://www.siddharthagolu.com/posts/"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -109,8 +109,8 @@
|
|||||||
<header class="header">
|
<header class="header">
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<a href="http://localhost:1313/" accesskey="h" title="Siddhartha Golu (Alt + H)">
|
<a href="https://www.siddharthagolu.com/" accesskey="h" title="Siddhartha Golu (Alt + H)">
|
||||||
<img src="http://localhost:1313/apple-touch-icon.png" alt="" aria-label="logo"
|
<img src="https://www.siddharthagolu.com/apple-touch-icon.png" alt="" aria-label="logo"
|
||||||
height="30">Siddhartha Golu</a>
|
height="30">Siddhartha Golu</a>
|
||||||
<div class="logo-switches">
|
<div class="logo-switches">
|
||||||
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
||||||
@@ -137,27 +137,27 @@
|
|||||||
</div>
|
</div>
|
||||||
<ul id="menu">
|
<ul id="menu">
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost:1313/about" title="About">
|
<a href="https://www.siddharthagolu.com/about" title="About">
|
||||||
<span>About</span>
|
<span>About</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost:1313/archive" title="Archive">
|
<a href="https://www.siddharthagolu.com/archive" title="Archive">
|
||||||
<span>Archive</span>
|
<span>Archive</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost:1313/categories" title="Categories">
|
<a href="https://www.siddharthagolu.com/categories" title="Categories">
|
||||||
<span>Categories</span>
|
<span>Categories</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost:1313/tags/" title="Tags">
|
<a href="https://www.siddharthagolu.com/tags/" title="Tags">
|
||||||
<span>Tags</span>
|
<span>Tags</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="http://localhost:1313/search/" title="Search (Alt + /)" accesskey=/>
|
<a href="https://www.siddharthagolu.com/search/" title="Search (Alt + /)" accesskey=/>
|
||||||
<span>Search</span>
|
<span>Search</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -165,12 +165,12 @@
|
|||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
<main class="main">
|
<main class="main">
|
||||||
<header class="page-header"><div class="breadcrumbs"><a href="http://localhost:1313/">Home</a></div>
|
<header class="page-header"><div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a></div>
|
||||||
<h1>
|
<h1>
|
||||||
Posts
|
Posts
|
||||||
<a href="/posts/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
@@ -181,24 +181,18 @@
|
|||||||
|
|
||||||
<article class="post-entry">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">On Depression and Recovery
|
<h2 class="entry-hint-parent">The Stranger and The Plague by Albert Camus
|
||||||
<span class="entry-hint" title="Draft">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" 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>
|
|
||||||
</h2>
|
</h2>
|
||||||
</header>
|
</header>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<p>Depression is a very heavy handed word, and probably the most misunderstood one too. It stealthily engulfs you in its tight grasp, attackiong when you least expect it to. One moment you’re enjoying the weather, basking in the glory of some happy thought, maybe remembering that on thing that your partner did for you - and suddenly from this wave of happy and positive emotions, a tiny splash comes towards you - the splash of doubt....</p>
|
<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>
|
</div>
|
||||||
<footer class="entry-footer"><span title='2019-01-17 01:24:41 +0530 IST'>🗓 January 17, 2019</span> · 1 min · Siddhartha Golu</footer>
|
<footer class="entry-footer"><span title='2019-01-21 14:39:14 +0530 IST'>🗓 January 21, 2019</span> · 7 min · 🔖 <a href="/tags/philosophy"> philosophy</a> · <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/existentialism"> existentialism</a></footer>
|
||||||
<a class="entry-link" aria-label="post link to On Depression and Recovery" href="http://localhost:1313/posts/on-depression-and-recovery/"></a>
|
<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>
|
</article>
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="prev" href="http://localhost:1313/posts/page/4/">
|
<a class="prev" href="https://www.siddharthagolu.com/posts/page/4/">
|
||||||
« Prev
|
« Prev
|
||||||
</a>
|
</a>
|
||||||
</nav>
|
</nav>
|
||||||
@@ -206,7 +200,7 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<span>© 2024 <a href="http://localhost:1313/">Siddhartha Golu</a></span> ·
|
<span>© 2024 <a href="https://www.siddharthagolu.com/">Siddhartha Golu</a></span> ·
|
||||||
|
|
||||||
<span>
|
<span>
|
||||||
Powered by
|
Powered by
|
||||||
|
@@ -270,36 +270,39 @@ radical precisely because i) they go against the cultural norms and ii) they que
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -264,36 +264,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -267,36 +267,39 @@ How to fool the world and become a Billionaire I remember hearing about Elizabet
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -308,36 +308,39 @@ that you’ll hardly feel the complications yourself and will end up profoun
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -299,36 +299,39 @@ When we asked women about their biggest fear, it is invariably about loss of fam
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -256,36 +256,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -271,36 +271,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -264,36 +264,39 @@ World history in a nutshell More than 1100 pages, this behemoth of a book still
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -263,36 +263,39 @@ I have been a lover of music since my early childhood - runs in the family - and
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -258,36 +258,39 @@ I had picked up this one thinking it to be an autobiography, and with an expecta
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -255,36 +255,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -264,36 +264,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -271,36 +271,39 @@ As is the norm for every child brought up in religion, I used to consider myself
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
453
public/posts/reading/proficient-motorcycling/index.html
Normal file
453
public/posts/reading/proficient-motorcycling/index.html
Normal file
@@ -0,0 +1,453 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" dir="auto">
|
||||||
|
|
||||||
|
<head><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">
|
||||||
|
<title>Proficient Motorcycling by David L. Hough | Siddhartha Golu</title>
|
||||||
|
<meta name="keywords" content="non-fiction, motorcycling">
|
||||||
|
<meta name="description" content="A good primer on learning how to ride well">
|
||||||
|
<meta name="author" content="Siddhartha Golu">
|
||||||
|
<link rel="canonical" href="https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/">
|
||||||
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.53bb04f4aba62c3f850b0b622140c2cc64a7f75a7f7b0c6acde33a5f70de0244.css" integrity="sha256-U7sE9KumLD+FCwtiIUDCzGSn91p/ewxqzeM6X3DeAkQ=" 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">
|
||||||
|
<link rel="apple-touch-icon" href="https://www.siddharthagolu.com/apple-touch-icon.png">
|
||||||
|
<link rel="mask-icon" href="https://www.siddharthagolu.com/safari-pinned-tab.svg">
|
||||||
|
<meta name="theme-color" content="#2e2e33">
|
||||||
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
|
<link rel="alternate" hreflang="en" href="https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/">
|
||||||
|
<noscript>
|
||||||
|
<style>
|
||||||
|
#theme-toggle,
|
||||||
|
.top-link {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
<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);
|
||||||
|
--code-block-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>
|
||||||
|
</noscript><script async defer data-website-id="34ce8dc6-488b-49ee-9a2f-8e70a7009f17" src="https://batman.siddharthagolu.com/batman.js"></script><a rel="me" href="https://fosstodon.org/@thelazyoxymoron" id="mastodon-link"></a>
|
||||||
|
<style>
|
||||||
|
.mastodon-link {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:title" content="Proficient Motorcycling by David L. Hough" />
|
||||||
|
<meta property="og:description" content="A good primer on learning how to ride well" />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<meta property="og:url" content="https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/" />
|
||||||
|
<meta property="og:image" content="https://www.siddharthagolu.com/images/Love_for_mountains.jpeg" />
|
||||||
|
<meta property="article:section" content="posts" />
|
||||||
|
<meta property="article:published_time" content="2024-09-01T22:15:16+05:30" />
|
||||||
|
<meta property="article:modified_time" content="2024-09-01T22:15:16+05:30" /><meta property="og:site_name" content="Siddhartha Golu" />
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta name="twitter:image" content="https://www.siddharthagolu.com/images/Love_for_mountains.jpeg" />
|
||||||
|
<meta name="twitter:title" content="Proficient Motorcycling by David L. Hough"/>
|
||||||
|
<meta name="twitter:description" content="A good primer on learning how to ride well"/>
|
||||||
|
|
||||||
|
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "BreadcrumbList",
|
||||||
|
"itemListElement": [
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 1 ,
|
||||||
|
"name": "Posts",
|
||||||
|
"item": "https://www.siddharthagolu.com/posts/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 2 ,
|
||||||
|
"name": "Proficient Motorcycling by David L. Hough",
|
||||||
|
"item": "https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "BlogPosting",
|
||||||
|
"headline": "Proficient Motorcycling by David L. Hough",
|
||||||
|
"name": "Proficient Motorcycling by David L. Hough",
|
||||||
|
"description": "A good primer on learning how to ride well",
|
||||||
|
"keywords": [
|
||||||
|
"non-fiction", "motorcycling"
|
||||||
|
],
|
||||||
|
"articleBody": "Started on: July 12th, 2024\nFinished on: Aug 29th, 2024\nTime to read: 9 hours, 9 minutes\nAlso published on Goodreads\nI have been riding motorcycles for past 7 years. I’ve had so many crashes in the early days that people were afraid of sitting as a pillion on my bike. Slowly I started internalizing few things and gradually the accidents stopped. This is a typical journey of how you learn any skill. However, it becomes a problem if you never give yourself a chance to see your skills from first principles and examine bad patterns that you might have internalized.\nReading this book was a refreshing reminder to examine how I ride a motorcycle.\nThis didn’t teach me anything extraordinary, but it explained so many things that I had, just sort of, accepted as given. Like how tyre pressure affects a bike’s traction, why counter-steering works, why front brakes are much more powerful (and should be used more frequently) than rear brakes, and on and on.\nPick up this book if you’d like to improve, and understand, how you ride.\n",
|
||||||
|
"wordCount" : "181",
|
||||||
|
"inLanguage": "en",
|
||||||
|
"image": "https://www.siddharthagolu.com/images/Love_for_mountains.jpeg","datePublished": "2024-09-01T22:15:16+05:30",
|
||||||
|
"dateModified": "2024-09-01T22:15:16+05:30",
|
||||||
|
"author":[{
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "Siddhartha Golu"
|
||||||
|
}],
|
||||||
|
"mainEntityOfPage": {
|
||||||
|
"@type": "WebPage",
|
||||||
|
"@id": "https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/"
|
||||||
|
},
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "Siddhartha Golu",
|
||||||
|
"logo": {
|
||||||
|
"@type": "ImageObject",
|
||||||
|
"url": "https://www.siddharthagolu.com/favicon.ico"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="" id="top">
|
||||||
|
<script>
|
||||||
|
if (localStorage.getItem("pref-theme") === "dark") {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
} else if (localStorage.getItem("pref-theme") === "light") {
|
||||||
|
document.body.classList.remove('dark')
|
||||||
|
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
<nav class="nav">
|
||||||
|
<div class="logo">
|
||||||
|
<a href="https://www.siddharthagolu.com/" accesskey="h" title="Siddhartha Golu (Alt + H)">
|
||||||
|
<img src="https://www.siddharthagolu.com/apple-touch-icon.png" alt="" aria-label="logo"
|
||||||
|
height="30">Siddhartha Golu</a>
|
||||||
|
<div class="logo-switches">
|
||||||
|
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
||||||
|
<svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="18" viewBox="0 0 24 24"
|
||||||
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||||
|
stroke-linejoin="round">
|
||||||
|
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||||
|
</svg>
|
||||||
|
<svg id="sun" xmlns="http://www.w3.org/2000/svg" width="24" height="18" viewBox="0 0 24 24"
|
||||||
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||||
|
stroke-linejoin="round">
|
||||||
|
<circle cx="12" cy="12" r="5"></circle>
|
||||||
|
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||||
|
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||||
|
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||||
|
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||||
|
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||||
|
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||||
|
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||||
|
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul id="menu">
|
||||||
|
<li>
|
||||||
|
<a href="https://www.siddharthagolu.com/about" title="About">
|
||||||
|
<span>About</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://www.siddharthagolu.com/archive" title="Archive">
|
||||||
|
<span>Archive</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://www.siddharthagolu.com/categories" title="Categories">
|
||||||
|
<span>Categories</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://www.siddharthagolu.com/tags/" title="Tags">
|
||||||
|
<span>Tags</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://www.siddharthagolu.com/search/" title="Search (Alt + /)" accesskey=/>
|
||||||
|
<span>Search</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main class="main">
|
||||||
|
|
||||||
|
<article class="post-single">
|
||||||
|
<header class="post-header">
|
||||||
|
<div class="breadcrumbs"><a href="https://www.siddharthagolu.com/">Home</a> » <a href="https://www.siddharthagolu.com/posts/">Posts</a></div>
|
||||||
|
<h1 class="post-title entry-hint-parent">
|
||||||
|
Proficient Motorcycling by David L. Hough
|
||||||
|
</h1>
|
||||||
|
<div class="post-meta"><span title='2024-09-01 22:15:16 +0530 IST'>🗓 September 1, 2024</span> · 1 min · 🔖 <a href="/tags/non-fiction"> non-fiction</a> · <a href="/tags/motorcycling"> motorcycling</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<div class="post-content"><p><strong>Started on:</strong> July 12th, 2024<br>
|
||||||
|
<strong>Finished on:</strong> Aug 29th, 2024<br>
|
||||||
|
<strong>Time to read:</strong> 9 hours, 9 minutes</p>
|
||||||
|
<p><a href="https://www.goodreads.com/review/show/2835723629">Also published on Goodreads</a></p>
|
||||||
|
<hr>
|
||||||
|
<p><img loading="lazy" src="/images/proficient.jpg#center" alt="PM Cover" title="PM Cover" />
|
||||||
|
</p>
|
||||||
|
<p>I have been riding motorcycles for past 7 years. I’ve had so many crashes in the early days that people were afraid of sitting as a pillion on my bike. Slowly I started internalizing few things and gradually the accidents stopped. This is a typical journey of how you learn any skill. However, it becomes a problem if you never give yourself a chance to see your skills from first principles and examine bad patterns that you might have internalized.</p>
|
||||||
|
<p>Reading this book was a refreshing reminder to examine how I ride a motorcycle.</p>
|
||||||
|
<p>This didn’t teach me anything extraordinary, but it explained so many things that I had, just sort of, accepted as given. Like how tyre pressure affects a bike’s traction, why counter-steering works, why front brakes are much more powerful (and should be used more frequently) than rear brakes, and on and on.</p>
|
||||||
|
<p>Pick up this book if you’d like to improve, and understand, how you ride.</p>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="post-footer">
|
||||||
|
<ul class="post-tags">
|
||||||
|
<li><a href="https://www.siddharthagolu.com/tags/non-fiction/">Non-Fiction</a></li>
|
||||||
|
<li><a href="https://www.siddharthagolu.com/tags/motorcycling/">Motorcycling</a></li>
|
||||||
|
</ul>
|
||||||
|
<nav class="paginav">
|
||||||
|
<a class="next" href="https://www.siddharthagolu.com/posts/til/freezing-apps-on-non-rooted-phones/">
|
||||||
|
<span class="title">Next »</span>
|
||||||
|
<br>
|
||||||
|
<span>Freezing Apps on Non Rooted Phones (Without a PC)</span>
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<section class="webring">
|
||||||
|
<h3 class="header">Articles from blogs I follow around the net</h3>
|
||||||
|
<section class="articles">
|
||||||
|
|
||||||
|
<div class="article">
|
||||||
|
<h4 class="title">
|
||||||
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
|
</h4>
|
||||||
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
|
<small class="source">
|
||||||
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
|
</small>
|
||||||
|
<small class="date">August 29, 2024</small>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="article">
|
||||||
|
<h4 class="title">
|
||||||
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
|
</h4>
|
||||||
|
<p class="summary">
|
||||||
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
|
<small class="source">
|
||||||
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
|
</small>
|
||||||
|
<small class="date">August 16, 2024</small>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="article">
|
||||||
|
<h4 class="title">
|
||||||
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
|
</h4>
|
||||||
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
|
<small class="source">
|
||||||
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
|
</small>
|
||||||
|
<small class="date">December 28, 2023</small>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<p class="attribution">
|
||||||
|
Generated by
|
||||||
|
<a href="https://git.sr.ht/~sircmpwn/openring">openring</a>
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
<style>
|
||||||
|
.webring .header {
|
||||||
|
margin: 0 0 12px;
|
||||||
|
}
|
||||||
|
.webring .articles {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin: -0.5rem;
|
||||||
|
}
|
||||||
|
.webring .title {
|
||||||
|
margin: 4px 0 12px;
|
||||||
|
}
|
||||||
|
.webring .article {
|
||||||
|
flex: 1 1 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
margin: 0.5rem;
|
||||||
|
padding: 0.5rem;
|
||||||
|
background: var(--openring-bg);
|
||||||
|
min-width: 10rem;
|
||||||
|
}
|
||||||
|
.webring .summary {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
flex: 1 1 0;
|
||||||
|
}
|
||||||
|
.webring .attribution {
|
||||||
|
text-align: right;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<span>© 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> &
|
||||||
|
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
|
||||||
|
</span>
|
||||||
|
</footer>
|
||||||
|
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
|
||||||
|
<path d="M12 6H0l6-6z" />
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
let menu = document.getElementById('menu')
|
||||||
|
if (menu) {
|
||||||
|
menu.scrollLeft = localStorage.getItem("menu-scroll-position");
|
||||||
|
menu.onscroll = function () {
|
||||||
|
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||||
|
anchor.addEventListener("click", function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var id = this.getAttribute("href").substr(1);
|
||||||
|
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||||
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||||
|
behavior: "smooth"
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||||
|
}
|
||||||
|
if (id === "top") {
|
||||||
|
history.replaceState(null, null, " ");
|
||||||
|
} else {
|
||||||
|
history.pushState(null, null, `#${id}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
var mybutton = document.getElementById("top-link");
|
||||||
|
window.onscroll = function () {
|
||||||
|
if (document.body.scrollTop > 800 || document.documentElement.scrollTop > 800) {
|
||||||
|
mybutton.style.visibility = "visible";
|
||||||
|
mybutton.style.opacity = "1";
|
||||||
|
} else {
|
||||||
|
mybutton.style.visibility = "hidden";
|
||||||
|
mybutton.style.opacity = "0";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||||
|
if (document.body.className.includes("dark")) {
|
||||||
|
document.body.classList.remove('dark');
|
||||||
|
localStorage.setItem("pref-theme", 'light');
|
||||||
|
} else {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
localStorage.setItem("pref-theme", 'dark');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
document.querySelectorAll('pre > code').forEach((codeblock) => {
|
||||||
|
const container = codeblock.parentNode.parentNode;
|
||||||
|
|
||||||
|
const copybutton = document.createElement('button');
|
||||||
|
copybutton.classList.add('copy-code');
|
||||||
|
copybutton.innerHTML = 'copy';
|
||||||
|
|
||||||
|
function copyingDone() {
|
||||||
|
copybutton.innerHTML = 'copied!';
|
||||||
|
setTimeout(() => {
|
||||||
|
copybutton.innerHTML = 'copy';
|
||||||
|
}, 2000);
|
||||||
|
}
|
||||||
|
|
||||||
|
copybutton.addEventListener('click', (cb) => {
|
||||||
|
if ('clipboard' in navigator) {
|
||||||
|
navigator.clipboard.writeText(codeblock.textContent);
|
||||||
|
copyingDone();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const range = document.createRange();
|
||||||
|
range.selectNodeContents(codeblock);
|
||||||
|
const selection = window.getSelection();
|
||||||
|
selection.removeAllRanges();
|
||||||
|
selection.addRange(range);
|
||||||
|
try {
|
||||||
|
document.execCommand('copy');
|
||||||
|
copyingDone();
|
||||||
|
} catch (e) { };
|
||||||
|
selection.removeRange(range);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (container.classList.contains("highlight")) {
|
||||||
|
container.appendChild(copybutton);
|
||||||
|
} else if (container.parentNode.firstChild == container) {
|
||||||
|
|
||||||
|
} else if (codeblock.parentNode.parentNode.parentNode.parentNode.parentNode.nodeName == "TABLE") {
|
||||||
|
|
||||||
|
codeblock.parentNode.parentNode.parentNode.parentNode.parentNode.appendChild(copybutton);
|
||||||
|
} else {
|
||||||
|
|
||||||
|
codeblock.parentNode.appendChild(copybutton);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@@ -269,36 +269,39 @@ post</strong> on Anki (<a href="http://augmentingcognition.com/ltm.html">“
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -268,36 +268,39 @@ If you’ve ever had a panic attack. If you’ve ever counted the number
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -282,36 +282,39 @@ up. And this is what I thought: If there are this many visible parts of my body
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -262,36 +262,39 @@ Now that I’ve moved away from reading fiction, I find that I face a lot of
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -257,36 +257,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -271,36 +271,39 @@ Reading fiction has always been a double-edged sword for me. Some of the most in
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -274,36 +274,39 @@ other person respects and trusts us enough to think we should understand their u
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -308,36 +308,39 @@ hope that I keep myself motivated enough to finish all these books.</p>
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -268,36 +268,39 @@
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -263,36 +263,39 @@ I am an atheist interested in the power of mindfulness and the whole world of so
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -329,36 +329,39 @@ it has to.</p>
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -267,6 +267,11 @@ should be disabled.</li>
|
|||||||
<li><a href="https://www.siddharthagolu.com/tags/tinkering/">Tinkering</a></li>
|
<li><a href="https://www.siddharthagolu.com/tags/tinkering/">Tinkering</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<nav class="paginav">
|
<nav class="paginav">
|
||||||
|
<a class="prev" href="https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/">
|
||||||
|
<span class="title">« Prev</span>
|
||||||
|
<br>
|
||||||
|
<span>Proficient Motorcycling by David L. Hough</span>
|
||||||
|
</a>
|
||||||
<a class="next" href="https://www.siddharthagolu.com/posts/reading/midnight-rushdie/">
|
<a class="next" href="https://www.siddharthagolu.com/posts/reading/midnight-rushdie/">
|
||||||
<span class="title">Next »</span>
|
<span class="title">Next »</span>
|
||||||
<br>
|
<br>
|
||||||
@@ -283,36 +288,39 @@ should be disabled.</li>
|
|||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://adamtooze.substack.com/p/top-links-441-ai-tech-and-the-us" target="_blank" rel="noopener">Top Links 441 AI, tech & the US stock market, South Korean gas, Rafah's destruction and Nestlé coming for your pets. </a>
|
<a href="https://newsletter.posthog.com/p/doing-support-makes-you-a-better" target="_blank" rel="noopener">Doing support makes you a better engineer</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">Great links, images and reading from Chartbook newsletter by Adam Tooze</p>
|
<p class="summary">What we've learned about providing support that doesn't suck (and does scale)!</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://adamtooze.substack.com">Chartbook</a>
|
via <a href="https://newsletter.posthog.com">Product for Engineers</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 29, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://blog.samaltman.com/gpt-4o" target="_blank" rel="noopener">GPT-4o</a>
|
<a href="https://aeon.co/essays/c-l-r-james-foresaw-the-crisis-of-us-liberal-democracy?utm_source=rss-feed" target="_blank" rel="noopener">C L R James and America</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">
|
<p class="summary">
|
||||||
There are two things from our announcement today I wanted to highlight.First, a key part of our mission is to put very capable AI tools in the hands of people for free (or at a great price). I am very proud that we’ve made the best model in the worl…</p>
|
The brilliant Trinidadian thinker is remembered as an admirer of the US but he also warned of its dark political future - by Harvey Neptune Read at Aeon
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://blog.samaltman.com">Sam Altman</a>
|
via <a href="https://aeon.co">Aeon | a world of ideas</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 7, 2024</small>
|
<small class="date">August 16, 2024</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<h4 class="title">
|
<h4 class="title">
|
||||||
<a href="https://vivekkaul.com/2024/06/03/the-bse-sensex-registers-its-214th-highest-single-day-gain-ever/?utm_source=rss&utm_medium=rss&utm_campaign=the-bse-sensex-registers-its-214th-highest-single-day-gain-ever" target="_blank" rel="noopener">The BSE Sensex registers its 214th highest single day gain ever</a>
|
<a href="https://perell.com/essay/how-ive-studied-the-bible/" target="_blank" rel="noopener">How I’ve Studied the Bible</a>
|
||||||
</h4>
|
</h4>
|
||||||
<p class="summary">The BSE Sensex–India’s most popular stock market index–closed the day today at an all-time-high of 76,468.78 points, a gain of 2,507.47 points from where it closed on Friday (May 31, 2024). It’s the highest gain single day gain that the Sensex has seen–of…</p>
|
<p class="summary">Years ago, I realized that the Bible is the foundational book of Western civilization. If I was going to be an educated person, I needed to know what it said.
|
||||||
|
The post How I’ve Studied the Bible appeared first on David Perell.
|
||||||
|
</p>
|
||||||
<small class="source">
|
<small class="source">
|
||||||
via <a href="https://vivekkaul.com">Vivek Kaul</a>
|
via <a href="https://perell.com/">David Perell</a>
|
||||||
</small>
|
</small>
|
||||||
<small class="date">June 3, 2024</small>
|
<small class="date">December 28, 2023</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@@ -2,35 +2,44 @@
|
|||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
<url>
|
<url>
|
||||||
|
<loc>https://www.siddharthagolu.com/categories/book-notes/</loc>
|
||||||
|
<lastmod>2024-09-01T22:15:16+05:30</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>https://www.siddharthagolu.com/categories/</loc>
|
||||||
|
<lastmod>2024-09-01T22:15:16+05:30</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>https://www.siddharthagolu.com/tags/motorcycling/</loc>
|
||||||
|
<lastmod>2024-09-01T22:15:16+05:30</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>https://www.siddharthagolu.com/tags/non-fiction/</loc>
|
||||||
|
<lastmod>2024-09-01T22:15:16+05:30</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>https://www.siddharthagolu.com/posts/</loc>
|
||||||
|
<lastmod>2024-09-01T22:15:16+05:30</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>https://www.siddharthagolu.com/posts/reading/proficient-motorcycling/</loc>
|
||||||
|
<lastmod>2024-09-01T22:15:16+05:30</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>https://www.siddharthagolu.com/</loc>
|
||||||
|
<lastmod>2024-09-01T22:15:16+05:30</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>https://www.siddharthagolu.com/tags/</loc>
|
||||||
|
<lastmod>2024-09-01T22:15:16+05:30</lastmod>
|
||||||
|
</url><url>
|
||||||
<loc>https://www.siddharthagolu.com/tags/android/</loc>
|
<loc>https://www.siddharthagolu.com/tags/android/</loc>
|
||||||
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://www.siddharthagolu.com/tags/apps/</loc>
|
<loc>https://www.siddharthagolu.com/tags/apps/</loc>
|
||||||
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
||||||
</url><url>
|
|
||||||
<loc>https://www.siddharthagolu.com/categories/</loc>
|
|
||||||
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://www.siddharthagolu.com/posts/til/freezing-apps-on-non-rooted-phones/</loc>
|
<loc>https://www.siddharthagolu.com/posts/til/freezing-apps-on-non-rooted-phones/</loc>
|
||||||
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
||||||
</url><url>
|
|
||||||
<loc>https://www.siddharthagolu.com/posts/</loc>
|
|
||||||
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
|
||||||
</url><url>
|
|
||||||
<loc>https://www.siddharthagolu.com/</loc>
|
|
||||||
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
|
||||||
</url><url>
|
|
||||||
<loc>https://www.siddharthagolu.com/tags/</loc>
|
|
||||||
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://www.siddharthagolu.com/categories/til/</loc>
|
<loc>https://www.siddharthagolu.com/categories/til/</loc>
|
||||||
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://www.siddharthagolu.com/tags/tinkering/</loc>
|
<loc>https://www.siddharthagolu.com/tags/tinkering/</loc>
|
||||||
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
<lastmod>2024-06-09T09:57:20+05:30</lastmod>
|
||||||
</url><url>
|
|
||||||
<loc>https://www.siddharthagolu.com/categories/book-notes/</loc>
|
|
||||||
<lastmod>2024-04-21T20:33:23+05:30</lastmod>
|
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://www.siddharthagolu.com/tags/favourites/</loc>
|
<loc>https://www.siddharthagolu.com/tags/favourites/</loc>
|
||||||
<lastmod>2024-04-21T20:33:23+05:30</lastmod>
|
<lastmod>2024-04-21T20:33:23+05:30</lastmod>
|
||||||
@@ -49,9 +58,6 @@
|
|||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://www.siddharthagolu.com/tags/feminism/</loc>
|
<loc>https://www.siddharthagolu.com/tags/feminism/</loc>
|
||||||
<lastmod>2024-01-27T20:41:04+05:30</lastmod>
|
<lastmod>2024-01-27T20:41:04+05:30</lastmod>
|
||||||
</url><url>
|
|
||||||
<loc>https://www.siddharthagolu.com/tags/non-fiction/</loc>
|
|
||||||
<lastmod>2024-01-28T12:10:43+05:30</lastmod>
|
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://www.siddharthagolu.com/tags/audiobook/</loc>
|
<loc>https://www.siddharthagolu.com/tags/audiobook/</loc>
|
||||||
<lastmod>2024-01-27T20:41:04+05:30</lastmod>
|
<lastmod>2024-01-27T20:41:04+05:30</lastmod>
|
||||||
@@ -154,9 +160,6 @@
|
|||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://www.siddharthagolu.com/tags/india/</loc>
|
<loc>https://www.siddharthagolu.com/tags/india/</loc>
|
||||||
<lastmod>2024-01-27T20:41:04+05:30</lastmod>
|
<lastmod>2024-01-27T20:41:04+05:30</lastmod>
|
||||||
</url><url>
|
|
||||||
<loc>https://www.siddharthagolu.com/tags/motorcycling/</loc>
|
|
||||||
<lastmod>2022-05-01T23:09:23+05:30</lastmod>
|
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://www.siddharthagolu.com/posts/cinema/riding-solo/</loc>
|
<loc>https://www.siddharthagolu.com/posts/cinema/riding-solo/</loc>
|
||||||
<lastmod>2022-05-01T23:09:23+05:30</lastmod>
|
<lastmod>2022-05-01T23:09:23+05:30</lastmod>
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Android
|
Android
|
||||||
<a href="/tags/android/index.xml" title="RSS" aria-label="RSS">
|
<a href="/tags/android/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sun, 09 Jun 2024 09:57:20 +0530</lastBuildDate>
|
<lastBuildDate>Sun, 09 Jun 2024 09:57:20 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/tags/android/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/tags/android/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Animal-Cruelty
|
Animal-Cruelty
|
||||||
<a href="/tags/animal-cruelty/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/tags/animal-cruelty/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/tags/animal-cruelty/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Animation
|
Animation
|
||||||
<a href="/tags/animation/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sun, 01 May 2022 23:09:23 +0530</lastBuildDate>
|
<lastBuildDate>Sun, 01 May 2022 23:09:23 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/tags/animation/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/tags/animation/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Apps
|
Apps
|
||||||
<a href="/tags/apps/index.xml" title="RSS" aria-label="RSS">
|
<a href="/tags/apps/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sun, 09 Jun 2024 09:57:20 +0530</lastBuildDate>
|
<lastBuildDate>Sun, 09 Jun 2024 09:57:20 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/tags/apps/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/tags/apps/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Architecture
|
Architecture
|
||||||
<a href="/tags/architecture/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/tags/architecture/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/tags/architecture/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Asia
|
Asia
|
||||||
<a href="/tags/asia/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/tags/asia/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/tags/asia/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Audiobook
|
Audiobook
|
||||||
<a href="/tags/audiobook/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/tags/audiobook/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/tags/audiobook/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Career-Advice
|
Career-Advice
|
||||||
<a href="/tags/career-advice/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/tags/career-advice/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/tags/career-advice/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Classical-Music
|
Classical-Music
|
||||||
<a href="/tags/classical-music/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
<url>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</url>
|
||||||
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
<link>https://www.siddharthagolu.com/images/Love_for_mountains.jpeg</link>
|
||||||
</image>
|
</image>
|
||||||
<generator>Hugo -- 0.129.0</generator>
|
<generator>Hugo -- 0.133.1</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
<lastBuildDate>Sat, 27 Jan 2024 20:41:04 +0530</lastBuildDate>
|
||||||
<atom:link href="https://www.siddharthagolu.com/tags/classical-music/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://www.siddharthagolu.com/tags/classical-music/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
@@ -154,8 +154,8 @@
|
|||||||
<h1>
|
<h1>
|
||||||
Colorful-Quirks
|
Colorful-Quirks
|
||||||
<a href="/tags/colorful-quirks/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"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
||||||
stroke-linecap="round" stroke-linejoin="round" height="23">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23">
|
||||||
<path d="M4 11a9 9 0 0 1 9 9" />
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
||||||
<path d="M4 4a16 16 0 0 1 16 16" />
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
||||||
<circle cx="5" cy="19" r="1" />
|
<circle cx="5" cy="19" r="1" />
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user