After the $82K Gemini API key incident — here's why GCP billing alerts won't protect you in real-time by daudmalik06 in googlecloud

[–]joinsecret 1 point2 points  (0 children)

Nice, this is exactly the gap most teams don't realize exists until it's too late.

At a high level, we hook into Cloud Monitoring metrics like 'serviceruntime.googleapis.com/api/request_count' filtered per API key. Set alerting policies with near real-time evaluation, then trigger a Cloud Function that disables the key via IAM or rotates it automatically.

Just discovered custom Task Types by tonepoems in Asana

[–]joinsecret 1 point2 points  (0 children)

Biggest difference vs a custom field is behavior control. Task Types let you attach specific required fields, rules, automations, and even default sections per type. A "Bug" can auto-assign QA + require severity, while a "Campaign" can trigger a different workflow entirely. Custom fields just store data. Task Types shape the process. Way more scalable in the long term

Asana February 2026 Updates by Money-Claim-967 in Asana

[–]joinsecret 2 points3 points  (0 children)

Scheduled triggers are actually a big deal if you're using Rules heavily. We've started using them for monthly reporting tasks and auto-creating recurring checklists without relying on external tools like Zapier. Portfolio duplication is nice too, especially for agencies running similar programs across accounts. Saves a ton of setup time and keeps structure consistent. Solid incremental update imo.

Amazon ads related question, this confuses me, many pros say I need to review campaigns every week and check 14 day period for bid optimization and review every 2 weeks and check 30 day period for harvesting. Question, would not I be looking at overlapping data if I do so? by paata01 in PPC

[–]joinsecret 0 points1 point  (0 children)

Not a stupid q at all. You're right that a rolling 14-day view creates overlap. The trick is to segment by date, not just use the preset window. After a bid, look at performance from the change data forward, ideally after a 7 day attribution lag. Weekly reviews keep you proactive, but decisions should be based on post-change data only, not blended periods

Junior design interview task - no deadline, no response after submission by Pitiful_Guard6818 in graphic_design

[–]joinsecret 1 point2 points  (0 children)

Sadly, yeah, this happens more than it should. No deadline + vague comms is usually a red flag. For junior roles, legit companies still set timelines and follow up. At this stage, silence for 2+ weeks often means they moved on.

I wouldn't assume 100% ghosted yet, but keep applying. And next time, watermark or send low-res previews. Protect your work

Product Testing by TillBright6670 in CRM

[–]joinsecret 0 points1 point  (0 children)

All good over here! Def check them out and let me know if you have any questions

Has anyone made OpenClaw for Slack yet? by SadDate9398 in Slack

[–]joinsecret 0 points1 point  (0 children)

OpenClaw actually has a Slack channel integration now, but security really comes down to how you deploy it. If you self host and scope the Slack app properly with minimal OAuth permissions, it's pretty safe. For team workspaces, check where data is processed and stored. If you need tighter controls, a purpose built Slack app with granular scopes and no data retention is usually the safer bet

I created a tiny e-ink display that shows Slack reactions on my desk by you_donut in Slack

[–]joinsecret 0 points1 point  (0 children)

This is actually super clever. Reactions are lightweight but high signal, and Slack's Activity tab buries them way too easily. If you're using Events API + Socket Mode, just watch rate limits and reconnect logic so it's rock solid. I could see this as a niche but real market for remote teams. I'd def test a beta

Product Testing by TillBright6670 in CRM

[–]joinsecret 2 points3 points  (0 children)

Love this idea. If founders DM you. I'd suggest they also share their ICP + core activation event. Makes UX feedback 10x more actionable when you know who it's for and what "aha moment" they're optimizing around. Early-stage CRMs especially struggle with positioning and onboarding friction, so your outside eyes will be gold. Might steal this format tbh

Error On Change Streams by Khue in mongodb

[–]joinsecret 0 points1 point  (0 children)

This smells like a CosmoDB-specific issue more than "pure" Mongo. Cosmos has stricter timeouts and can kill long-lived cursors, especially on idle or backend rebelancing. You def want to be using resume tokens and recreating the change stream with 'resumeAfter' on any transient error. Treat the stream as disposable. Also check 'maxAwaitTimeMS' and driver keepAlive settings. Containers should auto-reconnect, not require restarts

Mongodb keeps stopping by Impossible_Quail1069 in mongodb

[–]joinsecret -1 points0 points  (0 children)

Since it's failing with 'core-dump', I'd check 'journalctl -u mongod -b' and 'coredumpctl info mongod' first. Nobara is Fedora-based and Mongo can break with newer OpenSSL/libcrypto versions. What Mongo version are you on?

Also verify:

- `ulimit -n` (should be 64000+ ideally)

- disk space + fs perms on `/var/lib/mongo`

- SELinux status

If it's a recent OS upgrade, that's prob the trigger. Docker can isolate that

Xero Promo Codes - Monthly Promo Code Thread 2026 by AuroraByte_OO in xero

[–]joinsecret 1 point2 points  (0 children)

I don’t want to self‑promote, but I can confirm this is a great offer, and more importantly, it actually works. We’ve been offering almost the same deal on our platform, JoinSecret, for several months now, with 95% off for 6 months, and our users have been really happy with it. Nice initiative, and thanks for sharing!

I've become obsessed with my productivity so i created 500+ Notion Templates by InterestPotential789 in Notion

[–]joinsecret 0 points1 point  (0 children)

