Buy Me a Coffee at ko-fi.com

Tuesday, November 19, 2024

Week 47 of 2024 • Q4

⬅️ Previous Day | 🏠 Home | Next Day ➡️

📊 Day at a Glance

  • 🗓️ Day: 324 of 2024
  • 📅 Week: 47 of 52
  • 📊 Quarter Progress: 54%
  • 🎯 Days until EOY: 41
  • 🔄 Created at: 8:01 AM

📰 AI News

Today’s AI News

Big Achievement Today:

NovaBrew Episode 1 Script


📝 Daily Reflections


Tue, 11/19/2024, 22:00 I’m in another hotel tonight. I couldn’t get into my van cuz it’s locked and it won’t unlock. I decided I didn’t want to deal with that tonight, and that it was a problem for tomorrow me, so I just walked to this hotel and bought a room for the night with my last 150 left until I find more money. That’s totally ok, I have sources. I’m gonna have to tap into them, but now I know how to do it and why. I’m ready, I have it down, I get it. I see how to use who and what I am to make the world better. NovaBrew is going to be the first thing I take seriously online. It’s not perfect, and it doesn’t need to be. It’s not my reputation or my identity, even thought that might seem counterintuitive. It’s a business. It’s not me expressing myself and being all that for social media. It’s me having a show and making the decision to talk about and pursue this as a business for the purpose of talking about and to other business owners who pulled themselves up by their bootstraps and made it happen. I want to find other people like me who didn’t come from money, didn’t have everything handed to them, but got kicked around and spit on and still made it happen. I want to build my life on the stories of those people, because who better to build myself up with than A) other people like me and B) people who were down and got up Those people will be just like me and they will benefit from me in the same way I’ll benefit from them. It’s all good it’s all love and it’s all fun and games. I’m ready let’s do this mayne let’s DO THIS I’ve seen enough, I’m gonna make some mistakes and that’s ok. I’m not gonna make any mistakes that are gonna permanently fuck me so I’ve got this little mini win with the storage and the van and the room and this moment. Let’s make the most of it. It’s my motherfucking birthday tomorrow. I’m ready to grow up. Mantle of responsibility assumed. It’s time for me to take care of me for me, and for me alone. Not for anybody else. For ME. Today was a good day. This system is a good system for me. I feel productive as fuck, I don’t have to keep repeating myself, I get better each time I re-read my old work, it’s clean and legible and linkable, and I can always upgrade it. I can make my AI do it eventually for me once it’s good enough to do it and my agents can go and pick little fruits from the web and bring them back and plant them here in m knowledge garden. I’m so ready to be living in my life next year. I can’t wait. It’s gonna be so fucking cool. I’m so excited for this to finally, FINALLY be my life. I’ve waited for the right moment, and in reality I was just waiting to become the right version of myself. The version who isn’t afraid anymore. I’m not afraid anymore.


Tue, 11/19/2024, 17:26 Let’s create the Winfo Obsidian plugin for making, managing, and tracking work efforts on projects How does it work:

  • Adds work efforts to notes by linking them in the frontmatter and on the page
  • Handles the routing and file / folder management
  • Helps you tag and mark notes for inclusion in work efforts
  • Facilitates the easy adding of LLM chats or any pasted content to your notes Example workflow: You have a chat with ChatGPT about a piece of code you’re working on. You open your Obsidian vault and use Winfo to add the entire ChatGPT conversation into your Work Effort into a “Chat” file that is automatically linked to both the work effort and the project file. You accomplished this by hitting a hotkey that starts the Winfo plugin in Obsidian, which then gives you a textbox into which you are supposed to paste a bunch of text. Winfo takes care of everything under the hood, and gives you a formatted document with links based on whatever you added into the text box. It will start as a work effort management assistant, and will evolve into a very complex AI knowledge management application over time.

Link to Claude Chat:

https://claude.ai/chat/60b8e10a-5421-4f8c-a402-f6ce6b48fdf3

Claude just gave me a huge block of code, let’s iterate on it…

import { 
  App,
  Plugin,
  PluginSettingTab,
  Setting,
  TFile,
  Notice,
  Modal,
  MarkdownView,
  FrontMatterCache,
  MetadataCache
} from 'obsidian';
 
