~/web/blog_schedule.js
File Edit View
> blog_schedule.js
* thoughts.js bro this is just here for the effect lol
+ ideas.txt bro this is just here for the effect lol
1 2 3 4 5 6 7 8 9
// Welcome to my blog - where I dump my thoughts
const schedule = "there is no schedule. just whenever i feel like it.";
const topics = ["career stuff", "programming (obviously)", "projects", "life lessons", "literally anything tbh"];
function buildBlogPosts() {
  return topics.map(topic => ({
    topic, publishedWhen: schedule
  }));
}

// Recent Posts