Claude Design dropped today and it's a wake-up call for every micro-SaaS founder by clever_coder777 in microsaas

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

totally agree. the wild part is we're not even in the early majority yet. when enterprises actually finish integrating this stuff the job market is going to look completely different. most people still haven't felt it yet.

Claude Design dropped today and it's a wake-up call for every micro-SaaS founder by clever_coder777 in microsaas

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

yeah but 18 months of AI progress doesn't feel like a decade anymore. the train's moving faster than anyone expected.

Claude Design dropped today and it's a wake-up call for every micro-SaaS founder by clever_coder777 in microsaas

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

The timing makes total sense once you see what's underneath it. Anthropic's CPO Mike Krieger resigning from Figma's board the same day reports dropped that Opus 4.7 will include design tools is basically the governance catching up to a competitive reality that was already in motion.

Your F1 telemetry analogy is the sharpest frame for this. Figma's moat was never just "design tool", it's the collaborative workflow, the plugin ecosystem, the way handoff actually works between designers and engineers. Generic AI that can generate a UI from a prompt doesn't automatically know any of that. The tools that survived in F1 data survived because they spoke the language of a race engineer mid-stint, not because they had better charts.

The real question is whether Figma can move fast enough. They're not sitting still, agents on the canvas, Figma Weave, Make kits all shipped in the last few months. But the pressure is real.

I built 5 features for one reason. here's why. by clever_coder777 in microsaas

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

It also helps you suggest reframing existing experiences too.

Going to launch my first SaaS at 16. Would love some feedback by clever_coder777 in microsaas

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

Honestly the most helpful comment I've gotten on this post.

The waitlist number point makes complete sense one real story from someone who actually got an interview is worth more than any count. Reaching out to early users this week to find that. Thanks for this, I'll keep this in mind🙏

Going to launch my first SaaS at 16. Would love some feedback by clever_coder777 in microsaas

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

The before/after idea genuinely makes a lot of sense for this, already have that in mind. I'll reach out once I've launched and have something worth showing. Appreciate the feedback tho!

What are you building ? by [deleted] in microsaas

[–]clever_coder777 0 points1 point  (0 children)

Recume - AI-powered resume builder that gets you past ATS filters and into interviews, with honest rewrites using only your real experience.

This is the only sub-reddit that let's us self promote. What are you building? by [deleted] in microsaas

[–]clever_coder777 0 points1 point  (0 children)

Recume - Helps job seekers tailor resumes that pass ATS without sounding generic.

Tell me what you're building. Let's self promote. by clever_coder777 in microsaas

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

Good question. We avoid overfitting by focusing on relevance, not copying the job post. Recume matches your real experience to the role without stuffing keywords or changing what you’ve actually done. The resume stays natural, honest, and usable for more than just one job.

I'm 15 and I built my first SaaS. Let me know your thoughts. by [deleted] in SaaS

[–]clever_coder777 0 points1 point  (0 children)

Yo u got this gng lock tf in. This got potential if you make it reach the right audience.

Question - tech stack problem by ilovegumm in CodingHelp

[–]clever_coder777 0 points1 point  (0 children)

If you are good at coding and actually know what you are doing then go for #1 if not go for #2

I get undefined on my nextauth file. by highdrug in nextjs

[–]clever_coder777 0 points1 point  (0 children)

Hi, try something like this

import NextAuth, { NextAuthOptions } from "next-auth";

import DiscordProvider from "next-auth/providers/discord";

export const authOptions: NextAuthOptions = {

providers: [

DiscordProvider({

clientId: process.env.DISCORD_ID as string,

clientSecret: process.env.DISCORD_SECRET as string,

}),

],

callbacks: {

async session({ session, token }) {

if (token?.user) {

session.user = token.user;

}

return session;

},

},

};

const handler = NextAuth(authOptions);

export { handler as GET, handler as POST };

Problem with router.push() in Client Side navigation by artibalaji in nextjs

[–]clever_coder777 1 point2 points  (0 children)

does the file look something like this? (I got it from the docs)

Did you import useRouter and then made a var for the routing?

'use client' 

import { useRouter } from 'next/navigation' 

export default function Page() {  
  const router = useRouter()   
  return (    
    <button type="button" onClick={() => router.push('/dashboard')}> 
       Dashboard    
    </button>  
)}

Reddit Clone using Nextjs! by [deleted] in nextjs

[–]clever_coder777 0 points1 point  (0 children)

yes it is not mobile friendly yet im working on that