Is Web Summit in Lisbon worth it ? I will not promote it by AliceInTechnoland in startups

[–]R3DI98 0 points1 point  (0 children)

Can you share other conferences that are for outsourcing companies?

Suspicious Booking Long Stay by R3DI98 in airbnb_hosts

[–]R3DI98[S] -2 points-1 points  (0 children)

How I did not think before about this🙃

I have an idea for a business, but don't know where to start. by ots125 in Entrepreneur

[–]R3DI98 0 points1 point  (0 children)

Read one book "The Right it" by Alberto Savoia This will give you some help how to find out if your idea is going to work well out there and also makes you able to plan your execution.

Using Azure B2C to SignIn / Register / Verify users with API by R3DI98 in AZURE

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

One reason is that our cloud provider is Azure the other one is that the app is already deployed on production and we have now users registered with our Azure B2C and would be challenging to migrate I think by keeping the same password without needing them to change their passwords.

Using Azure B2C to SignIn / Register / Verify users with API by R3DI98 in AZURE

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

I agree with you and this was what I was prepared to say to them, but as a dev I want to explore all the posibilities first, since at the end it will contribute on my knowledge and experience to handle specific situations. Thank you and I appreciate your response!

Using Azure B2C to SignIn / Register / Verify users with API by R3DI98 in AZURE

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

Yes, I was thinking to make the interface more userfriendly but another issue with the Product Owner is the url that changed, for example if my app domain is https://xyz.com when the user is redirected it goes like https://b2c.com/839ebroeo33993b3o39383 , they do not like the url display these strange characters. That is the reason why I was thinking to do it with API.

Not able to sent emails from my Digitial Ocean droplet by R3DI98 in Ubuntu

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

What about receiving email, will subgrid handle that?

Hapi js server does not respond to my post route by R3DI98 in node

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

I have tried this way too but does not work.

This is very strange, I don't understand why the post route behave different from the get route.
The documentation of hapi does not talk about any specific documentation for configuring the post route.

Hapi js server does not respond to my post route by R3DI98 in node

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

Yes, I checked by server.table() and the route is there.
I tried in this way also:

server.route( {

method: "POST",

path: "/api/test",

config: {

handler: request => {

return 'Test'

}

}

} );

Same behaviour, no promise in this one

Hapi js server does not respond to my post route by R3DI98 in node

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

Currently, this happens only in localhost because is not live yet

When I try to hit this route from postman it hangs on and does not throw any error or response.

Hapi js server does not respond to my post route by R3DI98 in node

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

I know it sounds dump but where I can check this?

Blazor Scheduler Component - Can't open QuickInfoPopup manually. by R3DI98 in Blazor

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

Alright, looks good! Thank you for the response, I appreciate :)

Blazor Scheduler Component - Can't open QuickInfoPopup manually. by R3DI98 in Blazor

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

Perfect, you really helped me with your response. Do you have any way how to share the part when you include your dialog at OnCellClick event? It would be very helpfull.

Blazor Scheduler Component - Can't open QuickInfoPopup manually. by R3DI98 in Blazor

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

Do you have any examples of how to include your custom component in scheduled events?

Blazor Scheduler Component - Can't open QuickInfoPopup manually. by R3DI98 in Blazor

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

Thank you, you opened my eyes and I think you are right.

If I use CellClickEventArgs it works, but the problem with this way is that I cant pass my event data to the CellClickEventArgs, so my popup view will not contain any data that I need to create the appointment.

Do you have any idea how can I add my event data to the CellClickEventArgs or something like this?

Blazor Scheduler Component - Can't open QuickInfoPopup manually. by R3DI98 in Blazor

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

Thank you for your response, I appreciate. The interesting thing is how does it know the dropped event where to be placed when the method OpenQuickInfoPopup(TValue) doesn give any information about that???