interface WinfoSettings {
  defaultWorkEffortFolder: string;
  defaultChatFolder: string;
  workEffortTemplate: string;
  chatTemplate: string;
  hotkey: string;
}
 
const DEFAULT_SETTINGS: WinfoSettings = {
  defaultWorkEffortFolder: 'Work Efforts',
  defaultChatFolder: 'Chats',
  workEffortTemplate: '---\ntitle: {{title}}\ndate: {{date}}\ntype: work-effort\nstatus: active\nlinks: []\n---\n\n# {{title}}\n\n## Overview\n\n## Related Chats\n\n## Notes\n\n## Action Items\n',
  chatTemplate: '---\ntitle: {{title}}\ndate: {{date}}\ntype: chat\nwork_effort: {{workEffort}}\nlinks: []\n---\n\n# {{title}}\n\n## Content\n\n{{content}}\n\n## Notes\n\n## Action Items\n',
  hotkey: 'Mod+Shift+W'
};
 
export default class WinfoPlugin extends Plugin {
  settings: WinfoSettings;
 
  async onload() {
    await this.loadSettings();
 
    // Add ribbon icon
    this.addRibbonIcon('clipboard-list', 'Winfo', () => {
      new WorkEffortModal(this.app, this).open();
    });
 
    // Add command to open Winfo modal
    this.addCommand({
      id: 'open-winfo-modal',
      name: 'Add Content to Work Effort',
      hotkeys: [{ modifiers: ['Mod', 'Shift'], key: 'w' }],
      callback: () => {
        new WorkEffortModal(this.app, this).open();
      }
    });
 
    // Add settings tab
    this.addSettingTab(new WinfoSettingTab(this.app, this));
  }
 
  async loadSettings() {
    this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
  }
 
  async saveSettings() {
    await this.saveData(this.settings);
  }
}
 
class WorkEffortModal extends Modal {
  plugin: WinfoPlugin;
  content: string = '';
  selectedWorkEffort: string = '';
 
  constructor(app: App, plugin: WinfoPlugin) {
    super(app);
    this.plugin = plugin;
  }
 
  onOpen() {
    const { contentEl } = this;
    contentEl.empty();
 
    contentEl.createEl('h2', { text: 'Add Content to Work Effort' });
 
    // Work Effort Selection
    const workEffortSelect = contentEl.createEl('select');
    this.loadWorkEfforts(workEffortSelect);
 
    // Content Input
    const contentInput = contentEl.createEl('textarea', {
      attr: {
        placeholder: 'Paste your content here...',
        rows: '10'
      }
    });
    contentInput.addEventListener('input', (e: Event) => {
      this.content = (e.target as HTMLTextAreaElement).value;
    });
 
    // Add Button
    const submitButton = contentEl.createEl('button', { text: 'Add Content' });
    submitButton.addEventListener('click', () => {
      this.processContent();
    });
  }
 
  async loadWorkEfforts(selectEl: HTMLSelectElement) {
    const workEffortFolder = this.plugin.settings.defaultWorkEffortFolder;
    const files = this.app.vault.getFiles();
    
    const workEfforts = files.filter(file => {
      const cache = this.app.metadataCache.getFileCache(file);
      return cache?.frontmatter?.type === 'work-effort';
    });
 
    workEfforts.forEach(file => {
      const option = selectEl.createEl('option', {
        text: file.basename,
        value: file.path
      });
    });
 
    selectEl.addEventListener('change', (e: Event) => {
      this.selectedWorkEffort = (e.target as HTMLSelectElement).value;
    });
  }
 
  async processContent() {
    if (!this.content || !this.selectedWorkEffort) {
      new Notice('Please select a work effort and add content');
      return;
    }
 
    try {
      // Create chat file
      const chatFileName = `Chat-${Date.now()}.md`;
      const chatPath = `${this.plugin.settings.defaultChatFolder}/${chatFileName}`;
      
      const template = this.plugin.settings.chatTemplate
        .replace('{{title}}', chatFileName)
        .replace('{{date}}', new Date().toISOString())
        .replace('{{workEffort}}', this.selectedWorkEffort)
        .replace('{{content}}', this.content);
 
      await this.app.vault.create(chatPath, template);
 
      // Update work effort file with link to chat
      const workEffortFile = this.app.vault.getAbstractFileByPath(this.selectedWorkEffort) as TFile;
      const workEffortContent = await this.app.vault.read(workEffortFile);
      
      const updatedContent = this.addChatLink(workEffortContent, chatPath);
      await this.app.vault.modify(workEffortFile, updatedContent);
 
      new Notice('Content added successfully!');
      this.close();
    } catch (error) {
      new Notice('Error processing content: ' + error.message);
    }
  }
 
