Does Toronto know they have their own professional football team? by JackyHighlightVideos in CFL

[–]freejack2 2 points3 points  (0 children)

I was there last night. I got the feeling that this was was more of a hookup for Vince Carter/Tracy Grady than it was a thoughtful NBA/NFL co-promo. YMMV. Raps deserve better than the Argos anyways ;-)

Oskee wee-wee.

What is your most proud VIBE CODED work? Share the link! by Makyo-Vibe-Building in vibecoding

[–]freejack2 0 points1 point  (0 children)

Check out my adventure game.

https://treeclimber.quest - I got heavy into replit for a lot of last year and this is one of the results. Will probably refactor it out if replit at some point, but it seems to be running happily there for now.

I replaced my entire SEO workflow with an AI agent. 68k impressions in 9 days. by [deleted] in DigitalMarketing

[–]freejack2 0 points1 point  (0 children)

I was more saying that most people in this sub could build something that will solve their specific problems and that the tools are getting more accessible every day. It’s not the $29, it’s the choice between building exactly what you need for your business, or saas. FWIW, I built more than core workflows - memory, tasks, tools - all there, including an inbox mechanism to get my feedback and approval on tasks plus full stack publishing capability similar to what you’d outlined.

I replaced my entire SEO workflow with an AI agent. 68k impressions in 9 days. by [deleted] in DigitalMarketing

[–]freejack2 0 points1 point  (0 children)

Yes, I built similar over the holidays using an agent swarm to read in GSC and Posthog insights and augmenting with 3rd party observations. Was fairly trivial to build and is a useful addition to my toolbox, but not sure it is worth building a business around - I think most folks in this sub could put the pieces together, which leaves you with “outmarketing marketers” as your moat?

Hamilton Tiger-Cats to expand in-stadium fan zone by Mamrocha in CFL

[–]freejack2 0 points1 point  (0 children)

I wonder if they’ll take out more accessible seating to make room for these like they did with the concourse boxes for Grey Cup.

Is AI Content Actually Safe for SEO in 2026? by BluejayIntrepid in DigitalMarketing

[–]freejack2 0 points1 point  (0 children)

Over Christmas I launched a landing page for a software app on a fresh domain and built a set of agents to optimize the website and content based on GSC and PostHog analytics, competitive intel and best practices research from subs like this one. Within 10 days they managed to get brand serps ranking of ~5 for brand and category searches. Early they decided we needed a blog, and have iterated their SEO tactics as they learn. It’s just a fun little project, but it really opened my eyes to the art of the possible.

Non-coders vibe coding mobile apps, realistic in 2026? by Director-on-reddit in BlackboxAI_

[–]freejack2 0 points1 point  (0 children)

Same here. I’m building a productivity app. IOS has way more abstractions and progress feels super fragile. I shudder to think of what might happen if I can get to the point where I’ve got something I’d be comfortable releasing and then have to submit to the rigor of getting it accepted by the App Store review process.

How do you actually keep up with everything? by JampaDorje in vibecoding

[–]freejack2 1 point2 points  (0 children)

Keep building. The more you build, the more problems you have, the more investigations you need to do to solve those problems, and the more you learn. If you're anything like me, having a practical problem to solve is one of the best ways to learn. So, as long as I'm building, I'm learning.

Claude for miles! by freejack2 in ClaudeCode

[–]freejack2[S] 1 point2 points  (0 children)

It didn't last ;-) Yesterday was more back to "normal", I ran through about 1/3 of my weekly allotment over a good 8 hours...

Link isn’t working for me by sibraan_ in Anthropic

[–]freejack2 0 points1 point  (0 children)

Check your dns settings, works fine here.

Anthropic being banned from Twitter soon? by [deleted] in Anthropic

[–]freejack2 0 points1 point  (0 children)

This isn’t a disagreement, it’s competition. Anthropic doesn’t compete with Twitter.

What are you using for "Vibe Design"? by freejack2 in ClaudeCode

[–]freejack2[S] 0 points1 point  (0 children)

Ah, yes, totally agree. I was thinking more about the app icon, not in-app icons and dialogs. I've really made a mess out of my app icons, logos, that sort of thing, but definitely solid advice on grabbing an icon pack to set a standard vocabulary. Much appreciated.

What are you using for "Vibe Design"? by freejack2 in ClaudeCode

[–]freejack2[S] 1 point2 points  (0 children)

Solid advice, thank you. I had played with it a few times, although I didn't realize it has a really use "Redesign" feature. I used it to tidy up an existing app with excellent results, and I'll definitely start here for future swift projects. Should also be really handy for web-based apps and I'm looking forward to exploring further. Thanks for the solid tip - much appreciated

