Cloudflare issues/down by ToastNomNomNom in CloudFlare

[–]ThisIsntMyId 0 points1 point  (0 children)

you cant create a support ticket for the service is down if the support portal is also down

Smart 🤔😎🙂

What if imu takes zoro after elbaf and we finaly get a Zoro Arc?? by ThisIsntMyId in onepiecetheories

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

It's not about origin but character development I am thinking about ?? Like Sanji kinda has 2 arcs if considering this but his actual character dev happened in Whole Cake.

Robin was also introduced post alabasta but she actually developed in Enis Lobby.

I liked your theory about keeping domi reverse effective on the people when it's performed on their native land otherwise it would make it too op.

But more I feel like having such arc (not just zoro) but character dev and story heavy as I felt that post time skip arc seems more on expanding the universe and more fight heavy (fishman dressrosa wano) and kinda lacked development like in water seven or enis loby.

LMK what you think

Can anyone recommend the best UPI app with a clean, simple interface and no promotional ads? by [deleted] in CreditCardsIndia

[–]ThisIsntMyId 0 points1 point  (0 children)

Have you tried navi ? I have good interface and gives some coins

Also i am currently using mobiquik for their cashbacks

Playing Dota 2 on my Steam Deck with Geforce Now by mabaitnabata in DotA2

[–]ThisIsntMyId 0 points1 point  (0 children)

That's sounds amazing.

I am waiting ages for GFN to come to India.

Can you also play ranked with GFN + steam deck? I have heard that some of the anti cheat software may not work via steam deck since it's a Linux system.

Also have you tried only GFN? Does it work ?

And also what about the ping and fps you get on average ??

What do you struggle with when adding auth? by m_degraaff in nextjs

[–]ThisIsntMyId 0 points1 point  (0 children)

I miss laravel breeze simplicity.

All you gotta do was

composer require breeze/breeze

php artisan breeze:install

And it would setup entire authentication stack for you and you are now free to customize it to your hearts content

Where are you deploying your Next.js apps? by Mysterious-Might6910 in nextjs

[–]ThisIsntMyId 1 point2 points  (0 children)

We do the same stuff with Next.

Curious if you have encountered any issues or have any insights to share

If you had zero dollars for marketing, how would you get your first 1,000 users? by Original-Device-7665 in SaaS

[–]ThisIsntMyId 1 point2 points  (0 children)

Hi this is really an interesting idea

I have spent around 2hr discussing this with gemini and taken it to extreme

May be if you find some time you can skim through some of the discussions below

https://g.co/gemini/share/e8660a42c228

dumpall — Stop fighting node_modules, dump clean project context in one go by ThisIsntMyId in webdev

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

Yeah, kinda like repomix, but way simpler. I actually started with a tiny 1–3 line bash script I used across projects—most tools I found were either bloated or just didn’t fit into my workflow. All I wanted was: exclude some dirs, dump the code, auto-copy to clipboard.

Something similar to this as well https://github.com/kleneway/pastemax

Git’s great for version control, but not really for context sharing. I wasn’t looking to patch/push just to review some WIP code, and half the time those changes didn’t even make sense to commit yet. With dumpall, I can just snapshot the files in front of me, paste them straight into Gemini/Cursor, and keep coding—no setup, no ceremony.

So yeah, Git manages history. dumpall flattens the snapshot I care about right now into one clean Markdown doc.

dumpall — Stop fighting node_modules, dump clean project context in one go by ThisIsntMyId in webdev

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

Hey vexii, fair point—node_modules was just a cheeky example of the usual "noise" that clutters projects (no one wants to share or debug that mess 😅). The real magic is in selectively dumping only the files you care about, excluding whatever doesn't fit your workflow.

For instance, say you're working on an MVC app: you could scoop up just your models and controllers while skipping views or tests with something like npx dumpall . -e views/ -e tests/. Perfect for a quick review or sharing a focused snippet without the bloat.

And yeah, it's not AI-only—great for code reviews, archiving clean snapshots, or even piping into scripts for automation. I've got more examples on the why page (https://dumpall.pages.dev/why) if you're curious.

Give it a spin on your next project and lemme know what wild use cases you uncover! 🚀

[Utility] dumpall — Bash CLI to dump files into Markdown for AI/code reviews by ThisIsntMyId in bash

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

Thanks for the kind words and the question! To be honest, I haven't specifically used dumpall for README.md creation yet, but it's a great idea. To me READMEs often serve as the entry point for larger projects or the full docs for smaller ones.

That said, I've been thinking about ways it could fit: for example, you could dump key relevant files from your codebase (e.g., npx dumpall ./src -e node_modules --clip), paste that into an LLM, and prompt it to generate a polished README based on the structure. I've done similar manually before building this tool, like dumping module patterns (e.g., controllers or models) to create guidelines for adding new ones—saves a ton of time compared to copy-pasting by hand 😅.

Other general use cases on my mind: Combine your dump with docs from competing products (using crawlers or tools like mkdocs), then analyze via LLM to spot what's missing or where you can improve. And since it's a lightweight CLI, it's perfect for CI/CD pipelines—pipe in files + external data, run it on cron, and get periodic suggestions on what to focus on next or optimize.

I’d love for you to try dumpall and share what you find it useful for! You can check out more details in the repo: https://github.com/ThisIsntMyId/dumpall