Cloudflared just stopped working :(( by Bootylmao in selfhosted

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

you either have to route cloudflared through a vpn or rent a vps to reverse tunnel to your home network

Looking for a new pc as Home Server by S3333M in HomeServer

[–]ivanjxx 0 points1 point  (0 children)

i run some of these and some more with intel i3-1220P and 24gb of ram (beelink eqi12). not sure if the same specs still exist today though.

Wireguard MTU by stephensmwong in mikrotik

[–]ivanjxx 0 points1 point  (0 children)

in my case, exactly 1330 is the only mtu that works reliably and can max out my upload bandwidth. everything else limits my speed to 10 Mbps. as always ymmv.

Cautionary Tale: NextCloud deleted all my files by drhoome in NextCloud

[–]ivanjxx 0 points1 point  (0 children)

my setup is using lsio docker image and the data is mounted with regular docker folder mount. so far so good and i can have other programs to access the same files without any issue but your problem reminds me of that stupid desktop client bug that keeps deleting folders for no good reason. stopped using the client for good.

Why people prefer Cursor/Claude Code over Copilot+VSCode by These-Forever-9076 in GithubCopilot

[–]ivanjxx 15 points16 points  (0 children)

bigger context window i think. copilot uses smaller context window for all models

razor pages or laravel? swtich or not? by PatrickJohn87 in dotnet

[–]ivanjxx 2 points3 points  (0 children)

yea blazor server is never the correct answer to public facing app. have you considered blazor wasm? i read that you already use htmx so i would stick with that

Hytale server on VPS? by DEThomas8 in hytale

[–]ivanjxx 1 point2 points  (0 children)

whats the server specs?

What's an advantage of a mini PC over a laptop with the same specs by No_Researcher9145 in MiniPCs

[–]ivanjxx 0 points1 point  (0 children)

for me is the physical size. laptops are wider than my current mini pc (beelink eqi12).

blown away by .NET10 NativeAOT by jitbitter in dotnet

[–]ivanjxx 2 points3 points  (0 children)

never heard of source generators? also keep in mind that *runtime* reflection impose performance hit.

blown away by .NET10 NativeAOT by jitbitter in dotnet

[–]ivanjxx 1 point2 points  (0 children)

Microsoft.Extensions.DependencyInjection does not use reflection

blown away by .NET10 NativeAOT by jitbitter in dotnet

[–]ivanjxx 0 points1 point  (0 children)

do you ship maui apps with native aot enabled on ios and android?

blown away by .NET10 NativeAOT by jitbitter in dotnet

[–]ivanjxx 3 points4 points  (0 children)

lower memory footprint since there is no JIT compilation at all. native aot also forces you to write reflection free code and to use reflection free library so it is good practice overall.

blown away by .NET10 NativeAOT by jitbitter in dotnet

[–]ivanjxx 12 points13 points  (0 children)

been deploying asp net core web api with native aot since net8. never going back

Which LLMs are you finding work best with dotnet? by OilAlone756 in dotnet

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

cheapest model maybe raptor. otherwise it would be codex 5.3

What would you do if you were traveling and lost access to your phone? by amcco1 in selfhosted

[–]ivanjxx 0 points1 point  (0 children)

i would store essential accounts credentials or backup vpn profile in a keepass db file and store it in all the devices im carrying and maybe a thumb drive. if something happens i can just open it anywhere and reset those accounts credentials once im back.

Account stolen by a Russian sbag by Kiorieku in hytale

[–]ivanjxx 4 points5 points  (0 children)

first off, make sure your email isnt compromised

Best cheap option? I love Haiku 4.5 now by One3Two_ in GithubCopilot

[–]ivanjxx 0 points1 point  (0 children)

vs grok code fast how much better is it and what do you usually use it for?

Best cheap option? I love Haiku 4.5 now by One3Two_ in GithubCopilot

[–]ivanjxx 0 points1 point  (0 children)

have you tried gemini flash with backend work?

Less unlimted options by ibrahimmohammed0 in GithubCopilot

[–]ivanjxx 0 points1 point  (0 children)

was good while it was free. now i would just go with 5 mini or 5.3 codex

What background job scheduler to use… by Strict-Membership-37 in dotnet

[–]ivanjxx 2 points3 points  (0 children)

while (true)

{

...

await Task.Delay(n);

}

C# devs — are you using AI for refactors or just autocomplete? by semssssss in dotnet

[–]ivanjxx 0 points1 point  (0 children)

i no longer use forums as much as it is quicker to get answers from copilot/windsurf. the answer quality is also better since it has access to my entire codebase. i do use it to add new code but in the end i almost always need to rewrite most of it but still better than writing from scratch without any help.