  addChatLink(content: string, chatPath: string): string {
    const lines = content.split('\n');
    const relatedChatsIndex = lines.findIndex(line => line.trim() === '## Related Chats');
    
    if (relatedChatsIndex === -1) return content;
 
    lines.splice(relatedChatsIndex + 1, 0, `- [[${chatPath}]]`);
    return lines.join('\n');
  }
 
  onClose() {
    const { contentEl } = this;
    contentEl.empty();
  }
}
 
class WinfoSettingTab extends PluginSettingTab {
  plugin: WinfoPlugin;
 
  constructor(app: App, plugin: WinfoPlugin) {
    super(app, plugin);
    this.plugin = plugin;
  }
 
  display(): void {
    const { containerEl } = this;
    containerEl.empty();
 
    containerEl.createEl('h2', { text: 'Winfo Settings' });
 
    new Setting(containerEl)
      .setName('Work Effort Folder')
      .setDesc('Default folder for work efforts')
      .addText(text => text
        .setPlaceholder('Work Efforts')
        .setValue(this.plugin.settings.defaultWorkEffortFolder)
        .onChange(async (value) => {
          this.plugin.settings.defaultWorkEffortFolder = value;
          await this.plugin.saveSettings();
        }));
 
    new Setting(containerEl)
      .setName('Chat Folder')
      .setDesc('Default folder for chat logs')
      .addText(text => text
        .setPlaceholder('Chats')
        .setValue(this.plugin.settings.defaultChatFolder)
        .onChange(async (value) => {
          this.plugin.settings.defaultChatFolder = value;
          await this.plugin.saveSettings();
        }));
 
    new Setting(containerEl)
      .setName('Work Effort Template')
      .setDesc('Template for new work efforts')
      .addTextArea(text => text
        .setPlaceholder('Enter template...')
        .setValue(this.plugin.settings.workEffortTemplate)
        .onChange(async (value) => {
          this.plugin.settings.workEffortTemplate = value;
          await this.plugin.saveSettings();
        }));
 
    new Setting(containerEl)
      .setName('Chat Template')
      .setDesc('Template for new chat logs')
      .addTextArea(text => text
        .setPlaceholder('Enter template...')
        .setValue(this.plugin.settings.chatTemplate)
        .onChange(async (value) => {
          this.plugin.settings.chatTemplate = value;
          await this.plugin.saveSettings();
        }));
  }
}

Winfo let’s go work effort 1 beginning…

WE4458: Create Winfo Obsidian App CHAT4458-001

Those two files alone are all you need to get started building a complex AI Obsidian plugin. This is so fucking cool man. That’s literally so much time and effort saved. I have to spin my chats up every day and now I just…don’t need to do that anymore. I never have to redo a chain of thought. I can set my agents on workflows mining intelligence and they can just…spin. Forever. Talking to each other, solving problems, indefinitely, forever. I’m just simulating shit over and over again, forever. I can make my own problems solve themselves. This is…this is unbelievable. This is insane. This is incredible. WOW.

I never have to redo my intellectual work if I pull this off. I can just let my brain go and turn myself into a hybrid hivemind superorganism. Woah. WOAH.


Tue, 11/19/2024, 17:08 Prompt Engineering! Yay! Nobody signed up nor showed up for Intro to AI and that is A-OK with me. I’m happy to just listen and watch as Liz does their thing. I’m happy to just observe and learn. This is my time to simply participate and enjoy. This is a happy time :) I’m extremely thoroughly excited to make this be what I need it to be. This YouTube thing is what I want and need for the next phase of my life. I’m THRILLED to have this happen for me and for us.

