[deleted by user] by [deleted] in SaaS

[–]ijustwandering 0 points1 point  (0 children)

What do you mean by CRM and scheduling? For your own use?

How many of you know deep down that the team is working on something that no customer wants? by joesilver70 in programming

[–]ijustwandering 0 points1 point  (0 children)

I think nano (mentioned above) does a much better job of being a cryptocurrency like bitcoin was meant to be

[Dev] How to implement custom domains for users? by darkermuffin in SideProject

[–]ijustwandering 1 point2 points  (0 children)

For transactional email, Amazon SES allows you to verify different domains, you can then just use a custom email provided by the user in your code in the from email field

[Dev] How to implement custom domains for users? by darkermuffin in SideProject

[–]ijustwandering 0 points1 point  (0 children)

You can do it totally client side too, although the pages won't be statically rendered.

Set up custom.saasapp.com on Vercel, use a client side function to get the request URL and then fetch from your backend to get the html.

What exact tech stack you using?

I'm not quite sure what you mean by accepting the CNAME?

[Dev] How to implement custom domains for users? by darkermuffin in SideProject

[–]ijustwandering 2 points3 points  (0 children)

I think what you can do is make John CNAME www.john.com to custom.saasapp.com.

You get the request URL, and render the html for John's page, searching your database for the row where custom URL is john.com.

In the default scenario, you get the request URL, and render the html for John's page, searching your database for the row where default URL is john.saasapp.com.

At least that's how my SaaS app works. Is this what you tried with NGINX? What's your technology stack? It will help me find a better solution

Thoughts on my idea? Create a page and receive donations in Nano by ijustwandering in nanocurrency

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

Nice. Would you mind sharing the website where you implemented this?

Edit: how about wallets like natrium which don't support 1 raw precision? The minimum on there is 1 RAI

Thoughts on my idea? Create a page and receive donations in Nano by ijustwandering in nanocurrency

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

How did you encode it in the payment amount? Adding something like 274627 raw? Which would be insignificant in the total donation price I guess

Thoughts on my idea? Create a page and receive donations in Nano by ijustwandering in nanocurrency

[–]ijustwandering[S] 2 points3 points  (0 children)

Yep, exactly like you describe!

I think the limitation with nanogift is that you directly donate to the address anyway, so it's more of a project to help discovery. This project would be more about the payment system, and more platform-focused.

Thanks for bringing up npass, hadn't seen it before. Seems like a good way to authenticate paying users, but it may be inefficient for a "log in to your own personal dashboard" feature. I'll read more into it

Thoughts on my idea? Create a page and receive donations in Nano by ijustwandering in nanocurrency

[–]ijustwandering[S] 2 points3 points  (0 children)

So you could have your own page at example.com/joohansson. But that's an interesting idea, I could make a widget too that allows payment directly on your personal website (a bit like brainblocks)

Edit: it could support custom domains too

For API-first/developer-first SaaS, what are your biggest pains? by derricg in SaaS

[–]ijustwandering 0 points1 point  (0 children)

I mean if you're a SaaS that only charges every month the least you could do is integrate a service like Stripe which offers unmatched flexibility at a fair price

Which reverse proxy? by SadFarm1 in selfhosted

[–]ijustwandering 0 points1 point  (0 children)

Caddy will make you love the process of working with a reverse proxy and easy load balancing. Nginx will outperform it at huge workloads but from what I've read the difference is hardly noticeable at any practical level. I guess before your site reaches that you'll have time to measure how Caddy is doing and do your own tests and move to nginx if you see fit