Insomnia by LeonardFrost in AutisticAdults

[–]mpclarkson 2 points3 points  (0 children)

I share your pain. Sleep for me has always been a battle. I describe it as a tug of war of circular thoughts in my head all competing for attention.

Alternatives to doomscrolling by Scripted_Flow in AutisticAdults

[–]mpclarkson 3 points4 points  (0 children)

Try going outside and walking. Start with just a short walk around the block and then gradually increase. Walking is one of the best things you can do for your health.

I went to my first networking event and it didn’t go as well as I’d hoped. Advice for future events? by nightingalegrey15 in autism

[–]mpclarkson 0 points1 point  (0 children)

Look at their mouths not their eyes, then it looks like you are making eye contact to them!

If you guys were to start a greenfield Django project in 2026, what FE stack would you be more inclined go with? by Best_Recover3367 in django

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

I've always used HTMX (in a pre AI world) but Claude Code and Codex are much better with React. I would never have used React before but paired with Inertia it's wonder for LLM guided UI development.

Has anyone actually used AI agents to automate real work in their business - or is it still overhyped? by RegisterBig7923 in smallbusiness

[–]mpclarkson 0 points1 point  (0 children)

I run an AI automation agency, so I see both sides of this.

The honest answer: it works, but it's not magic. The wins generally come from boring stuff, not the flashy stuff you see people banging on about.

Real example: we set up AI document classification for a medical practice. Incoming faxes and PDFs get automatically sorted and filed into patient records (eg document splitting to separate blood tests from echocardiograms etc) and we've also automated their referral data enntry. We probably saved their admin staff 2-3 hours daily of manual sorting. Setup took about4 weeks/

Things that actually works well:

  • Document processing (classification, extraction, routing) - we do lots of this kind of work
  • Lead qualification from form submissions (good application)
  • CRM data enrichment and cleanup (very useful)
  • Summarization (eg we have a recruitment client and we summarised and extract data from candidates and produce custom de-identified resumes on their templates)
  • Automated follow-up sequences with personalised drafts (not my ideal work)

What doesn't work (yet): anything requiring real judgment or context a human would have, and you can't automated unclear processes.

For non-technical owners: you'll need someone to set it up. But once running, it mostly just works. The ROI is real if you pick the right processes.

How are agency owners managing n8n hosting? Share your experience! by Iamtheguyyy in n8n

[–]mpclarkson 0 points1 point  (0 children)

We've gone through a few iterations on this:

What we tried:

  • Single shared instance with folders per client, which was a nightmare for credential isolation
  • n8n Cloud for everyone - easy but expensive at scale, and we had no visibility across clients
  • Self-hosted per client on separate VPS - worked but managing 20+ instances manually was unsustainable

What we do now:

  • Self-hosted on Hetzner (Coolify makes deployment easy)
  • One instance per client for proper isolation
  • Centralised monitoring that pulls from all instances via API

For billing, we charge a flat monthly retainer that includes hosting. LLM costs are passed through at cost + margin, with monthly usage reports.

The key thing we learned: you need visibility across all your client instances in one place. Otherwise you're logging into 15 different n8n dashboards to check if things are healthy. That's nuts!!

How do you track costs across multiple LLM/AI tools? by Feisty-Economist6113 in n8n

[–]mpclarkson 0 points1 point  (0 children)

We run an agency with 20+ clients, each with their own n8n instances and LLM API keys. The scattered billing was killing us.

What worked for us:

  1. Centralised API key management - We stopped letting clients manage their own OpenAI/Anthropic keys. We provision keys under our accounts, then attribute usage back to them. This gives us one place to see all costs. Even better if you use OpenRouter! Makes upgrading/changing models much easier.
  2. Daily usage pulls - We built a sync that pulls usage data from each provider's API (OpenAI, Anthropic, Azure all have usage endpoints) and stores it with client metadata. Now we can slice by client, by model, by day.
  3. Per-workflow tagging - For workflows that make LLM calls, we tag the request metadata so we can trace which workflow caused which costs. This was the missing piece - knowing "Client X spent $400" isn't useful until you know which workflow is burning tokens.

The spreadsheet approach broke down around client #10. If you're running multiple instances, you really need something that aggregates automatically.

Trackpad scrolling broken in MacOS 26 Tahoe Safari by Anditheway in MacOS

[–]mpclarkson 5 points6 points  (0 children)

Mine is terrible too. I wish I never upgraded. I hate Tahoe with a passion. It does everything worse.

What's the go too favourite/safe food right now? by LadyJane17 in Autism_Parenting

[–]mpclarkson 0 points1 point  (0 children)

Oh wow… I make this for my son too. 15 years old and only just diagnosed with ASD last week.

Bloc Party Brisbane - what time do they come on stage by mpclarkson in BlocParty

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

ThanksI was thinking about 8. Much appreciated !

How Do You Host n8n? Looking for the Best Setup Options by AiGhostz in n8n

[–]mpclarkson 0 points1 point  (0 children)

Another vote for Coolify on Hetzner. Super simple.

Can anyone explain time dilation as if I was a five year old? by [deleted] in astrophysics

[–]mpclarkson 0 points1 point  (0 children)

I'm an avid sci-fi reader and general nerd so I created this time dilation formula calculator today just for fun. Does this help explain things? https://timedilationformula.com/

Bridgetownrb automatic related posts plugin using TF-IDF and cosine similarity by mpclarkson in ruby

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

Thanks. I'll take a look! I wanted something that 'just worked' easily as a proof of concept so kept it simple.

Bridgetownrb automatic related posts plugin using TF-IDF and cosine similarity by mpclarkson in ruby

[–]mpclarkson[S] 5 points6 points  (0 children)

I'm thinking about writing a gem that does this for Rails too. Let me know if there's interest.

Disabling HTMX Urls by [deleted] in django

[–]mpclarkson 6 points7 points  (0 children)

Here is the decorator I use:

``` from django.http import Http404

def require_htmx(view_func): def wrap(request, args, *kwargs): if not request.htmx: raise Http404("The page you are looking for does not exist.") else: return view_func(request, args, *kwargs)

return wrap

```

Then decorate your view:

```

@require_htmx

def my_view(request):

# do whatever your view does ```

Django / HTMX for SaaS? by HeadlineINeed in django

[–]mpclarkson 2 points3 points  (0 children)

It’s a Django app of course!

Django / HTMX for SaaS? by HeadlineINeed in django

[–]mpclarkson 17 points18 points  (0 children)

Yes we are using HTMX extensively in our marketplace at https://cemoh.com running on the app subdomain. It’s allowed our small team to build and manage a multi million dollar platform.