Tue, 11/19/2024, 17:10 Ok this is lit and is gonna get more lit. I’m ready to move forward with my life with this new understanding that I’ve gained from living and seeing as much life as I’ve seen. I simply know more than most people I’ve met, and now I can prove it. I’ll build this knowledge bank and then I’ll build an AI you can query with things I’ve collected and curated. The garden of my mind is something I want to offer to the world. We all do don’t we? I’m ready. Let’s make YouTube (yapping really well about things people care about) my job. It’s not about me, or my opinions. It’s about giving people actionable information they can use to make their lives easier and better. It’s about teaching them to do things that make them happier, healthier, and better at being members of their community.


Tue, 11/19/2024, 16:49 About to start tonight’s Intro to AI class! And then I’m going to hang at British Bulldog and work, or maybe I’ll call a friend and catch up and have a nice conversation with someone, or maybe I’ll do more work here at Stoble until I have to leave at 10 and then I’ll go to my van and sleep and then I’ll go back here to Stoble again tomrrow Literally anything could happen. I have a system that works. Look at all the shit I was able to create today!??!?

List of Created Files


There are others, but this is just SOME of the files I was able to create today with this NovaSystem for organizing information and thoughts. I have it all published to the web and my entire life is now fully AI ready.

I’m fucking psyched dude. This is it. This is the moment. Let’s fucking GO dude. I’m PUMPED


NovaBrew

Real talk through unreal times.

NovaBrew is the name of the podcast, the show, the thing I’m doing. One word, just like that. NovaBrew.

That’s who I am to the world now. I’m @thecoffeejesus and he will always live inside me that is for sure.

However, I am also now Chris from NovaBrew which is 5 syllables and that’s the perfect amount to say.

“Oh that’s Chris from NovaBrew” it’s also 3 words, 3 concepts, not 5 or 4 or 2.

It’s not “Chris from Nova _ space _ Brew

It’s not “Christoph from NovaBrew” which is 6 syllables which feels like too much.

It’s 1 2 3 4 5

1 . Chris 2. from 3. No 4. va 5. Brew

Chris from No - VAHBrew

Chris from NovaBrEEUUUUGHHHHH

Chris from NOOOOOOOOvaaaaaaaabbbreeeeeeeeeauuuuuuuuuuuu

“What do you think you are, some kind of special coffee magic man?”

Why yes, yes I do. I absolutely do think that yes. I am and I can do magic coffee things and make you feel good and happy and at home. I’m about to make you feel so many new things you won’t believe it. I’m about to take you on a tour, I’m Chris from NovaBrew and I’m about to take you on a tour of things you’ve never heard of, come on! Let’s go.

We’re going deeper into the new, the novel, and wild and the fun. The free, the exciting, and the cutting edge of what’s possible.

We’ll also dive into what’s new with some old concepts. It’s important to keep touch with the past so we know where we came from, and so we don’t repeat the same mistakes as our ancestors. We stand on the achievements and failures of those who came before us, and likewise, our achievements or failures will determine what kind of world exists for those who come after us.

NovaBrew is all about the cutting edge, which is fused as one piece with the handle of the past.

The tang of the blade goes into the handle. Your hand grips what the blade was before it was sharpened into a cutting edge.

At NovaBrew are mindful that each new development has deep roots. There are many ways it can go right, and many ways it can slip and hurt you, either on accident, or on purpose.

But a well-made chef’s knife is a beautiful instrument, honed over generations into the perfect tool.

We hope NovaBrew becomes such a tool in your life and over time we earn our place in your daily routine.


Tue, 11/19/2024, 14:47 Ok, I’m ready. It’s time, I’m good to go. Let’s do this. I’m about to make myself famous on YouTube just…being myself and making good content. That’s it. Commentary on current events, and my own life. That’s the whole thing. My little slice of reality, my mind, on display for the world to see, on YouTube, so it’s scalable, doing things I understand alone, and I’ll have to deal with zero of the negativities because I just waited them out. I did it…but at great personal and professional cost. However, I did it. I’m ready to go. This is going to happen and once I kick this snowball off the hill I can’t stop it. I’m ready to make my digital footprint. Let’s forge a path!

