Changes to ideaguy.togger.com

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 56
-

I'm Idea Guy! I've got a billion dollar idea. Can you built it? I think we should use React and Docker. We need APIs and an App store.

+

I'm Idea Guy! I've got a billion dollar idea. Can you build it? Let's use React, Docker and APIs.

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 56
-

I'm Idea Guy! I've got a billion dollar idea. Can you built it? I think we should use React, Docker and APIs.

+

I'm Idea Guy! I've got a billion dollar idea. Can you built it? I think we should use React and Docker. We need APIs and an App store.

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 56
-

I'm Idea Guy! Learning to code takes a lot of time, so I skipped all that! Instead I focus on coming up with billion dollar ideas and I just need you to build them!

+

I'm Idea Guy! I've got a billion dollar idea. Can you built it? I think we should use React, Docker and APIs.

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 76
- window.location = "https://x.com/breckyunits/status/1850924070184874179"
+ window.location = "https://x.com/breckyunits/status/1850924668321927236"
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 76
+ window.location = "https://x.com/breckyunits/status/1850924070184874179"
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated index.scroll
index.scroll
Changed around line 1
+ baseUrl https://ideaguy.togger.com/
+ openGraphImage og.png
Changed around line 10: metaTags
+
+
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated index.scroll
index.scroll
Changed around line 1
+ title IdeaGuy - An LLM trained on all the world's information...except for the code!
+
+
+
+
+ metaTags
+
+ style.css
+
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 1
-
-
-
-
-
- IdeaGuy - Your Creative AI Companion
-
-
+
+
Changed around line 98
-
-
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated style.css
style.css
Changed around line 1
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ background: linear-gradient(to bottom, #EFF6FF, #FFFFFF);
+ color: #1F2937;
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ /* Hero Section */
+ .hero {
+ text-align: center;
+ padding: 96px 0;
+ }
+
+ .hero-icon {
+ width: 64px;
+ height: 64px;
+ margin: 0 auto 24px;
+ color: #2563EB;
+ }
+
+ .hero h1 {
+ font-size: 3.75rem;
+ font-weight: bold;
+ margin-bottom: 24px;
+ }
+
+ .hero p {
+ font-size: 1.5rem;
+ color: #4B5563;
+ margin-bottom: 32px;
+ }
+
+ /* Features Section */
+ .features {
+ background: white;
+ padding: 80px 0;
+ }
+
+ .features h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 64px;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 48px;
+ padding: 0 20px;
+ }
+
+ .feature {
+ text-align: center;
+ }
+
+ .feature-icon {
+ width: 48px;
+ height: 48px;
+ margin: 0 auto 24px;
+ color: #2563EB;
+ }
+
+ .feature h3 {
+ font-size: 1.5rem;
+ margin-bottom: 16px;
+ }
+
+ .feature p {
+ color: #4B5563;
+ }
+
+ /* Demo Section */
+ .demo {
+ padding: 80px 0;
+ }
+
+ .demo-window {
+ background: white;
+ border-radius: 16px;
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 32px;
+ }
+
+ .window-dots {
+ display: flex;
+ gap: 8px;
+ margin-bottom: 24px;
+ }
+
+ .dot {
+ width: 12px;
+ height: 12px;
+ border-radius: 50%;
+ }
+
+ .dot-red { background: #EF4444; }
+ .dot-yellow { background: #F59E0B; }
+ .dot-green { background: #10B981; }
+
+ .message {
+ padding: 16px;
+ border-radius: 8px;
+ margin-bottom: 16px;
+ }
+
+ .message.user {
+ background: #F3F4F6;
+ }
+
+ .message.bot {
+ background: #EFF6FF;
+ }
+
+ /* CTA Section */
+ .cta {
+ background: #2563EB;
+ color: white;
+ text-align: center;
+ padding: 80px 0;
+ }
+
+ .cta h2 {
+ font-size: 2.5rem;
+ margin-bottom: 24px;
+ }
+
+ .cta p {
+ font-size: 1.25rem;
+ color: #BFDBFE;
+ margin-bottom: 32px;
+ }
+
+ /* Buttons */
+ .button {
+ display: inline-block;
+ padding: 16px 32px;
+ border-radius: 8px;
+ font-size: 1.25rem;
+ font-weight: 600;
+ text-decoration: none;
+ transition: background-color 0.3s;
+ cursor: pointer;
+ border: none;
+ }
+
+ .button-primary {
+ background: #2563EB;
+ color: white;
+ }
+
+ .button-primary:hover {
+ background: #1D4ED8;
+ }
+
+ .button-white {
+ background: white;
+ color: #2563EB;
+ }
+
+ .button-white:hover {
+ background: #F3F4F6;
+ }
+
+ /* Responsive adjustments */
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .features-grid {
+ grid-template-columns: 1fr;
+ gap: 32px;
+ }
+ }
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated style.css
style.css
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 4
-
root
root
2 months ago
Added og.png
og.png
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 252
-

Hey buddy! I'm Idea Guy. I've got so many billion dollar ideas, but didn't have time to learn how to code, which turns out to be lucky for you! I'll come up with the ideas, and you can code them. Equity only to start but we'll pay you as soon as we raise our Pre-Seed round.

+

I'm Idea Guy! Learning to code takes a lot of time, so I skipped all that! Instead I focus on coming up with billion dollar ideas and I just need you to build them!

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 204
-

*except for the code

+

*except the code

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 204
-

except for the code

+

*except for the code

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 203
-

Your creative AI companion, trained on all the world's knowledge...except for the code

+

Your creative AI companion, trained on all the world's knowledge*

+

except for the code

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 203
-

Your creative AI companion, trained on all the world's knowledge (except the code)

+

Your creative AI companion, trained on all the world's knowledge...except for the code

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 261
-

Stop using LLMs trained on code. Add IdeaGuy to your team today.

+

Stop using LLMs trained on code. Switch to IdeaGuy today.

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 261
-

Join thousands who have switched from LLMs trained on code to IdeaGuy

+

Stop using LLMs trained on code. Add IdeaGuy to your team today.

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 260
-

Ready to slow down?

-

Join thousands of talkers who have switched from ChatGPT to IdeaGuy

+

Getting too much done?

+

Join thousands who have switched from LLMs trained on code to IdeaGuy

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 251
-

Hey buddy! I heard you can code. I've got a billion dollar idea and only need a coder to build it. Equity only but will pay you as soon as we raise our Pre-Seed round.

+

Hey buddy! I'm Idea Guy. I've got so many billion dollar ideas, but didn't have time to learn how to code, which turns out to be lucky for you! I'll come up with the ideas, and you can code them. Equity only to start but we'll pay you as soon as we raise our Pre-Seed round.

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 260
-

Ready to go nowhere?

+

Ready to slow down?

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 260
-

Ready to Transform Your Ideas?

-

Join thousands of innovators already using IdeaGuy

+

Ready to go nowhere?

+

Join thousands of talkers who have switched from ChatGPT to IdeaGuy

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 251
-

My friend told me you could code. I've got a billion dollar idea and only need a coder to build it. Equity only but will pay you as soon as we raise our Pre-Seed round.

+

Hey buddy! I heard you can code. I've got a billion dollar idea and only need a coder to build it. Equity only but will pay you as soon as we raise our Pre-Seed round.

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 248
-

How can you help me brainstorm ideas for my startup?

+

Hello, who's this?

-

I can help you explore market opportunities, analyze trends, and develop unique value propositions. Let's start by understanding your vision and goals.

+

My friend told me you could code. I've got a billion dollar idea and only need a coder to build it. Equity only but will pay you as soon as we raise our Pre-Seed round.

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 211
-

Unleash Your Creativity

+

Unleash Your Business

-

Natural Conversations

-

Engage in fluid, human-like discussions that spark new ideas

+

Great Conversations

+

Enjoyable, fluid communication abilities

-

Vast Knowledge

-

Access insights from the entire web, curated for your needs

+

Vast Knowledge of Buzzwords

+

Access buzzwords from the entire web, curated for your needs

-

Lightning Fast

-

Get instant responses to help you move at the speed of thought

+

Zero Technical Skills

+

Can't code for shit.

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 203
-

Your creative AI companion, powered by the world's knowledge

+

Your creative AI companion, trained on all the world's knowledge (except the code)

ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 1
- buildHtml
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated index.scroll
index.scroll
Changed around line 1
-
-
-
-
-
- IdeaGuy - Your Creative AI Companion
-
-
-
-
-
-
-
-
-
-

Meet IdeaGuy

-

Your creative AI companion, powered by the world's knowledge

-
-
-
-
-
-
-
-

Unleash Your Creativity

-
-
-
-
-
-

Natural Conversations

-

Engage in fluid, human-like discussions that spark new ideas

-
-
-
-
-
-

Vast Knowledge

-

Access insights from the entire web, curated for your needs

-
-
-
-
-
-

Lightning Fast

-

Get instant responses to help you move at the speed of thought

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

How can you help me brainstorm ideas for my startup?

-
-
-

I can help you explore market opportunities, analyze trends, and develop unique value propositions. Let's start by understanding your vision and goals.

-
-
-
-
-
-
-
-
-

Ready to Transform Your Ideas?

-

Join thousands of innovators already using IdeaGuy

-
-
-
-
-
-
-
+ claude.html
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
Changed around line 1
+ buildHtml
+
+
+
+
+
+ IdeaGuy - Your Creative AI Companion
+
+
+
+
+
+
+
+
+
+

Meet IdeaGuy

+

Your creative AI companion, powered by the world's knowledge

+
+
+
+
+
+
+
+

Unleash Your Creativity

+
+
+
+
+
+

Natural Conversations

+

Engage in fluid, human-like discussions that spark new ideas

+
+
+
+
+
+

Vast Knowledge

+

Access insights from the entire web, curated for your needs

+
+
+
+
+
+

Lightning Fast

+

Get instant responses to help you move at the speed of thought

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

How can you help me brainstorm ideas for my startup?

+
+
+

I can help you explore market opportunities, analyze trends, and develop unique value propositions. Let's start by understanding your vision and goals.

+
+
+
+
+
+
+
+
+

Ready to Transform Your Ideas?

+

Join thousands of innovators already using IdeaGuy

+
+
+
+
+
+
+
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated claude.html
claude.html
ffff:66.75.90.209
ffff:66.75.90.209
2 months ago
Updated index.scroll
index.scroll
Changed around line 1
- theme roboto
+
+
+
+
+
+ IdeaGuy - Your Creative AI Companion
+
+
+
+
+
+
+
+
+
+

Meet IdeaGuy

+

Your creative AI companion, powered by the world's knowledge

+
+
+
+
+
+
+
+

Unleash Your Creativity

+
+
+
+
+
+

Natural Conversations

+

Engage in fluid, human-like discussions that spark new ideas

+
+
+
+
+
+

Vast Knowledge

+

Access insights from the entire web, curated for your needs

+
+
+
+
+
+

Lightning Fast

+

Get instant responses to help you move at the speed of thought

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

How can you help me brainstorm ideas for my startup?

+
+
+

I can help you explore market opportunities, analyze trends, and develop unique value propositions. Let's start by understanding your vision and goals.

+
+
+
+
+
+
+
+
+

Ready to Transform Your Ideas?

+

Join thousands of innovators already using IdeaGuy

+
+
+
+
+
+
+
root
root
2 months ago
initial blank_template template
.gitignore
Changed around line 1
+ *.html
+ *.txt
+ *.xml
+ *.css
+ *.js
index.scroll
Changed around line 1
+ buildHtml
+ theme roboto
+
+ Hello World my name is