how the heck I write nearly 7tb to my ssd in just 7 month? and the health is already 71%. what causes that much write in linux?
Why FirstOrDefaultAsync works even if I don't use async await?
Hello, I have an Enum in one database CREATE TYPE ERole AS ENUM ('SuperAdmin','Admin','Moderator','Doctor', 'Patient'); and another enum in another database with the same nam...
https://youtube.com/playlist?list=PLBlnK6fEyqRggZZgYpPMUxdY1CYkZtARR This is the playlist
can I declare array with the size of long long int? like this one? int arr[18446744073709551615];
Should I learn oop by c++? I know nothing about oop
I heard about zend certification. Can I find zend certification real question paper to check the question pattern?
is this a good way to take input string? without pointer, scanf gives warning
Hello, I have experience in backend development with nodeJs. For request validation, I can use Joi, validator js etc for very complex request validation. My question is that...
what the heck? why getline is getting newline as input? inside the loop it should be take input 1st then print hello but it prints hello first then takes input. and also it is...
Hello. I want to execute system commands by C# console app. In python, I can do os.system("npm install express") However, In C#, I tried to do process.start("npm install exp...
Why PATCH request is messed up in ASPDOTNET CORE Web Api? I have used django, nestjs. PATCH request is natural there. ASPDOTNET needs very pesky hacks to make a patch req. Do ...
Why I can't use a volume in docker compose for nginx? I want to provide the nginx config and ssl certificates from outsite but it seems impossible because nginx doesn't start,...
Anyway, can anyone suggest a good ORM for node JS and postgres? Don't suggest prisma, it doesn't have Sql join which is insane. Tried Drizzle too, but it is under heavy develo...
what should I do? these are not updating
Just installed pure arch. What should I do to solve this? The kernel is 5.15 but still ntfs not supporting
when watching videos, chrome writes on my ssd. how to point that to ram?
I want to include the ssl inside docker and also auto renew it. Is this possible?
suppose I have 3 commits - A, B, C. I want to revert commit B, I know there will be a conflict because commit B has three which is edited afterward by commit C to 3. My questi...
int age = 37; int *address = &age; printf("%d", *address); I know that the * operator used in the printf function in called dereference operator. Then what is the formal n...