Jump to content

Ominous

Member
  • Posts

    762
  • Joined

  • Last visited

Awards

This user doesn't have any awards

5 Followers

Profile Information

  • Gender
    Male

Recent Profile Visitors

3,592 profile views
  1. 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.
  2. My playtime has dropped off significantly over the past year or two, so most of this time is from 2014-2022.
  3. 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.
  4. 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.
  5. 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?
  6. Not having to answer to shareholders must be priceless to senior members of Valve. I hope they keep their ideology when Gabe inevitably leaves.
  7. 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.
  8. 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
  9. 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.
  10. 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.
  11. 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?
  12. 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?
  13. 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.
  14. 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.
×