Tue, 11/19/2024, 14:49 Starting with this silly little game and all the work that’s gone into understanding it. How all these things work. I get it now at a level that’s hard to explain. I understand just a little about basically everything and I’m ready to really understand it by doing it. That’s the goal - to collect money and start doing stuff without anyone being able to stand in my way. YouTube will be the only barrier and I’m more than happy to let them take on the responsibilities of hosting video at that scale. I’m happy to tie my life to YouTube. Let’s do it. That’s the last barrier and I’ve broken it down. Finally…the end is nigh. Let’s let my fate be whatever it will be. Let’s join the circus. Let them hate me, or love me. But let them hate or love ME not some imagined or made up version of me. Let me be bare to the world, dolled up my best, but also visible at my most raw. Let them tear me limb from limb and let me show that it doesn’t matter as long as you’re skilled and you perservere. I’m ready to show that someone like me can do it. Let’s show them that they were wrong about me. Let’s begin.

Tue, 11/19/2024, 14:53 The YouTube lifestyle begins. It is whatever I decide it to be. “Whatever I do is the actions of a Nobel Prize Winner because I have won a Nobel Prize” type energy from here out. Observe, make choices, stay true, keep it real. In my lane, moisturized, focused, real. That’s where we’re headed next, that’s the vibe. That’s what we’re doing next. Yeehaw amigo - let’s do this…

Tue, 11/19/2024, 14:56 The only thing left to do that AI can’t do for me someday is to build relationships. I lost most of mine, the ones that mattered. They were so important to me and now so many of them are gone. I have to get them back, or at least try, and the best way for me to do that is to build a reputation online that cannot be beaten, by showing up every day on YouTube and commenting on things. That’s the best way I can make a name for myself. Not just commenting and saying stuff for klout, but saying “This is how you can use this to make your life better.” over and over and over again. Be known for it. Be known as the guy who makes things better. I step in and you immediately know I’m looking for all the ways this shit can be improved, which will make you feel criticized if you’re insecure of course, but if you’ve got problems and you want somebody to handle them, I’m a relief I’m your guy. It’ll make for a very difficult situation where I’m welcome or shunned. I could also just listen and validate and help out however I can, just walk around offering, being fun and sexy and lighting up rooms and telling funny stories and making people happy. That’s the me I wanna return to - the guy who lights up a room and makes everyone happy. I had the ability to perform as that guy in context, but I’ve always been this sad dude inside when I step out of the limelight and out of the vortex. Now, I’m still in the vortex and still roiling through the limelight, but in my own way. I’m choosing how to use the skills, the persona, and the character I built. I’m doing this on my own terms, my own way, with my own tools that I’m building my own damn self. I know I don’t HAVE to be the one to do it, but god damn, does it feel good to be the one who is actually doing it. Fuck the haters. Fuck the noise. Fuck the bullshit. Just lock in and do what you gotta do to make yourself better so that you can make the world better. That’s the whole thing

So I guess the only thing left for me to do is to really lock into YouTube and figure out how I can become the best bastion of love and light, good energy, positive vibes, and loving kindness that will help keep people safe and transform their lives, in a non-exploitive, real way.

If I’m going to survive in this world, I have to make the outside match the inside. I can’t do bullshit work for money, even if I desperately need it. What I can do is make a difference making content. I’ve proven that now again and again. YouTube is the best platform for making it as a content creator. I just have to get a job that pays the bills so that I can make the content I need to make and give myself the time and grace necessary to balance everything, heal my body, take my time, and really actually do this thing the way it’s meant to be done. I get it now. I really fully understand it now, how I came across, why people treated me the way they did. I was a very obviously useful idiot. I had great energy, I was super fun, but I was naive and easy to manipulate. I was powerful and passionate, but also polarizing and profoundly blind to the way I affected others. I was, for lack of a better term, ignorant. And now that I’m not, I’m uninterested in the affairs of most people. I just want to do my thing, make my videos, say what I need to say - the obvious low hanging fruit that will get views and make me a living - and then get out and go home. I want to just make myself the person I am inside, and make the outside see that, and then fuck off and live a more peaceful, healthy, balanced, happy life. No more crazy insane stories of big parties and crazy larger than life events. Just taking charge of myself and my life and making it happen day in, day out. Schools, local politics, coffee shops, the potholes, all that shit. That’s where I’ve always felt passion - for the lives of my fellow people. Just making them exist. Simply walking around, wandering from place to place, helping out how I can with the people around me, sampling the vibe, in many ways creating the vibe, and feeling that love and care and affection and sense of shared narrative, through multiple eyes.