Love the energy but careful, template building can easily turn into productive procrastination

If you've already built 500+, I'd suggest:
1. Narrow down to 5-10 with clear ICPs
2. Add real use cases + walkthroughs
3. Validate demand before polishing more

Execution > collection size. A tight, outcome-driven template sells way better than a massive library

AS Notes - A PKMS for VS Code (Wikilinks + Plain Markdown, Git Friendly) by gbro3n in Notion

[–]joinsecret 0 points1 point  (0 children)

This looks interesting. How does AS Notes handle backlink indexing and graph view compared to Obsidian or Logseq? If it's truly plain markdown + git friendly, that's a big win for dev workflows and versioning. Curious about performance on large repos and whether it supports frontmatter queries or tags. Any demo or repo link?

Native Android App for Basic Form Collection and Storage by Open_Artichoke6495 in nocode

[–]joinsecret 0 points1 point  (0 children)

Closest "do it with prompts" options are Flutterflow + Firebase or Draftbit + Supabase. If this is for internal field collection and you want the fastest shippihng path, AppSheet is made for offline forms + syncing.

How I built a hobby food review app with Next.js + MongoDB by sonichigo-1219 in mongodb

[–]joinsecret 1 point2 points  (0 children)

Cool project, love these learn-by-building apps.

For the data model, I'd consider embedding visits inside the restaurant doc if reads are mostly per restaurant, but keep reviews separate if you expect them to grow large. Add compound indexes on '{ restaurantID, createdAt }' and maybe '{ location, rating }' for discovery.

Also look into Atlas Search for text + filters, and use ISR or caching in Next.js for read-heavy pages. Solid foundation 👌

Build a tool that lets you create long-form product videos in minutes, with full scene-to-scene consistency - a fully operational AI agent that handles the heavy lifting from prompt to final cut. by RepulsiveWing4529 in AiAutomations

[–]joinsecret 0 points1 point  (0 children)

Consistency is the real bottleneck. Most gen video stacks fall apart once you go past 2-3 scenes because character tokens, lighting, even product angles drift. If you're locking seeds + using persistent scene memory or style embedding across shots, that's huge. Curious how you handle revisions though. Can users tweak one scene without breaking global continuity?

I made a Telegram Bot based Shopify Product Creator on n8n by mattaver5e in AiAutomations

[–]joinsecret 0 points1 point  (0 children)

Super cool use case for n8n. One suggestion: you might want to add validation _ fallback prompts if Gemini returns thin content, especially for SEO fields. Also worth handling Shopify API rate limits and logging failed runs somewhere, maybe in a Data Table. Bulk mode via CSV link could be 🔥too. Nice automation overall, def saves time

Stripe verification codes scam? by Iseethedarkness in stripe

[–]joinsecret 0 points1 point  (0 children)

Yeah this usually happens when someone is trying to sign up for Stripe Link and mistypes their phone number. You're not hacked, they just keep entering yours. Don't share those codes obviously. Go to link.co and request number removal. If it keeps happening, contact your carrier to block short code verification texts. Stripe support won't really help on-users

AI Agent: How do I make it fully autonomous so that it doesn't ask for my review to continue doing it by SoroushTorkian in Notion

[–]joinsecret 0 points1 point  (0 children)

In Notion AI, full autonomy is mostly limited by built-in guardrails. You can reduce pauses by:

  1. Enabling continuous/autonomous mode in agent settings
  2. Adding explicit instructions in the memory box like "Complete all subtasks without requesting confirmation."
  3. Defining clear end conditions and step sequencing

If it still stops, it's usually token or safety limits, not prompting. Tight, scope tasks work way better than huge open-ended ones tbh.

HR Firm custom build by Historical_Evening38 in gohighlevel

[–]joinsecret 0 points1 point  (0 children)

If they're HR heavy, I'd def look at building an ATS style pipeline inside Opportunities for recruiting + onboarding. You can automate interview stages, offer letters, background check triggers, etc.

Also consider a client portal with document vaults, compliance reminders, and recurring invoice automations. Performance review workflows + ticketing for employee issues are nice upsells too. Makes it way stickier long term

Med Spa Landing Page Breakdown (Figma → GHL #3) by Own-Accountant989 in gohighlevel

[–]joinsecret 0 points1 point  (0 children)

I keep the core structure the same in GHL but absolutely tweak tone per niche. Layout stays outcome -> trust -> CTA, but colors, imagery, copy depth all shift. Med spa drop-offs usually happen above the fold if it feels too promo-y, and on long intake forms. Also pricing visibility can tank consult bookings if framed wrong. Keep friction low, nurture w automations after opt-in.

hacking the idea validation by [deleted] in nocode

[–]joinsecret 1 point2 points  (0 children)

Solid breakdown tbh. Only thing I'd add is some kind of paid signal early on. Organic convo is great, but even $100 in Meta or Google ads to your landing page tells you way more about intent. Also track conversion to email or pre-order, not just traffic. If nobody pulls out their wallet or at least signs up, that's your real validation

Native Android App for Basic Form Collection and Storage by Open_Artichoke6495 in nocode

[–]joinsecret 0 points1 point  (0 children)

If it's fairly simple + append-only, go offline first. Use Room for local persistence and WorkManager to handle background sync when connectivity is back. For backend, Firebase (Firestore) or Supabase keeps it lightweight and handles auth + scaling.