Skip to content

Commit

Permalink
more thoughts
Browse files Browse the repository at this point in the history
  • Loading branch information
activatedgeek committed Dec 19, 2024
1 parent dc2c4cd commit 0a1f266
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 3 deletions.
6 changes: 6 additions & 0 deletions src/content/thoughts/202412022230.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
date: Dec 2 2024, 22:30 -0500
---

As we grow older, life becomes less about oneself and more about people around.
A relentless force coming at you hard.
6 changes: 6 additions & 0 deletions src/content/thoughts/202412162152.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
date: Dec 16 2024, 21:52 +0530
---

I have a new found respect for rituals.
By appealing to authority, they convey expectations and quash disagreements.
5 changes: 5 additions & 0 deletions src/content/thoughts/202412171329.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
date: Dec 17 2024, 13:29 +0530
---

If you want to see [Two Indias](https://www.youtube.com/watch?v=5A-F9qu6c_4), take the window seat on [Vande Bharat Express](https://en.wikipedia.org/wiki/Vande_Bharat_Express) from Delhi.
5 changes: 5 additions & 0 deletions src/content/thoughts/202412191132.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
date: Dec 19 2024, 11:32 +0530
---

How does one develop healthy narcissism?
6 changes: 3 additions & 3 deletions src/pages/thoughts/[page].astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Date from "@components/Date.astro";
export async function getStaticPaths({ paginate }) {
const thoughts = await getCollection("thoughts");
return paginate(thoughts.reverse(), { pageSize: 20 });
return paginate(thoughts.reverse(), { pageSize: 11 });
}
export const prerender = true;
Expand Down Expand Up @@ -56,7 +56,7 @@ const {
href={url.prev ? url.prev : null}
style={url.prev ? "" : "opacity: 0; cursor: default;"}
>
{"< "}Previous
{"< "}Newer
</a>
</li>
</ul>
Expand All @@ -71,7 +71,7 @@ const {
href={url.next ? url.next : null}
style={url.next ? "" : "opacity: 0; cursor: default;"}
>
Next{" >"}
Older{" >"}
</a>
</li>
</ul>
Expand Down

0 comments on commit 0a1f266

Please sign in to comment.