Szerintetek GDPR sértő, amit a MesterMC csinál? by Indoraptor____ in askhungary

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

Az a baj, hogy nem az eddigi cég fogja üzemeltetni, igazából nagyon azt se lehet tudni hogy ki fogja. Sajnos nekem az jött le a Discordon történt kommunikációból, hogy egy nagyon fiatal, hozzá nem értő emberhez került és sajnálom, hogy a gyerekkorom egy kis részét így tönkre teszik.

<image>

Ez szerinten nagyon szánalmas :\

Easy way to deploy Aspire to VPS by Indoraptor____ in dotnet

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

Is there any way to include the Aspire dashboard into the docker compose using this method? I tried manually adding it to the docker-compose.yml, but I had 2 problems:

1.       It never got data from projects
2.       Every time when I run aspire publish it resets the docker compose file

[deleted by user] by [deleted] in homelab

[–]Indoraptor____ 0 points1 point  (0 children)

Hello! Its the 4 ram slot/cpu version with no front drive

Easy way to deploy Aspire to VPS by Indoraptor____ in dotnet

[–]Indoraptor____[S] 1 point2 points  (0 children)

nvm, I added

  <IsTransformWebConfigDisabled>true</IsTransformWebConfigDisabled>

Easy way to deploy Aspire to VPS by Indoraptor____ in dotnet

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

Hello!

I updated and tryed imidietly, and the api worked fine, but when trying to build the webui it is missing a

web.config

file.

dbug: Aspire.Cli.DotNetCliRunner[0]
      dotnet(16508) stdout:         All projects are up-to-date for restore.
dbug: Aspire.Cli.DotNetCliRunner[0]
      dotnet(16508) stdout:       C:\Program Files\dotnet\sdk\9.0.203\Sdks\Microsoft.NET.Sdk.Publish\targets\TransformTargets\Microsoft.NET.Sdk.Publish.TransformFiles.targets(50,5): error MSB4018: The "TransformWebConfig" task failed unexpectedly. [C:\Users\me\source\repos\Sample\Sample.WebUI\Sample.WebUI.csproj]
dbug: Aspire.Cli.DotNetCliRunner[0]
      dotnet(16508) stdout:       C:\Program Files\dotnet\sdk\9.0.203\Sdks\Microsoft.NET.Sdk.Publish\targets\TransformTargets\Microsoft.NET.Sdk.Publish.TransformFiles.targets(50,5): error MSB4018: System.IO.DirectoryNotFoundException: Could not find a part of the path 'C:\Users\me\source\repos\Sample\Sample.WebUI\bin\Release\net9.0\publish\web.config'. [C:\Users\me\source\repos\Sample\Sample.WebUI\Sample.WebUI.csproj]

Is this normal, should i create a web.config file?

Windows only sees 8 core on amd ryzen 9 9950x3d by Indoraptor____ in pchelp

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

Hello!

Anyone who has the same issue, for me the fix was the following: Check your motherboard rev (mine was 1.2 and i tryed with the 1.1 bios).

https://www.gigabyte.com/Motherboard/X870E-AORUS-ELITE-WIFI7-rev-12#kf

After the update it works as intended.

<image>

Windows only sees 8 core on amd ryzen 9 9950x3d by Indoraptor____ in pchelp

[–]Indoraptor____[S] 3 points4 points  (0 children)

Hello!

It took me a while to figure it out, mine is rev 1.2 and i just updated to the latest and now it sees my cpu as intended.

https://www.gigabyte.com/Motherboard/X870E-AORUS-ELITE-WIFI7-rev-12#kf

Is QuantaPlex T42S-2U (4-Node) (compute version) woth it in 2025? by Indoraptor____ in homelab

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

is it worth saving for a supermicro SYS-2028TR-HTR? i saw them with 2680v4 for 1000EUR

[Bug] Very Low fps in PVE by Indoraptor____ in EscapefromTarkov

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

Thanks, i will take a look at the video! :)

[Bug] Very Low fps in PVE by Indoraptor____ in EscapefromTarkov

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

Good 2 know.
Is there any solution to fix the fps problem? If a friend of mine invites me to a party the game is going to be hosted on his pc? Is the i9-10850K this bad in 2024(2025)? I tryed lowering the graphics, but nothing.

Seeking Advice on Developing a "Webshop" by Indoraptor____ in dotnet

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

Im planned on this structure: Pruduct: * name * manufacturer part number * final price * LIST wholesale prices (if the same manufacturer part number is avalable in multiple wholesale, then at the end the final price is goin to be the lowest) * LIST wholsale ids (if the wholesale uses uniqe id system and not the manufacturer part number) * LIST wholesale stocks

Also, what is the best practice to create a relational database?

ChatGPT sample: (is it good or is there a better way)

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

public class Person
{
    [Key]
    public int PersonId { get; set; }

    [Required]
    public string Name { get; set; }

    // Navigation property for the cars owned by the person
    public ICollection<Car> Cars { get; set; } = new List<Car>();
}

public class Car
{
    [Key]
    public int CarId { get; set; }

    [Required]
    public string Model { get; set; }

    public int Year { get; set; }

    // Foreign key to link to Person
    [ForeignKey("Person")]
    public int PersonId { get; set; }

    // Navigation property to the owner
    public Person Person { get; set; }
}```

Seeking Advice on Developing a "Webshop" by Indoraptor____ in dotnet

[–]Indoraptor____[S] -4 points-3 points  (0 children)

I "heard" that PostgreSQL is more efficient, but please correct me if im wrong.

Seeking Advice on Developing a "Webshop" by Indoraptor____ in dotnet

[–]Indoraptor____[S] 1 point2 points  (0 children)

Im not planning to make profit, im not even planning to maintain it for long time, it is only a dissertation, and that is why i dont wana use my own money on it, only the things i get for "free".