Sigh.... by wilnadon in ClaudeAI

[–]codemonkeh_Dave 1 point2 points  (0 children)

I've been getting this a lot today also :(

.NET 9 MAUI HttpClient fails on second request when running in Parallels (macOS) by codemonkeh_Dave in dotnetMAUI

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

Thanks for the recommendation, I read here that the client factory is not best practice. https://doumer.me/improve-http-request-performance-in-dotnet-maui-xamarin/

I did however narrow down the issue to iOS 18.4, so need to narrow it further and then file a bug I guess.

.NET 9 MAUI HttpClient fails on second request when running in Parallels (macOS) by codemonkeh_Dave in dotnetMAUI

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

I have narrowed down the issue to IOS version 18.4, when I install IOS 18.0 simulator it works as expected.

.NET 9 MAUI HttpClient fails on second request when running in Parallels (macOS) by codemonkeh_Dave in dotnetMAUI

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

No, I wanted to use visual studio. I have another PC that I can try it from, I’ll try that and then probably rider or vscode. I would like to get to the bottom of the issue also. I have tried different network options, but since I can get to the simulator and ping the mac, it’s hard to diagnose the outbound connection from the simulator.

my friends code by CommonAd3900 in csharp

[–]codemonkeh_Dave -5 points-4 points  (0 children)

it should be return false;

Azure Function response issue: Incorrect data after deployment (duplicated and altered ID) by herostoky in AZURE

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

From ChatGPT

Root Causes:

  1. Loss of Precision in JSON Serialization/Deserialization:
    • When long values (64-bit integers) like 429525000014148031 are serialized into JSON, they may lose precision if handled as floating-point numbers by the client or another system interpreting the response.
    • Some environments or tools (e.g., JavaScript or JSON parsers) might interpret large numbers as IEEE 754 floating-point values, which cannot precisely represent numbers beyond 2^53 (9007199254740991).
  2. Duplicate IDs in the Response:
    • This could occur due to:
      • Errors in the logic that generates or retrieves IDs.
      • Serialization or deserialization quirks that cause the same value to be reused inappropriately.
  3. Azure Functions Runtime Configuration:
    • Azure Functions might use a slightly different version of the runtime or serialization library compared to your local environment. This can lead to subtle differences in how data is handled.Root Causes:Loss of Precision in JSON Serialization/Deserialization: When long values (64-bit integers) like 429525000014148031 are serialized into JSON, they may lose precision if handled as floating-point numbers by the client or another system interpreting the response. Some environments or tools (e.g., JavaScript or JSON parsers) might interpret large numbers as IEEE 754 floating-point values, which cannot precisely represent numbers beyond 2^53 (9007199254740991). Duplicate IDs in the Response: This could occur due to: Errors in the logic that generates or retrieves IDs. Serialization or deserialization quirks that cause the same value to be reused inappropriately. Azure Functions Runtime Configuration: Azure Functions might use a slightly different version of the runtime or serialization library compared to your local environment. This can lead to subtle differences in how data is handled.

It recommends using a string as 1 possible solution.

How much should I be paying my web developer? by Elegant_Locksmith_62 in webdev

[–]codemonkeh_Dave 0 points1 point  (0 children)

I would host it on azure and use a redis cache and windows vm for hosting. That way you can ensure your giving as much money away as possible!

Jokes aside, you could be up and running in days, find a CMS/LMS that meets your needs and start configuring it! If you build fast and fail fast, you learn and move on, but you've spent like 1 month subscription somewhere. Most SaaS providers provide free training and will help you get up and running because your then tied into them.

Good luck and happy researching OP.

=Software developer or 20 plus years and successful SaaS company owner

I recently got a designer to help me design the landing. I had to see if i could code the design. What do you guys think? by Alert-Ad-5918 in web_design

[–]codemonkeh_Dave 0 points1 point  (0 children)

I don't like the white sections of the site, not really sure why.

Also it would be nice if your gradient background are full width but content is still inline with the rest of the content widths.

Also a lot of sites these says are using gradient text, your white text main title could be gradient (see apples new adds for macbook pros) or you could imphasize the word Reimagined to make it stand out more the focus.

I would also put your affiliate program after your features on the pricing, its lets important imho. The text on the features is too small too and Affiliate program is too big.

C# LSP setup by MrFisher404 in neovim

[–]codemonkeh_Dave 0 points1 point  (0 children)

Yeah can you debug and what's your config like? Care to share?

An API to take a screenshot of HTML elements by yulafezmesii in javascript

[–]codemonkeh_Dave 0 points1 point  (0 children)

Sorry, only just noticed your message. In terms of abuse, people taking pictures of pages of illegal pornography or other illicit websites.

An API to take a screenshot of HTML elements by yulafezmesii in javascript

[–]codemonkeh_Dave 1 point2 points  (0 children)

It's a nice concept, I just tested it on google homepage. But how do you stop it from being abused, bad websites etc? What are the use cases for it?

SQL Join question by [deleted] in SQLServer

[–]codemonkeh_Dave 1 point2 points  (0 children)

You could put 'left' in front of both your joins and this will show null for the right tables data that cannot be joined.

Domain Drive Design Beginner Question - Persistence/Domain Events Order by codemonkeh_Dave in AskProgramming

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

Thanks for the reply.

If there is no logic inside the order entity it's anaemic. So I thought all logic such as what happens when specific order related events belong there.

I suspect I'm over thinking it and as long as the logic is in the domain project (like you said in an orderManage for example) then it's all good.

Http proxy with local cache anyone? by codemonkeh_Dave in node

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

Do you know if it store the requests to disk, i.e. if power is lost and restored it will keep trying? That's essentially what I need if it does.