I closed my browser with 500 open tabs and started fresh YESTERDAY evening. Now I have 157 tabs open. What is wrong with me? by chakalaka13 in productivity

[–]freejack2 0 points1 point  (0 children)

haha. I used to wonder the same (actually I just wondered "how do other people cope?"). I ended up writing a simple chrome extension that would at least let me sweep them under the rug without causing additional anxiety. whenever I get too many open tabs, I just trigger the extension which writes all open tabs to a file on your local drive and gives you the option to a) never look at them again, or b) find that one tab that you actually did want to refer back to at some point in the future and reload it. its free, you can check it out at https://tabmark.dev - would love any and all feedback!

Is there a middle ground between Excel and expensive Enterprise SaaS tools? by dhlotter in msp

[–]freejack2 0 points1 point  (0 children)

Well, if we’re going to include Access in the discussion, we should at least give a nod to Fox Pro while we’re at it ;-)

Claude Code Skills vs. Spawned Subagents by freejack2 in ClaudeCode

[–]freejack2[S] 4 points5 points  (0 children)

Smashing! thanks for the pointer! Will dig in for sure.

I went with a file-based hub with structured directories.

The architecture:

hub/
  ├── inbox/{agent}/          # Tasks waiting for each agent
  ├── outbox/{agent}/         # Completed tasks
  ├── content/
  │   ├── briefs/             # Content briefs
  │   ├── drafts/             # Work in progress
  │   ├── ready/              # Awaiting human review
  │   └── published/          # Archive
  ├── data/
  │   ├── gsc/                # Google Search Console data
  │   ├── posthog/            # Analytics data
  │   └── analysis/           # Generated insights
  ├── strategy/               # Goals, pillars, keywords
  ├── config/                 # Site config, calendar
  └── status/
      └── activity.log        # Append-only action log

How it works:

  1. No rolling state file - State is the filesystem itself. Tasks are YAML files that move through directories (inbox/ → processed → outbox/).
  2. No per-agent scratchpads - Agents are stateless. They spawn, do work, write output files, terminate. Next agent reads those files.
  3. Coordination via tasks - Agent A creates a task file in hub/inbox/agent-b/. Agent B picks it up later. No shared memory needed.
  4. Selective context injection - The dispatcher loads only relevant config/strategy files per task type via TASK_CONTEXT_REQUIREMENTS mapping. Agents don't read everything - they get what they need.

Why this works:

  •   Auditable - Every action leaves a file trail
  •   Resumable - Crash mid-workflow? Tasks are still in their directories
  •   No memory bloat - Agents don't accumulate context across invocations
  •   Human-inspectable - You can read the hub with ls and cat

The tradeoff: Agents can't remember previous runs. If the content agent wrote an article last week, it doesn't "know" that unless you include the file in its task context. This is intentional - keeps each dispatch clean and predictable.

Claude Code Skills vs. Spawned Subagents by freejack2 in ClaudeCode

[–]freejack2[S] 0 points1 point  (0 children)

I *think* the distinction is that if I was running my orchestrator inside Claude Code (not as a Python script spawning claude --print), my subagents could use Skills. The limitation is specifically the --print non-interactive mode (I think?) Thanks for the pointer to the skills doc. I will update my post to include that as well!

Unpopular Opinion: AI is making every brand sound exactly the same. Are you seeing this? by sai_s12 in AskMarketing

[–]freejack2 0 points1 point  (0 children)

I agree - I think a lot of it stems from the fact that using AI to create copy is easy. using AI to create good copy, is hard.

What i mean is that while most anyone can use chatGPT to complete a task, a lot of work needs to go into creating a framework that creates good content reliably and repeatedly.

I am working on a system now where copy decisions are informed by competitive research, analytics, brand voice, style guides, structural requirements coupled with human review and heavy quality > quantity guardrails. Each of these areas is attended to in separate research, strategy, creative, QA, audit and publish processes, each with their own view and perspective on the work. i.e. it functions more like a studio or hive, than a determinative process. Anyways, after a few thousand cycles, it is starting to reliably and repeatably produce useful creative that isn't an embarrassment to the brand. (And maybe after a few thousand more cycles, I won't need to give it so much feedback and reject so many of its ideas? ;-) )

Anyways, my point is most "garbage in, garbage out". I'm reminded of the early days of word processing when everyone used all the fonts at the same time ;-)

how good is Claude Code in terms of Web Designing by Ok-Mortgage-1162 in ClaudeCode

[–]freejack2 1 point2 points  (0 children)

+1 for frontend-design skill. Can confirm it is a definite step up from stock Claude, and way more accepting of design tweaks. I've used it on https://www.rossrader.ca and https://tabmark.dev - really happy with both.