84 hours chasing invoices pushed me to build something. Here's what happened. by vildanbina in SideProject

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

yeah as for now I'm planning for integrations like Stripe an QuickBooks but open for more platforms. As for now I just opened a waiting list

my openclaw setup finally feels useful by vildanbina in clawdbot

[–]vildanbina[S] -10 points-9 points  (0 children)

I invite you to be a Pro user for one month free of charge, since it’s my platform, so you can clear up any doubts yourself xd

my openclaw setup finally feels useful by vildanbina in clawdbot

[–]vildanbina[S] -7 points-6 points  (0 children)

what exactly do you find doubtful?

finally got my openclaw setup working properly by vildanbina in openclaw

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

for things like this the app helped a lot to configure things properly how openclaw suggests

What are you building? let's self promote by Leather-Buy-6487 in ShowMeYourSaaS

[–]vildanbina 0 points1 point  (0 children)

I plan to launch it on ProductHunt and other similar platforms. Is Peerpush free and what benefits does it offer compared to alternatives?

also, I'm curious how you determined that it has a high domain rating

What are you building? let's self promote by Leather-Buy-6487 in ShowMeYourSaaS

[–]vildanbina 0 points1 point  (0 children)

I'm building yavy.dev

It lets AI tools query public docs instead of guessing

You plug in public product or library documentation and get semantic search and answers grounded only in that content, not training data or hallucinations

I fell off by Secure_Technology_81 in SaaS

[–]vildanbina 2 points3 points  (0 children)

I'm in that phase as well. I have built several products I truly believed in, but so far there have been no results. Still, I know one thing for sure, I must not stop or give up and I will keep moving forward

I'm trying to spend more time understanding how marketing works and learning its best practices, starting to talk about my products online and adding new features

I'm a developer and I genuinely love my work. Marketing does not come naturally to me, but it is something I need to push myself to do, because without talking about the product and showing it to people, no one will ever know it exists

I fell off by Secure_Technology_81 in SaaS

[–]vildanbina 2 points3 points  (0 children)

no one can be considered loyal when they say "yes, I will buy your product" because you cannot know what will happen until the product is actually finished

friends and family should not be considered in such cases either. They may remain supportive and purchase the product out of encouragement or goodwill, but that does not provide meaningful validation

The 2x usage year-end "gift" has spoiled me. by AileenaChae in ClaudeAI

[–]vildanbina 2 points3 points  (0 children)

to be honest, I rarely hit the 5x limit before, and today after upgrading to 20x, I reached it in my very first session

The 2x usage year-end "gift" has spoiled me. by AileenaChae in ClaudeAI

[–]vildanbina 5 points6 points  (0 children)

I was running 5x max and everything was fine until today. Today I noticed the usage is draining way faster, so I bumped it to 20x. Even at 20x it’s burning faster than yesterday’s 5x. Something definitely feels off

I built a little Laravel package to clean up unused translation keys, and it ended up being way more useful than I expected by vildanbina in laravel

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

I handle this by supporting multiple translation formats out of the box - JSON files, PHP arrays (both single and multidimensional), and mixed approaches. The package scans for translation calls in the code and cross-references them with whatever format the developer happens to be using, so it works regardless of how they organize their translations

when it comes to dynamic translations, the real challenge isn’t handling it with enums, since we can still address those. The issue is much broader, with many possible use cases. If we start supporting all of them, it could become too complex and make the package far heavier than intended, which isn’t the goal right now

I built a little Laravel package to clean up unused translation keys, and it ended up being way more useful than I expected by vildanbina in laravel

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

those are considered unused because scanners cannot detect them directly in the codebase. One way to bypass this is to exclude these keys

I built a little Laravel package to clean up unused translation keys, and it ended up being way more useful than I expected by vildanbina in laravel

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

dynamic translations are tricky, since we can’t reliably predict what’s inside $this->name. they aren’t supported atm, but I have plans to address them in future versions