Zero Day
{print Hello World}
and Welcome to my Blog. Figured instead of ranting and raving about Artificial Intelligence and the World Happenings on FB, I post here instead.
Some goals for this Blog:
Shar my experience with Addiction
Share my experience with using AI
Share some of the things I am working on
Share some of my music
Share some of my friends works
Share my Experience with Programming understand the mechanics of how these autonomous tools work, and eventually share how to build your own.
Build your own what you may ask? Well that's what we are going to figure out together. Currently building an army of autonomous agents using node-red (free alternative to n8n) with npm/nvm . Then using these agents I will build from my foundation to create a profitable business in this ever changing and exciting world of innovation. I don't know how far I will take this honestly but that fire is finally lit inside to build an Empire... especially before everything will become automated by multi-billionaire companies that do not like to share.
Let’s kick things off with a quick taste of what’s ahead. Right now, I’m playing with two AIs: Grok (built by xAI) and ChatGPT (from OpenAI). I asked them both to write a 10-line Python script to scrape a website’s title. Here’s what Grok3 gave me:
import requests
from bs4 import BeautifulSoup
url = "https://example.com"
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parser")
title = soup.find("title").text
print(f"Website Title: {title}")
It’s clean, it works, and it took about 10 seconds to generate. ChatGPT’s version was similar but added error handling—overkill for a quick test, but smart for production. Point is, these tools aren’t just toys; they’re accelerators. Imagine using them to prototype a business idea—like an automated content scheduler—in a weekend. That’s the kind of stuff we’ll explore here: real examples, real code, and real results. Plus, I’ll dig into the numbers—speed, cost, accuracy—to see which AI wins for what.
I’m just getting started, and I’d love for you to join me. Expect posts about coding with AI, building businesses from scratch, and breaking down the AI landscape—metrics and all. Benchmarks might include speed, accuracy, token cost, growth, potential, personal experience, etc. Follow below so you don’t miss the next one (I’m thinking an “AI Face-Off” pitting Grok against GPT-4). Got a question or an AI you want me to test? Drop it in the comments—I’ll reply to every one. Let’s build something awesome together.
Comments
Post a Comment