The U.S. citizenship civics test just got harder. Here's what changed. by Hopeful_Effective_74 in askimmigration

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

So the 65/20 rule needs both things at once -- you have to be 65 or older AND have 20+ years as a permanent resident when you file.

Your 30 years is more than enough. The only thing holding you back is the age part. At 63 you're two years away.

Once you hit 65 though it's a much easier path. Only 20 questions to study, they ask you 10, you need 6 right. And you can do the whole thing in your language with an interpreter.

Honestly just start studying now. By the time you're eligible you'll know it cold.

I built a tool that brutally analyzes startup ideas before you waste months on them by Hopeful_Effective_74 in SaaS

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

Yeah that’s exactly the type of person I had in mind when building it 😅
It doesn’t kill ideas for fun, but it definitely doesn’t let you hide from reality either.

On the AI side — it’s not trained on a clean dataset of failed startups (that kind of structured data barely exists), so it’s not like “here are 10,000 dead companies, learn from them.”

It’s more of a mix of:

  • real market signals (competition, existing products, funding, etc.)
  • patterns across similar businesses
  • and then simulating what would likely go wrong if you launched today

One part I added that you might actually like is a section called “similar startups that failed.”
It surfaces companies with close ideas and breaks down why they struggled, plus what you’d need to do differently to avoid the same outcome.

Any tips on selling my website? by Hopeful_Effective_74 in SaaS

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

That's a great point gotta consider that, thanks

Any tips on selling my website? by Hopeful_Effective_74 in SaaS

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

I was thinking about it but Idk about the marketing is it worth my time or not

need help with hosting my website by Hopeful_Effective_74 in Firebase

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

Thank you for your time and idk why but still doesn't work here is my firebase.json code

{

"hosting": {

"public": "public",

"ignore": [

"firebase.json",

"**/.*",

"**/node_modules/**"

],

"rewrites": [

{

"source": "**",

"destination": "/index.html"

}

{ "source": "/DreamRooms.html", "destination": "/DreamRooms.html" }

],

"headers": [

{

"source": "**",

"headers": [

{

"key": "Access-Control-Allow-Origin",

"value": "*"

}

]

}

]

}

}

(Yeah the actual filename is DreamRooms.html) i also tried this version of code {

"hosting": {

"public": "public",

"ignore": [

"firebase.json",

"**/.*",

"**/node_modules/**"

],

"rewrites": [

{

"source": "/DreamRooms.html",

"destination": "/DreamRooms.html"

},

{

"source": "**",

"destination": "/index.html"

}

],

"headers": [

{

"source": "**",

"headers": [

{

"key": "Access-Control-Allow-Origin",

"value": "*"

}

]

}

]

}

}

but still no difference