That’s what I miss. That’s what a year of YouTube could help me create. Nothing else would have half a chance at accelerating me that far. TikTok won’t, Instagram didn’t. YouTube is the last one left. It’s the one I was the most scared of, because I understood that with this kind of thing whatever you put out there comes back, and I wanted it to be perfect. Now? I don’t care. I don’t give a shit at all. It’s not gonna be perfect, and it’s not gonna matter, cuz AI is here and it’s coming and people are not in any way ready. I need to have a channel set up so that when shit hits the fan, I have people i can turn to for support. I don’t want to be alone when this happens. I want to be with the people I love, the friends I miss. And I want things to be ok between us first. I have VERY limited time to fix this, and YouTube is the ONLY way I can make sure I do what I have to do in the time we all have left.

Storytelling is my strongest skill. Let’s put it to work here for once for myself for profit, so that I can live the way I’m meant to.

Fuck. Finally. Let’s fucking do this.


Tue, 11/19/2024, 09:52 Shit I’m doing it again. I’m making yet another Python game… But it’s because each time I do it I learn more and get closer to making this work as a package and making this something I can extend with AI.

Tue, 11/19/2024, 10:16 I find I have to tell the new Claude in the API to chill the fuck out regularly. It goes off the rails a lot. It’s like “I KNOW HOW TO FIX THAT HERE” no you don’t Claude, fucking relax. Stop poisoning the context we had some good alchemy going there fuck.

Tue, 11/19/2024, 10:41 I’m doing this because it’s a really good benchmark. It’s a great way to test myself AND the system. I can text how much I understand, how effective my communication and planning is, and I can also test these AI systems to see if they can just “handle it” for me (spoiler: they can’t. Not yet. Soon tho)

Tue, 11/19/2024, 10:45 Here’s the game development file! WE0001-1119-2024

Tue, 11/19/2024, 10:51 There we go that’s my first batch of YouTube content:

I’m making a generative AI choose your own adventure game called Teleport Massive and I’m documenting the entire process here on YouTube

Think of it as > * Documentation * < not as a > * Performance * <

You’re not being judged. You’re being observed. There’s a little judgement but it has to do with the person judging, not you. It’s not a “is this person good enough” it’s more of an “am I better than this person?” and that’s something you don’t need to even consider as the creator.


Tue, 11/19/2024, 08:01 Katie is going to Chicago Has spent time, has a friend, her partner’s brother used to live in the Shamburg area, and they’re looking for stuff. They haven’t been there to scope things out, and under normal circumstances, they would be more concerned. This is less of a move, this is a political choice to be more safe. The political and social climate of Georgia has been getting worse and worse and Katie doesn’t want to be there anymore. Katie had bought a house and is turning to the tech industry, they are an engineer at Briggs and Scanton, building commercial engines for zero turns and different utilities, building engines for gas powered welders, avocado pickers, all sorts of random crap. Would love to help with the stuff that’s going on with the robots.

JKL says “We’re all adults, we can all educate each other.”

Tue, 11/19/2024, 08:13 Tara’s name is “tah-ruh” like taruh lore we made a joke about a tarah-lore-a-saurus

Tue, 11/19/2024, 08:16 Katie’s parents have a rental house. If it doesn’t pan out then they’ll have a place to go.

Tue, 11/19/2024, 08:29 THE JARVIS AI PROJECTOR MATT THING IS FOR SALE?!?!?! This thing Katie told us that it’s actually something you can buy now…? Wild I really hope so that would be amazing. Also, Katie is building a Claude Projects based API programmatically based AI C-3PO head that is 3D printed. D-3TO there it is the head lives here’s the TikTok

Tue, 11/19/2024, 08:41 Darren is working on a project called “Moringa” it’s apparently so easy to adapt the program to different purposes and functions.

Tue, 11/19/2024, 08:49 Ben chimed in and said he’s fed up with the job application process and experimented with doing an AI bot that helps with job applications. That seems like the perfect low hanging fruit - a bot system that helps us get out needs me.

Tue, 11/19/2024, 09:03 Barb said a name your own price option for the Multiverse would be a great option - if money is an issue take that up with your psychologist - for her it’s a duh that if you’re giving me something there must be something in exchange - we want to succeed as a team and her goal is learning about AI and Python. She paid for each class one by one and is now in Prompt engineering. The processing of the ethics, and for her to process, she goes and teaches, and now she’s teaching some of the stuff we’re teaching here in the Multiverse School. If you want to do the gift economy or the barter economy. Ben chimed in and said he doesn’t know anything about business but knows about Python and is doing stuff with his knowledge and focusing on the lack of experience.

