diff --git a/src/components/Header.astro b/src/components/Header.astro index 95d8141..495cb0a 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -6,5 +6,6 @@ import Link from "./Link.astro"; diff --git a/src/content/config.ts b/src/content/config.ts index 32b905a..dc37935 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -14,4 +14,13 @@ const blog = defineCollection({ }), }); -export const collections = { blog }; +const read = defineCollection({ + type: "content", + schema: z.object({ + title: z.string(), + author: z.string(), + goodReadLink: z.string().optional(), + }), +}); + +export const collections = { blog, read }; diff --git a/src/content/read/being-you.md b/src/content/read/being-you.md new file mode 100644 index 0000000..7455005 --- /dev/null +++ b/src/content/read/being-you.md @@ -0,0 +1,6 @@ +--- +title: Being You +author: Anil Seth +--- + +I am still organizing my notes for this book. diff --git a/src/content/read/the-creative-act.md b/src/content/read/the-creative-act.md new file mode 100644 index 0000000..ac9e0fd --- /dev/null +++ b/src/content/read/the-creative-act.md @@ -0,0 +1,34 @@ +--- +title: The Creative Act +author: Rick Rubin +goodReadLink: https://www.goodreads.com/book/show/60965426-the-creative-act +--- + +## Everyone is a creator + +- To live as an artist is a way of being in the world + +## Tuning in + +- We are all participating in a larger creative act we are not conducting. We are being conducted. The artist is on a cosmic timetable, just like all of nature. +- In this great unfolding, ideas and thoughts, themes and songs and other works of art exist in the aether and ripen on schedule, ready to find expression in the physical world. +As artists, it is our job to draw down this information, transmute it, and share it. +- We are all antennae for creative thought. +- To pick up on signals, don't look for it, or try to predict and analyze our way into it. Instead, create an open space that allows it. A space so free of the normal overpacked condition of our minds that it functions as a vacuum. +- Practicing a way of being that allows you to see the world through uncorrupted, innocent eyes can free you to act in concert with the universe's timetable. + +## The source of creativity + +- The Source is out there. A wisdom surrounding us, an inexhaustible offering that is always available. +- Art is a circulation of energetic ideas. What makes them appear new is that they are combining differently each time they come back. + +## Awareness + +- The universe is only as large as our perception of it. When we cultivate our awareness, we are expanding the universe. + +## The Vessal and the Filter + +- The vessel holds the sum of our thoughts, feelings, dreams, and experiences in the world. +- Information is filtered uniquely for each person before entering the vessel. +- Artists seek to restore childlike perceptions, a more innocent state of wonder and appreciation untethered to utility or survival. +- One can think of the creative act as taking the sum of our vessel's contents as potential material, selecting for elements that seem useful or significant in the moment, and re-representing them. diff --git a/src/content/read/user-friendly.md b/src/content/read/user-friendly.md new file mode 100644 index 0000000..afc0746 --- /dev/null +++ b/src/content/read/user-friendly.md @@ -0,0 +1,7 @@ +--- +title: User Friendly +author: Cliff Kuang, Robert Fabricant +goodReadLink: https://www.goodreads.com/book/show/41940285-user-friendly +--- + +I will start making notes here when I start reading this book. diff --git a/src/content/read/zero-to-one.md b/src/content/read/zero-to-one.md new file mode 100644 index 0000000..d6dbbc7 --- /dev/null +++ b/src/content/read/zero-to-one.md @@ -0,0 +1,7 @@ +--- +title: Zero to One +author: Peter Thiel, Blake Masters +goodReadLink: https://www.goodreads.com/book/show/18050143-zero-to-one +--- + +I will start making notes here when I start reading this book. diff --git a/src/layouts/BookRead.astro b/src/layouts/BookRead.astro new file mode 100644 index 0000000..9b00483 --- /dev/null +++ b/src/layouts/BookRead.astro @@ -0,0 +1,58 @@ +--- +import type { CollectionEntry } from "astro:content"; +import BaseHead from "../components/BaseHead.astro"; + +type Props = CollectionEntry<"read">["data"]; + +const { title, author, goodReadLink } = Astro.props; +--- + + + +
+kennethnym
dumping ground for my thoughts. all opinions are my own.
++ software engineer @ gitpod. + all opinions are my own. +
+check out the books I am reading!
-
software engineer. unpaid hhkb salesman.
++ software engineer @ gitpod. + unpaid hhkb salesman. +
+ books i am reading +
+ Quotes and notes from my readings. +
+“
++ {quote.content} +
+ +