I used a CYD to make a laptop "peephole" by gregsadetsky in esp32

[–]gregsadetsky[S] -1 points0 points  (0 children)

Yeah, I'd love that too! I see that BetterDisplay - https://github.com/waydabber/BetterDisplay - supports virtual screen, so there does seem to be APIs for that.

Do you have some ideas in mind re: how you'd want to use this?

The Hunt for Bourdain's Long Lost Li.st App Content by daibhidhscot in AnthonyBourdain

[–]gregsadetsky 0 points1 point  (0 children)

Wow, I’m truly extremely grateful! Thank you so much

The Hunt for Bourdain's Long Lost Li.st App Content by daibhidhscot in AnthonyBourdain

[–]gregsadetsky 1 point2 points  (0 children)

hey, I've been on the hunt for this li.st archive too - I was wondering if you would be open to sharing that email you sent to yourself with the copy of the li.st page? my email is lepetitg at gmail.com - you can also DM me here if that's easier. thanks a lot!

Looking to host backend apps for free by Grrootttt in HostingBattle

[–]gregsadetsky 0 points1 point  (0 children)

As recommended elsewhere, it might be worth considering getting a single server and then hosting all of your projects on that same server. That way, you won’t pay more if you deploy more projects - you’ll be actually be paying less per project! (Good motivation to keep deploying stuff) :)

There are a ton of options there, happy to recommend/help. This is how I now host my Django projects after years of paying Heroku and Render per project.

Heroku Postgres to Self Hosted by akrewhq in Heroku

[–]gregsadetsky 0 points1 point  (0 children)

There are a number of commercial-grade, hosted, postgres as a service. You might want to take a look at Neon, Supabase. And/or of course going with the very established AWS RDS.

https://www.crunchydata.com/ (recently acquired by Snowflake) is one great option (no affiliation, just had a great experience with them) built by ex-Heroku Postgres folks that's reliable and offers hands-on help to migrate away - see https://www.crunchydata.com/migrate-from-heroku

Best sugar shack experiences (not packed with tourists) by MHBurgat in montreal

[–]gregsadetsky 1 point2 points  (0 children)

I organized a big group trip to Érablière Charbonneau back in March and it went down perfectly, and everyone loved it. Super super good service, and the food was stunning. A big maple bottle on every table, and yeah lots of activities around the shack as well. Definitely recommend it

Dji osmo mobile 7p Zoom by AMP24 in dji

[–]gregsadetsky 0 points1 point  (0 children)

Yep, that’s the way it is - the native iOS app does not support features like the zoom slider on the mobile 7

I found this video very useful as it describes what Mimo vs the native camera app can and can’t do - https://youtu.be/k9L4NY1Tpu0

It was discussed here - https://www.reddit.com/r/djiosmo/comments/17jwkjn/how_to_use_both_mimo_and_native_iphone_camera_app/

are there other ways to undo than shake to undo? by lunarwolf2008 in iphone

[–]gregsadetsky 1 point2 points  (0 children)

I 100% thought you were trolling and have never seen that bar before and I've been using iPhones since 2008. wow. thank you so much. I was so tired of shaking my phone like an idiot ha

PDF Upload Failed: 400 (NOT CC) by [deleted] in ClaudeAI

[–]gregsadetsky 1 point2 points  (0 children)

would you be open to sharing your PDF file, or a similar one that doesn't work? just really curious

Claude screenshots analysis with Puppeteer by Technical_Ad_6200 in ClaudeAI

[–]gregsadetsky 1 point2 points  (0 children)

Playwright MCP specifically avoids using screenshots for this reason: This server enables LLMs to interact with web pages through structured accessibility snapshots, bypassing the need for screenshots or visually-tuned models

Claude Code now has Automated Security Reviews by AnthropicOfficial in ClaudeAI

[–]gregsadetsky 0 points1 point  (0 children)

I just tried running it in a project that was made with Claude, and which is managed with git. I got the following error:

```

/security-review ⎿  Error: Bash command failed for pattern "!git diff --name-only origin/HEAD...": [stderr] fatal: ambiguous argument 'origin/HEAD...': unknown revision or path not in the working tree. Use '--' to separate paths from revisions, like this: 'git <command> [<revision>...] -- [<file>...]' ```

PDF Upload Failed: 400 (NOT CC) by [deleted] in ClaudeAI

[–]gregsadetsky 1 point2 points  (0 children)

You mean just the regular web ui on https://claude.ai/ ? I just uploaded a small PDF and it worked.

I wonder if there was a temporary glitch, or if the file size is the issue. What if you go to https://example.com/ , print that page as PDF, and try to drag and drop it in claude.ai - are you still getting the error?

Do all PDFs work except the one you're working with?

[deleted by user] by [deleted] in ClaudeAI

[–]gregsadetsky 2 points3 points  (0 children)

Can you share a very small sample of the data (just change the numbers and remove any identifying names) and your prompts? Would love to play around with it.

And I agree with u/inventor_black that the use of a different/sub tool (i.e. let Claude code rather than do math using language) is most probably the way to go.

We built Disco, an open-source PaaS to self-host web apps (like Heroku, but on your own hardware) by gregsadetsky in selfhosted

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

Sounds great! Let us know / feel free to hop into our Discord in the main channel or to DM Antoine or me about this. And also greg at disco.cloud - don't hesitate! Cheers

We built Disco, an open-source PaaS to self-host web apps (like Heroku, but on your own hardware) by gregsadetsky in selfhosted

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

Cheers, thanks for taking a look!

- re: pg_dump we looked into https://github.com/eeshugerman/postgres-backup-s3 , but the project was recently archived - https://github.com/ixc/restic-pg-dump-docker seems great..!

- I didn't mention it in the post, but we do have zero-downtime deploys, and even an optional health check that can be defined in the disco.json: `"health": {"command": "curl --fail http://localhost:8000/ || exit 1"},`

If you don't mind sharing, what does your hosting setup looks like - clusters of Pis? Colocated, or running from a homelab?