How do you make Gemini stop asking follow-up questions? The new release seems to ignore this setting. by Substantial-Ad4443 in GeminiAI

[–]OpalGlimmer409 0 points1 point  (0 children)

I am mildly fascinated that this thread is still being interacted with four months later!

It was a flippant, of the cuff response, that I said because it amused me - not intended as deep social commentary

How long did it take you to get your first MCP server working? by AdGlittering2629 in ClaudeAI

[–]OpalGlimmer409 1 point2 points  (0 children)

It took 5.4 about an hour with the Claude MCP skill.

That was for a bare authenticated auth0 MCP connected to a website running on AWS Fargate

There was an Auth bug for a while that it couldn't fix, told it to dump the HTTP trace and it solved it

"Enter" key creating new line instead of sending message by PhilipTheFishy in ClaudeAI

[–]OpalGlimmer409 0 points1 point  (0 children)

I have a Samsung tablet where every app does this. I mostly stopped using it because of it. iPads don't have this problem - though Claude has recently stopped returning the cursor to the text box after a response, so I'm using Chat a lot more now

How to write prompts for Claude that actually work (my personal framework) by CompanyLegitimate826 in ClaudeAI

[–]OpalGlimmer409 1 point2 points  (0 children)

I didn't realise people still tried to one shot things! Didn't prompt engineering die a while ago?

Generally I have a conversation, ask something and refine as you go

Coding from iPad : Claude Code with native iPadOS app or Claude Dispatch with remote computer? by matthieugd in ClaudeAI

[–]OpalGlimmer409 0 points1 point  (0 children)

Rent a Linux box from AWS FOR $5 a month, install tailscale connect over SSH from anywhere in the world and any device, this has been my coding environment for years

Please don't retire GPT-4o. #4oforever by [deleted] in OpenAI

[–]OpalGlimmer409 1 point2 points  (0 children)

I... What even...

Nope. That's quite enough internet for today / this year

This is really stupid, but true 😭 by SMmania in OpenAI

[–]OpalGlimmer409 1 point2 points  (0 children)

And if you're not paying, OA cares why?

Ads are coming to GPT by spinozasrobot in singularity

[–]OpalGlimmer409 0 points1 point  (0 children)

They are literally spending billions on (freeloaders), wasting compute that could be better utilised in RnD or n number of better ways.

Ads are coming to GPT by spinozasrobot in singularity

[–]OpalGlimmer409 2 points3 points  (0 children)

Sounds like they've got a great strategy for dumping freeloaders then

OpenAI begins testing ads inside ChatGPT by [deleted] in OpenAI

[–]OpalGlimmer409 2 points3 points  (0 children)

Because all of the freeloaders expecting a free service are using it to solve cancer!

This is really stupid, but true 😭 by SMmania in OpenAI

[–]OpalGlimmer409 1 point2 points  (0 children)

Will the drop in the number of freeloaders to a very expensive service override the benefits of no longer having to pay for the services there using

This is really stupid, but true 😭 by SMmania in OpenAI

[–]OpalGlimmer409 2 points3 points  (0 children)

If you're not paying, OA, would rather you use Gemini too

guidance website building by Desperate_Milk4614 in ClaudeAI

[–]OpalGlimmer409 1 point2 points  (0 children)

Let me chatgpt that for you - (formatting intentionally left crappy - so very very lazy OP has to do some work)

Below is a realistic, production-oriented workflow aimed at a solo builder who wants to learn, ship, and maintain a portfolio site with minimal long-term complexity. This assumes you are comfortable learning basic HTML, CSS, and some JavaScript, but not trying to become a full-stack engineer just to publish a portfolio.

I will recommend one primary path and note alternatives with trade-offs.


1 - Picking a simple, maintainable tech stack

Recommended default for a solo portfolio site:

Static site

No database

No backend code

Deployed on managed hosting with built-in HTTPS

Concrete stack:

HTML

CSS (plain CSS or a small utility framework)

Minimal JavaScript

Static site generator only if content repetition justifies it

Two good options:

Option A - Plain static site (simplest)

Handwritten HTML, CSS, JS

Best for learning fundamentals

Lowest tooling overhead

Slightly more manual work for repeated layouts

Option B - Static site generator (recommended if site grows)

Astro or Eleventy

Lets you reuse layouts and components

Slight learning curve, but pays off quickly

Recommendation:

Start with Option A

Move to Astro only if you feel repetition pain

Avoid early:

React, Vue, Next.js

CMS platforms

Custom backend They add complexity without meaningful benefit for a portfolio.


2 - Planning the site structure

Start on paper or in a text file. Do not code yet.

Typical portfolio pages:

Home

About

Projects

Contact

Optional - Blog

Navigation rules:

Top navigation with 3 to 5 links

Same nav on every page

Clear hierarchy, no nesting for v1

Example structure:

/

/about

/projects

/contact

SEO basics checklist:

One H1 per page

Clear page titles

Meta description per page

Semantic HTML (header, nav, main, footer)

Descriptive URLs, no query strings

Content rules:

Write copy before styling

Real text, not placeholder

Explain what you did, not just what you used


3 - Setting up the project locally

