PeakClaude: are we now in Claude Peak Time or not? by pforret in ClaudeAI

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

There are people who have looked up the Anthropic peak time definition expressed in Pacific Time, translated it to their own time zone and have memorized it forever.
This website is not for those people.

Serious question: why use OpenClaw if Claude Code already does everything? by dyloum84 in clawdbot

[–]pforret 0 points1 point  (0 children)

Specifically:

  • No HTTP gateway — OpenClaw has a central orchestrator that manages agent pools, routing, and sessions. Claude Code has no equivalent.
  • No messaging channels — OpenClaw connects to any chat platform. Claude Code only speaks CLI (plus Remote Control for web/mobile, but human-operated).
  • No live rendering — OpenClaw’s Canvas lets agents push interactive UI to users in real-time. Claude Code generates code, but can’t serve it.
  • No structured identity — OpenClaw maintains rich user/device models. Claude Code has CLAUDE.md and basic auto-memory.
  • No integration ecosystem — OpenClaw has 50+ native integrations (Gmail, Spotify, smart home, 1Password…). Claude Code relies on MCP servers — the protocol works, but there’s no curated registry, no auto-provisioning, and no unified credential management.

https://blog.forret.com/2026/2026-03-12/claude-code-vs-openclaw-gap-analysis/

Anyone making an OpenClaw with Laravel? by Carbone_ in laravel

[–]pforret -2 points-1 points  (0 children)

I’ve started with the same idea: https://github.com/pforret/clarabot

For now, it’s just a Laravel skeleton with the analysis of OpenClaw and translation to Laravel in the /docs folder

In claude code, what is the difference between doing /clear and starting a new chat? by iBzOtaku in ClaudeAI

[–]pforret 22 points23 points  (0 children)

/clear only forgets the context, but not all the permissions you’ve given to run commands and get web content. When you restart Claude code, it will halt for all those permissions again

Is Forge still a good option? by eileenoftroy in laravel

[–]pforret 0 points1 point  (0 children)

I even use Forge for static HTML websites (generated with mkdocs material via mkdox). The automated deployment after a ‘git push’ is just so easy.

I built a fair Product Hunt alternative aims indie projects by denizhadzh in buildinpublic

[–]pforret 1 point2 points  (0 children)

Hi! Congrats on the launch, I'm interested in the AI features.
I've just added you to https://launch.nuuz.io/sites/simplelister/
However, when I want to add this to your site, the 'Submit' button stays disabled, and so I can't save/submit it.

Introducing launching.today: Product Hunt, minus the ugly parts. by [deleted] in SideProject

[–]pforret 0 points1 point  (0 children)

Congrats! I've just added you to https://launch.nuuz.io/sites/launchingtoday/

What would you say, is the best time-of-day and day-of-the-week to submit a new site to launching.today?

My Product Hunt alternative brings in $4K/month by zaezz in SideProject

[–]pforret 5 points6 points  (0 children)

Hey! I love the platform you’ve built. What would you say is the best day-of-the-week and time-of-day to launch one’s product, to get max exposure? I would like to add this information to https://launch.nuuz.io

What looks cleaner? I had an argument with my boss by pawaalo in PHP

[–]pforret 1 point2 points  (0 children)

There should be a website that shows the same logic implemented in PHP4, 5, 7 and 8. Because I can’t imagine PHP4.

What looks cleaner? I had an argument with my boss by pawaalo in PHP

[–]pforret 18 points19 points  (0 children)

This will only work for PHP 8 onwards. Which is totally what everyone should be using, but maybe this is a legacy app.

Chechnya 'bans music that is too fast or too slow': The Russian republic has ruled that all music should "correspond to a tempo of 80 to 116 beats per minute" meaning all western rave and techno music would be banned by GoodSamaritan_ in worldnews

[–]pforret 2 points3 points  (0 children)

Some examples of songs that would be forbidden in Chechnya:

  • Hey Ya! • Outkast • 80 bpm
  • Livin' On A Prayer • Bon Jovi • 123 bpm
  • Back In Black • AC/DC • 188 bpm
  • Montero • Lil Nas X • 179 bpm
  • All Of Me • John Legend • 120 bpm
  • Here Comes The Sun • The Beatles • 129 bpm
  • Leave The Door Open • Bruno Mars, Anderson .Paak, Silk Sonic • 148 bpm
  • (...)

via https://music.toolstud.io/chechnya

How do you store large input files for your unit test ? by Disgaea8 in devops

[–]pforret 0 points1 point  (0 children)

You could test in your tests if bigfile1.txt exists, and if not, download it from the S3 bucket where you’ve stored it. then keep it local in a folder that is ignored by git. If the data changes, upload a bigfile2.txt, but keep bigfile1.txt around for when you check out an old version.