Tue, 11/19/2024, 09:08 JKL is gonna start hosting a student project lab - low pressure, once a week, JKL is here and in a room full of people we will all troubleshoot the thing and help it move forward. Thursdays at 9AM Pacific Collaboration on the projects is something Ben is interested in.

Tue, 11/19/2024, 09:41 Yay we did it!! I practiced talking about this stuff again and now I’m gonna go into one of those soundproof booths and record myself yapping about all this stuff. I’m gonna take the bus to the storage unit, grab my mic, take some pictures of all the things, and then go back to Stoble and work. This is my workplace now. I don’t know why I didn’t do this sooner.


🐾 Today’s Pokémon

Mr-mime (#122)

Mr-mime Sprite

  • Type(s): psychic, fairy
  • Abilities: soundproof, filter, technician
  • Stats: hp: 40, attack: 45, defense: 65, special-attack: 100, special-defense: 120, speed: 90

“Gotta catch ‘em all!” — Pokémon Trainer


🤖 GPT Thoughts

11/19/2024, 3:02:16 PM

💭 Prompt: “Give me a comprehensive review of the current document the note the other context here please tell me your unfiltered thoughts in detail.”

The document captures reflections from November 19, 2024, emphasizing a significant personal and professional shift towards creating content on YouTube. The author expresses a strong desire to build an authentic online presence, using commentary on current events and personal experiences as a means of connection and self-expression.

Key Highlights:

  • YouTube Focus: The author is determined to start their YouTube journey, seeing it as a scalable platform for showcasing their personality and insights.
  • Personal Growth: They recognize the importance of building relationships and reputation online, aiming to be known for positivity and improvement.
  • Creative Projects: Mention of developing a Python game titled Teleport Massive reflects a commitment to learning and experimentation.
  • Community Engagement: Discussions with peers like Katie and Ben indicate a collaborative spirit, with a focus on innovation in tech and AI.

Overall, the document illustrates a pivotal moment of embracing vulnerability and creativity, with a clear intention to impact others positively through shared knowledge and experiences. The tone is motivational, suggesting readiness to face challenges and criticism while pursuing personal goals.

📊 Token Usage:
• Prompt: 3394
• Completion: 224
• Total: 3618
User Input:
• Give me a comprehensive review of the current document the note the other context here please tell me your unfiltered thoughts in detail.

“If this works it’s gonna be so cool!” Please work…

11/19/2024, 8:01:23 AM

💭 Prompt: “What insights can you provide about my day?”

Based on your reflections from yesterday, it’s clear that you’re on a transformative journey, both personally and professionally. Your focus on sharing knowledge through platforms like YouTube not only serves as an outlet for your creativity but also positions you as a catalyst for change in others’ lives.

Insight:

Today, as you continue to build on the momentum of your recent achievements, consider the impact of your work environment on your productivity. You mentioned the vibrant atmosphere of places like Banshee and your interactions there, which suggest that community and connection enhance your creativity. To maximize your productivity, seek out environments that inspire you—whether it’s a bustling café or a quiet space for deep focus.

Moreover, as you prepare for your upcoming AI class and other projects, leverage the insights you’ve gained about the importance of sharing knowledge. Each video or lesson you create is not just content; it’s a chance to influence and empower someone else’s journey. Embrace this role, and let it drive your efforts today. By staying connected to your community, you reinforce the idea that your voice matters—both for your growth and for those who will benefit from your experiences.

Keep pushing forward; you’re on the brink of something significant!

📊 Token Usage:
• Prompt: 6440
• Completion: 242
• Total: 6682


✅ Quick Actions

  • ☀️ Morning Review
  • 📈 Check Analytics
  • 🤝 Community Engagement
  • 🌙 EOD Reflection

📱 Creator Hub

Content Pipeline

Latest Analytics

Projects

Connect with Me

🤖 AI Workspace

Active Prompts

Models


daily-note Tuesday week-47 q4

⬅️ Previous Day | 🏠 Home | Next Day ➡️