About 51 results
Open links in new tab
  1. The 2025 Developer Survey is Now Live - Meta Stack Overflow

    May 29, 2025 · We have finally made it to the big day - Stack Overflow’s 15th annual Developer Survey is live! This community has been at the forefront of the latest and greatest technology trends since …

  2. class - C++ Read Access Violotion 0xCDCDCDCD - Stack Overflow

    Jul 27, 2020 · "Unhandled exception thrown: read access violation. this was 0xCDCDCDCD." Is anyone able to look at the code below and help point me toward the issue? I've gone through it many times …

  3. regex - Why "ab (cd|c)*d" matches "abcdcdd" completely but "ab …

    Aug 31, 2019 · There are a lot of very technical answers here, but the simple answer is that Regex matches | (or statements) with preference to the left-most pattern, it will never try the second pattern …

  4. php - Xampp localhost/dashboard - Stack Overflow

    Jan 6, 2018 · I downloaded the recent version of xampp and I installed it and everything but when i type "localhost" in the browser it redirects me to localhost/dashboard is there a way to type localhost and …

  5. Sorting results from SharePoint RestAPI - Stack Overflow

    Dec 23, 2018 · I'm trying to build some semi-dynamic staff directory pages from a Sharepoint List, using their REST API. I know enough Javascript to get me in trouble, so I have a feeling my solution is not …

  6. c++ - Read access violation 0xCDCDCDCD - Stack Overflow

    Jul 20, 2017 · The constant 0xCD is used by Microsoft C++ debug libraries to fill allocated heap blocks. So you can see the pattern 0xCDCDCDCD when you read data from a dynamic heap object which …

  7. read access violation. this was 0xCDCDCDCD - Stack Overflow

    Oct 4, 2018 · I'm confused as to what I'm doing wrong? While debugging, this shows 0xcdcdcdcd {theDouble=??? }so i know my variable isnt getting stored in my mutator. How would i go about fixing …

  8. C/ Access violation writing location 0xCDCDCD - Stack Overflow

    after a quick look, it seems that your vector is not a vector, but a single struct Cuvant, there's something I'm missing?

  9. Why does `(c*)|(cccd)` match `ccc`, not `cccd`? - Stack Overflow

    Your regex ((c*)|(cccd)) is saying match either one of two things: 0 or unlimited c's The literal sequence cccd Because regular expressions are greedy, it consumes the ccc string as the match, so that is …

  10. AzureWebJobsStorage Managed Identity not working - Stack Overflow

    Jan 28, 2025 · I am trying to get my azure function, containing a couple of blob and queue triggers to work with managed identity, instead of a connection string. But I am facing the error: …