Jump to content

Ominous

Member
  • Posts

    765
  • Joined

  • Last visited

Everything posted by Ominous

  1. Do you want to change the colour of just the outer ring, like in the image below? You are probably better off designing custom radio buttons: https://www.w3schools.com/howto/howto_css_custom_checkbox.asp
  2. In the warnings on the first image, it looks like the C/C++ extension doesn't know what compiler to use. Hold Ctrl + P and type "Select IntelliSense Configuration" it should bring up a menu of compilers, select one and it should be able to locate your header files. More info: https://code.visualstudio.com/docs/cpp/configure-intellisense#_how-to-configure-intellisense
  3. I'm not exactly sure what you're asking for here. Do you want the colour of the radio button to change depending on which radio button you have selected? Can you show us some of your code or attempts at solving the problem? Or can you give a bit of a visual of what you're trying to achieve? If you want the radio buttons to be different colours when they are selected, you would have to define the accent-color attribute for each radio button element and it should only show that colour when it is selected.
  4. I second Keychron. They have what you're looking for and are likely to be higher quality for the price than almost all of the gaming brands; Keychron is a usual suspect for recommendations. Here is their Amazon Germany store page. You'd probably want a Keychron K10 Pro. It fits your requirements and, as a bonus, is in ISO DE layout. The keyboard has RGB, but the keycaps don't have light pass-through; you can easily replace them with a third-party keycap set.
  5. My playtime has dropped off significantly over the past year or two, so most of this time is from 2014-2022.
  6. You can't. No browsers have RTSP support. There used to be a way to do it with NPAPI plugins, but they are not supported anymore. There are a few solutions but they all include transforming the RTSP stream into something usable by the browser, which will require a server.
  7. It is easily one of the worst parts to swap out, but it looks like you've tried everything else. Did you bring your PC to a hardware store and try these components on your machine? That should eliminate a problem with your house's power supply.
  8. Please don't apologise. You've given extensive information about your attempts to fix the problem, which haven't worked. This is the type of help post we like to see, hopefully speaking for the majority as I say that. At this point, your motherboard is the only thing you haven't tried swapping out. You've swapped CPU, Memory and GPU and still have the same problems. Can you RMA the motherboard or try a different board?
  9. Not having to answer to shareholders must be priceless to senior members of Valve. I hope they keep their ideology when Gabe inevitably leaves.
  10. Unstable OCs do not necessarily cause driver faults; they can be caused by faulty hardware. Try the basic fixes above and see if it happens again.
  11. True, but I would try software fixes before trying hardware solutions. @Mando772004, I would also try refreshing the TCP/IP stack using these commands in CMD then restart your computer. netsh winsock reset netsh int ip reset ipconfig /release ipconfig /renew ipconfig /flushdns
  12. A network driver encountered an error causing the BSOD. This shouldn't happen and may happen again. Check your motherboard manufacturer's website for LAN networking drivers.
  13. I'm parroting what most have said already. Valve fosters creativity and innovation. The company has a flat structure; developers have complete freedom to work on what they want and are expected to exercise that freedom. That freedom comes with the responsibility to do what they believe is suitable for the player. If releasing another Left 4 Dead game does not sound creatively enticing or innovative to them, they will not pursue it. Of course, that means some developers may have initiated work on the project; we have no way of knowing. Their New Employee Handbook is publicly available, and it is an interesting read.
  14. This login() call attempts to log the user in regardless of password length. $bruger = $_POST['uid']; // her definere vi vores bruger $logget_ind = login($_POST['uid'], $_POST['password']); Could you remove the second line?
  15. Do you understand why that doesn't make sense? This code Effectively means: IF user_is_logged_in THEN send_to_login_page ENDIF The code works, but it is not the correct behaviour. Something is wrong. Can you share your code again so I can see what's going on?
  16. Something is going wrong there. If isset($_SESSION["brugernavn"]) returns true, the user is logged in. That means you redirect to a login page when they are signed in, which is not your desired behaviour. Your session wasn't destroyed. Unless you have changed your code more than you have shown me? Open your program in a private browser and try to access the page. You should be able to access opret_opslang.php without logging in.
  17. I understand, but my code should prevent anyone from accessing the page if they are not signed in. It shouldn't have required you to change anything. If you try to access the opret_opslag.php page without being logged in, you should be able to access the page with your changes. I don't believe that is the desired behaviour.
  18. That doesn't seem right. isset() returns true if a variable is set. If $_SESSION['brugernavn'] is set, a user is logged in. Unless I've misunderstood something, I'd double-check the logic in your code.
  19. I assume it's "opret_opslag.php" that you want to restrict access to? You need to check if a user is logged in. Include this in the header: <?php session_start(); // Check if the user is logged in if (!isset($_SESSION['brugernavn'])) { // Redirect to login page header("Location: login-side.php"); exit(); } ?> Ideally, you should also perform the opposite of this action on login-side.php. Send logged-in users to opret_opslag.php instead of letting them view the login page.
  20. I've run your code on my machine with random placeholder images for "download" and "maps". I can see red lines appearing as I click and there is a number visible at the top left of the window. If they're not appearing for you can you please show what is appearing?
  21. This issue crops up occasionally, and there is always a different solution for everyone. I would check if the mouse behaves alright on a different machine to ensure it's not a hardware issue. There is already a thread on this board about this exact issue. I would jump through some of the links on the thread to see if any of them can help you:
  22. 16GB is the minimum recommendation nowadays. I'd go for the 32GB now, so you don't have to "worry" about it later.
  23. It's a name on a messaging platform. If it's that much of a problem for them, they'll ask you to change it. I don't think they'll care that much, seeing as countless people likely had similar names before the username change without consequence.
  24. Exactly this. Once you hit that price point, it just comes down to taste.
×