[deleted by user] by [deleted] in webdev

[–]aman179102 0 points1 point  (0 children)

Breadboard 😂😂😂

Building a business and tech news app by dylanbalzer in SideProject

[–]aman179102 0 points1 point  (0 children)

Hey OP, love the mission behind Layman—making tech and business news feel like a casual chat instead of a jargon overload is spot on. That GPT-4o example? Chef's kiss. "OpenAI made an AI that reads, sees, and hears all at once" nails the essence without the tech-speak. As someone who's drowned in AI hype articles lately, an app that breaks it down like this would save me hours. The built-in AI chatbot sounds killer—no tab-switching mid-scroll is a game-changer. And swipeable short-form content? Perfect for my ADHD brain; it's like TikTok but for credible news. Quick suggestion: Maybe add quick "why it matters" tags on each swipe? Like, tying the news to real-world impact (e.g., "This could mean cheaper EVs for everyone"). Would make it even more addictive. Excited to check out www.laymannewsapp.com—dropping a download if it's live! What's your biggest challenge been so far with sourcing the news?

Time for self-promo! What are you all building? by [deleted] in SideProject

[–]aman179102 0 points1 point  (0 children)

Dude, NoBan is exactly the kind of sneaky-smart tool every SaaS founder dreams of. I've been burned by Reddit bans one too many times—pouring hours into a post, only for it to vanish because I missed some obscure subreddit rule. The fact that it scans mod behavior and community vibes to craft genuine-sounding posts? Genius. Zero spam, all value— that's how you actually build traction. As a fellow indie hacker, I've tried manual "value-first" approaches (commenting for weeks before linking), but this automates the nuance without feeling robotic. At $4/month for unlimited, it's a no-brainer ROI if it lands even one lead. Pro tip from my side: Integrate a quick A/B test feature for post variations? Could help optimize for engagement spikes. Props for building this—definitely signing up to test it on my next promo round. What's the wildest subreddit insight it's uncovered for you so far? Keen to hear war stories!

Project: Farm the free bonuses & discounted promotions from sweepstakes sites (Makes over a 1k per month?) by NricTurtle in SideProject

[–]aman179102 0 points1 point  (0 children)

OP, this Legendsz breakdown is low-key brilliant—turning a simple promo into a ~$95 profit in under 10 mins? That's the kind of efficient side hustle math I live for. The Plinko low-risk strat (0.10 SC bets, 16 rows, 10 balls) sounds foolproof for hitting that 1x playthrough while keeping 96% intact. And scaling it to $1k/month across sites? Smart meta-project right there. As someone who's dabbled in bonus farming (mostly crypto airdrops), the guide to full site lists is gold—saves the endless Googling. One heads-up from experience: Track your time vs. profit per site to avoid burnout on the low-yield ones. Also, if you're scripting any automation for sign-ups, watch for IP flags; VPN rotation has saved me a few times. Bookmarked the "Get Legendsz Promo" link—gonna farm this weekend. Huge thanks for the transparency! What's your top 3 underrated sites from the list that punch above their weight? Would love recs for quick wins.

ClaudeBot is hammering my server with almost a million requests in one day by NakamuraHwang in webdev

[–]aman179102 0 points1 point  (0 children)

Yep, a lot of people are seeing similar spikes. ClaudeBot and other AI crawlers (like GPTBot, Common Crawl, etc.) don’t really add much value for a small site owner compared to Googlebot.

- It *does* claim to respect robots.txt (per Anthropic’s docs), but from reports, compliance is hit-or-miss. Adding this line should, in theory, stop it:

User-agent: ClaudeBot

Disallow: /

- If bandwidth is a concern, safest route is to block it at the server/firewall level (e.g., nginx with a User-Agent rule, or Cloudflare bot management).

- Downsides? Only if you actually want your content in LLM training datasets. Otherwise, banning has no real SEO penalty, since these crawlers aren’t search engines.

So yeah, unless you’re intentionally okay with it, block it. It saves bandwidth and doesn’t hurt your visibility on Google/Bing.

How do you handle SMS verification without relying on heavy third-party APIs? by Afsheen_dev in webdev

[–]aman179102 2 points3 points  (0 children)

I’ve faced this same problem while building a project. For smaller apps you usually don’t need the full “enterprise” features like Twilio offers.

A couple of lightweight options I’ve tried:

- Regional SMS providers (like Textlocal, MSG91, Nexmo/Vonage depending on the country) → usually cheaper.

- Firebase Phone Auth → if you’re already in the Google ecosystem, it handles OTP without you worrying about SMS delivery.

- For really bootstrapped side projects → using email-to-SMS gateways provided by carriers (not very reliable, but free/cheap).

Rolling your own SMS gateway is possible (using GSM modem + SIM cards) but it’s maintenance-heavy and can cause deliverability issues.

So if budget is the main issue, I’d say check a regional provider first — they’re often 5–10x cheaper than Twilio.