Jump to content

Aleksa Djordjic

Member
  • Posts

    214
  • Joined

  • Last visited

Everything posted by Aleksa Djordjic

  1. I don't remember to be honest, I think in the end it worked with a BIOS from another card, a Expedition Edition one. Don't quote me on that though, I'll have to go dig through my old stuff later. I've sold the card by now.
  2. Ah, the official site, forgot about that - Well, glad to hear it should work; About the note (Since Xeon CPU is not desktop CPU model, some feature may not able to work on this combination. For detail, refer to support.asus.com), don't really care much about any Xeon specific features, I just need it to boot. Thanks.
  3. Well my homelab server seems to have just died and I need a new one... It was built out of consumer parts, though now I want to do it with old enterprise-ish gear. (At least the CPU) While I am in touch with newer hardware, I've got no clue about the mess of the compatibility in older Xeons. Looking here: https://www.cpu-upgrade.com/mb-ASUS/P8H61-M_LE_USB3.html The 1245 v2 is specified as compatible with any bios and any pcb revision, so they should work perfectly... right? Are there any other places where I'd be able to look, or does someone already know the answer? Thank you in advance!
  4. First of all might be in the wrong category soo... whops, suggest which one is correct please I have a server setup at the moment to which I've generated SSH keys a long time ago. I've been using putty to connect to it and that's completely fine for what i mostly need, I know how to setup keys inside of there, etc. Recently though, I needed to use the Visual Studio Code SSH plugin to connect to a server and be able to browse/edit its files via VSC. One problem with that is that it pulls SSH keys from Windows, I'm not sure how to tell it which key to specifically use or anything as such, so I need to add a key into Windows, and existing key I already got. Is this possible to do? Everything else I've found online suggest generating SSH keys trough Windows itself, but I don't need that, I already got this setup and I want to continue using this specific key. Thanks in advance!
  5. Steam just decided to randomly break, each time I'd start it, the "Verifying installation" dialog pops up and instantly closes, steam stays in Task Manager running not using any resources at all So far couldn't find much info online, What I've tried: - Full reinstall - Rebooting my PC - Just... closing from Task Manager and starting Steam - Clean uninstall with BCU - Compatibility options I'm clueless, got no more information than that and I can't think of any other thing that I can do to maybe fix it...
  6. I'm trying to think of a way to do it better, but can't without having a lot of repetitive code which is what I'm trying to avoid. Could you give me a better idea of how to do it? What I have now is like a "Service" that should be customizable, so the model is actually the "Service" and "Configuration" for it, the thing users edit. So the model is actually a "Service" which is displayed, and the "Configuration" which is edited by the user. Why I'm doing it with abstracts like this is because "Service" is just a base, has some basic properties like Name, etc. and then each type of "Service" would have additional attributes that are needed for it. Configuration also. I don't need to do any fancy processing, I just need to store the model in a MongoDB, which, well, is perfect for data like this. The thing is, I can make a customization View and Controller action for each of these services, but that would end up with a lot of basically duplicate code, with just the name changes. If in the future I need to change one thing, I'd need to do it in 2, 3, 5 maybe even 100 scripts which isn't... fun...
  7. Got any good resources where I can learn about making custom model binders, or even a prebuilt model binder for this that I'd just need to modify for my use case?
  8. Originally posted on SO: https://stackoverflow.com/questions/67352010/simple-way-to-bind-abstract-class-model-asp-net-core-5 In short, I have a model class which inside of it has some properties as well as some properties which types are abstract classes. The model looks something like this: public class ModelClass { public string SomeProp { get; set; } public AbstractOne FirstAbstract { get; set; } public AbstractTwo SecondAbstract { get; set; } } And the abstract classes: public abstract class AbstractOne { public virtual Type TwoType { get; set; } public string SomeProp { get; set; } public string SomeOtherProp { get; set; } } public abstract class AbstractTwo { // Its empty } So in the actual code, I have a class that inherits each one of those abstract classes, and in the controller I initially give the model as: return View(new ModelClass() { SomeProp = "Somevalue", AbstractOne = valueUpInTheCode AbstractTwo = (AbstractTwo)Activator.CreateInstance(valueUpInTheCode.TwoType) } Which works fine, the View gets the model, and I can use the html helpers to generate form fields. I have a form which has a `Html.HiddenFor` for SomeProp and AbstractOne, `DisplayFor` for AbstractOne and `EditorFor` AbstractTwo which is specific to the class that inherits the AbstractTwo, so the `EditorFor` line looks something like this: Which, on the UI seems fine at least, all of the default values or values passed when giving creating model for the view appear and seem to be there. The problem is when that form is submitted, I have a function that should handle it, for now its empty, but I'm still debugging so I just need some place to put a breakpoint: [HttpPost] [ValidateAntiForgeryToken] public IActionResult Submit(ModelClass model) { if (ModelState.IsValid == false) return View("Index", model); return View("Index", model); } The problem is, that `model` ends up having all of its properties set how they were entered, but the FirstAbstract and SecondAbstract don't seem to properly bind and end up both being null. --------------------- So far I've tried some stuff I found on here which seemed to be either outdated or not working for my use case, the closest I got to something working was with this blog on how to make a custom Model Binder: https://www.palmmedia.de/Blog/2018/5/13/aspnet-core-model-binding-of-abstract-classes It didn't end up working in the end, but gave me an idea of how something like this should be fixed... And I've got no clue how to do that, or where to start even.
  9. I've bought a used RX 570, specifically Asus RX 570 4g - https://rog.asus.com/us/graphics-cards/graphics-cards/rog-strix/rog-strix-rx570-4g-gaming-model/ The card initially does not work, but once ATI Flash is used its working fine in Windows. Turned on GPU-Z to check the bios, etc. and it turns out it has a BIOS of a Expedition RX 570 O4G flashed Clicking lookup, I get sent to this page: https://www.techpowerup.com/gpu-specs/asus-expedition-rx-570-oc.b4507 Which clearly isn't the card that I have installed at the moment. I went to find a BIOS for it, with no verified BIOSes, I went to the unverified ones to find a suitable one. I've tried multiple ones, can't remember which ones exactly but I think its these: https://www.techpowerup.com/vgabios/195505/195505 https://www.techpowerup.com/vgabios/202194/202194 https://www.techpowerup.com/vgabios/199919/199919 They all seem to match the GPU information, although none of them seem to want to flash, I get a "SubsystemIDs missmatch" error. I'm not really experienced in flashing GPUs, this is my 2nd time doing it so any help or explanation of the error is appreciated. Does anyone have this GPU and can export the original BIOS, or maybe has a link to download the original? Or is there any way to bypass this error without too much tinkering around... Thanks in advance!
  10. Well turns out one of the sticks is faulty. Tested the first 16gb stick, crash after 5 minutes Tested the other one... well running it for the past 35min playing games and nothing, looks like it works fine Will have to send it back and get a new kit... Thanks for helping out!
  11. Yeah, I know, I just want to be able to use the PC until the postal service arrives to pick them up. And ummm... Well great... Enough info, won't do the memtest86. Will try sticks one by one to see which one is faulty... hopefuly its not both
  12. Its Windows 10, just how those UIs look. RAM might be the hardest thing for me to replace right now... this one was barely available and it will take days or even weeks for the new one... Its 32gb, 2 sticks so I hope its only one stick and I can keep using the other one for now, 16gb is enough for games, but won't be able to do some other stuff.
  13. How can I be 100% sure its the memory though. Fyi: Still doing the test, almost 50% done
  14. Trying the built in Windows Memory Diagnosis right now, will take a while Edit: Well this popped up
  15. Hi, so in short. Built a new PC, installed everything I needed and got a BSOD... Specifically I was getting (and still am) KERNEL_SECURITY_CHECK_FAILURE and SYSTEM_SERVICE_EXCEPTION Was debugging a bit, and from what I could found, that would be because of faulty drivers. So after trying bunch of stuff, I gave up and reinstalled windows. This time letting it install all the drivers it thinks it needs and not touching anything other than installing Discord and launching Steam to play games. Same thing, crash... same errors... Reinstalled windows again, this time updated AMD drivers to the latest... crash... same errors... I don't know how to debug this, where to go off from what I currently have or how to read these minidump files https://drive.google.com/file/d/1CLyW5PKNVU6_N4n3IkEjoD-CV6rrRWVM/view?usp=sharing Oh and this doesn't want to finish for some reason... What could be the problem, and how can I debug it to fix this? How to find which driver is faulty, if its even a driver and what are my possible solutions to fix this? I'm completely clueless... These BSODs seem to happen at random each couple of minutes, haven't been able to find a link as to when the happen but just now, twice in a row I was streaming a game in Discord and when a friend joined, 5 seconds later it would come up with KERNEL_SECURITY_CHECK_FAILURE If needed, I didn't build a new PC from the ground up, just replaced some old parts for new ones. Got a 5900x, x570 Tomahawk and 32GB of Trident Z 3200mhz, CL16 Rest is the same as my old PC which was working fine. Haven't done a memory diagnosis yet, will do that later if it helps.
  16. Just checked, after shipping its basically the same price as buying it from here... 40 EUR for shipping to Serbia
  17. I'm from Serbia specifically, so local is my best option due to ridiculous shipping and import prices... Many places don't even want to ship to us for many reasons including that and because our border guards like to steal and no-one cares about that so they just do it.
  18. Yeah, our prices are all over the place... When the Radeon 5000 were released, their prices were almost ~1000eur and more for the cheaper models... But then for some other stuff its the cheapest that you can find sooo, eh, can't complain much. Will take a look, thanks.
  19. Yeah, its bad, but the best I got so far. Thanks for the recommendation, got my eyes on a microphone at the moment. Will see what I can get in a couple of months, when things hopefully finally settle with suppliers... From this thread (you were in it), someone recommended a Marantz MPM1000. Thanks for your reply! Edit: You mean this? Its a bit more expensive than the Scarlett, is it better thought?
  20. Hi, I want to upgrade my current audio setup but due to shortages there are barely any good microphones available, and if they are, they are much more expensive than what they should be but currently the Scarlett Solo is the cheapest it has been. So I wanted to purchase it, although right now I have a budget microphone set which is good enough. Its this one: https://www.yenkee.eu/studio-microphone-set/ymc-1030 Nothing special, but the microphone has an XLR connector. In the box it comes with a XLR to 3.5mm jack cable, and the microphone itself doesn't need Phantom Power at all, just the 1.5v, 3mA from the jack itself. I know they aren't a good match, will replace the microphone when they come back in stock but for the time being: Would they even work together? If I bought a normal XLR to XLR cable, plugged them together, would they work or is there any reason why it wouldn't be compatible with the Scarlett?
  21. Holy... damn this post is old, looks so cringy now that I take a look at it again, should have posted the solution... Yeah, in short I found a okay-ish solution. Its called spacedesk - https://spacedesk.net/ You can make basically anything your display, laptop, tablet, phone. Only downside is that if you want good video quality, you either need a good PC to compress the image enough or you need a good internet connection (Gigabit) between machines to send uncompressed video signal. Other than that, used it quite a bit before getting another monitor, worked great the whole time.
  22. Switch on my main network is Cudy GS108, I think its not managed, just a basic switch. Reason for two networks is because of our family structure and on my main network (2nd one) you can not port forward and its shared IP between our whooooole city. So I use the 1st one to host my stuff, and 2nd one for speed. Its much cheaper and better for us this way. Edit: That slower ISP is also more reliable, so I'm not dropping them, they are more expensive but still
  23. Managed switch? I have a dedicated gigabit network switch on both networks, although I don't know what a "managed" one is...
  24. 1st is D/U 20/4 2nd is D/U 60/8 So nothing extreme. I wanted to try out pfsense for a while now, although doesn't that mean that I would need to have at least 3 ethernet ports on my server (that will be used as a router) so that it can work in this way? (2 for incoming internet connections and 1 for out, or maybe just 2, the 3rd one isn't actually needed?) As I said here: I'd rather try to keep this free or as cheap as possible, and where I'm from stuff either isn't for sale anywhere or is really expensive
×