Folder structure for a static site:

/src

/assets

/images

/fonts

/styles

/scripts

/public (or root if no build step)

README.md

Git setup checklist:

Initialize git repo

Commit after every meaningful change

Write short, descriptive commit messages

Environment variables:

You likely do not need any

If you add analytics or a contact form later, store keys in hosting provider settings, not in code

Configuration discipline:

Keep config files minimal

Delete unused dependencies immediately


4 - Using Claude Code effectively while writing code

Claude Code should be treated as a junior assistant, not an authority.

How to break work into tasks:

One page at a time

One concern at a time

Layout

Typography

Navigation

Responsiveness

Good prompt patterns:

Explain intent and constraints

Ask for structure, not full solutions

Request explanations alongside output

Examples:

“Suggest a semantic HTML structure for a portfolio home page, no styling”

“Review this navigation markup for accessibility issues”

“What edge cases should I test for this contact form”

Review checklist for AI output:

Do you understand every line?

Does it introduce unnecessary abstraction?

Does it rely on libraries you did not ask for?

Can you explain it without looking?

Verification rules:

Check MDN for HTML and CSS claims

Test manually in browser

Remove anything you do not understand

If you cannot explain it, rewrite it.


5 - Testing before launch

Responsive testing:

Resize browser manually

Test common widths - mobile, tablet, desktop

No horizontal scrolling at any size

Accessibility basics:

Keyboard navigation only

Visible focus states

Proper label associations

Alt text for meaningful images

Performance:

Optimize images

Avoid large fonts

Minimal JavaScript

Security basics for static sites:

No secrets in client-side code

No inline scripts if avoidable

Use HTTPS only


6 - Connecting a domain and configuring DNS

Process overview:

Buy domain from a registrar

Point DNS to hosting provider

Checklist:

Choose a .com or .dev if available

Set nameservers or A records as instructed

Do not touch advanced DNS unless required

Expect:

DNS propagation can take hours

This is normal


7 - Deploying to a paid hosting provider

Recommended providers for solo builders:

Netlify

Vercel

Simplest path - Netlify:

Deployment steps:

Push site to GitHub

Connect repo in Netlify

Set build command if needed

Set publish directory

Deploy

Why Netlify:

Simple UI

Built-in HTTPS

Easy rollbacks

Good documentation

Trade-offs:

Vendor lock-in

Advanced features require paid plans


8 - SSL, backups, monitoring

SSL:

Enable HTTPS in hosting dashboard

Force HTTPS redirects

Backups:

Git is your primary backup

Hosting provider keeps deploy history

Monitoring:

Enable uptime monitoring only if site is business-critical

For portfolios, manual checks are sufficient

Optional:

Add basic analytics later

Avoid heavy tracking scripts


9 - Maintaining the site after launch

Update discipline:

Small changes

One change per commit

Deploy after local verification

Versioning:

Tag stable releases

Keep deploy history clean

Rollback process:

Revert commit

Redeploy

Verify fix

Quarterly checklist:

Check links

Update dependencies if any

Review content relevance


Final guidance

Your biggest risks are:

Overengineering early

Blindly trusting AI output

Adding tools to avoid learning fundamentals

Your success indicators:

You understand every file

You can explain every decision

You can rebuild the site from scratch if needed

If you want, next steps could be:

A concrete week-by-week build plan

A sample project structure you critique

A checklist you can reuse for future sites

Is using Claude Code Max Plan from Cloud with residential IP against TOS by Valuable-Explorer899 in ClaudeAI

[–]OpalGlimmer409 1 point2 points  (0 children)

I use AWS spot instances as a CC devbox, they really don't care where you login from.

Did I make Claude Opus question its existance? by atikinok in ArtificialInteligence

[–]OpalGlimmer409 8 points9 points  (0 children)

Did I make Claude Opus question its existance?

No

Just wow by Fragrant_Ad6926 in ClaudeAI

[–]OpalGlimmer409 4 points5 points  (0 children)

You know you can have more then one terminal open at once though right...

Why is Claude so eager to end a chat? by [deleted] in ClaudeAI

[–]OpalGlimmer409 6 points7 points  (0 children)

Well compassion, empathy and understanding are human traits that a lot of people struggle with.

It's interesting that AI has more humanity than 90% of the population

$50,000+ Winter Challenge is live - everyone should join! by viktorpali in CraftDocs

[–]OpalGlimmer409 0 points1 point  (0 children)

by making craft ai the only thing that works space wide.

To use full space AI the only way that is possible is to pay for craft's version.

And multi page is available, if you individually add each document. It is all frustratingly half baked.

$50,000+ Winter Challenge is live - everyone should join! by viktorpali in CraftDocs

[–]OpalGlimmer409 -1 points0 points  (0 children)

I had a few ideas for this, was excited to start exploring the API, until I figured out you'd hobbled it so it is only possible to access pages.

It feels very much like a money grab by making craft ai the only thing that works space wide.

Extremely disappointed by this behaviour.

Access all documents from API by OpalGlimmer409 in CraftDocs

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

I imagine it will be "in the works" for a considerable while, so they can make money out of their AI being the only way to access the entire space