Search results

  1. ShakyJake

    R.I.P. Stan Lee

    Good God, 95? I had no idea he was that old. Can't complain, though. /salute
  2. ShakyJake

    Post Your Pet

    Jeezus. I've seen Maine Coones that size but that obviously isn't that breed.
  3. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    Look into this: Using EditorConfig settings in Visual Studio - Visual Studio You might be able to customize behavior with the .editorconfig file.
  4. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    There is no 2018 -- only 2017. What exactly do you mean by 'autoformatting'?
  5. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    I know what you mean...Visual Studio has become a bloated pig. I recently switched to JetBrain's Rider which is an excellent alternative to Visual Studio and definitely feels snappier (and, ironically, is written in Java I believe). I've heard of people using VS Code for .NET Core projects but...
  6. ShakyJake

    Car ?'s

    This is on the bumper so it's plastic. It definitely looks very similar to the green pic, but why would this suddenly appear nearly two years after purchasing the vehicle? It absolutely was not there before. I'm VERY particular about my vehicles and would notice something like that. Since...
  7. ShakyJake

    House of Cards

    I didn't watching the previous season nor will I watch this one. BUT, out of curiosity, what happened to Frank?
  8. ShakyJake

    The Conners

    Ratings for this is no where near cancellation range. TvByTheNumbers has it ranked as "Likely Renewal": Cancel Bear vs. ABC, week 5: ‘Splitting Up Together’s’ second season is off to a rocky start But they write:
  9. ShakyJake

    Retard Dumping Ground

    Same. ICE CREAM DE-RAIL! This is my favorite...
  10. ShakyJake

    The Conners

    Right, that's still pretty damn good and will get a certain renewal. So how did they explain Rosanne's disappearance from the show? I haven't been following it at all.
  11. ShakyJake

    American Horror Story: Apocalypse

    People hate on Emma Roberts for some reason. I think she's a decent actress and, yeah, I have a thing for skinny blondes so...
  12. ShakyJake

    RIFT

    Same. The invasions were a hell of a lot of fun when there was a significant player population, though. But after that started dwindling away the game just became a grind. I don't think I made it past level 40.
  13. ShakyJake

    American Horror Story: Apocalypse

    What a great episode. Also funny that they didn't notice the Murder House characters looking identical to their own. EDIT: Also, what's the dealio? I thought there was a nuclear apocalypse yet Murder House location was bright and sunny with an operational real-estate agency.
  14. ShakyJake

    The Haunting of Hill House

    Why did someone give this 1 star?!
  15. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    Also keep in mind that this is an introductory course to data structures and algorithms. We aren't expected to get super fancy with C++ (not suggesting 'const' is, but any very specific C++ operations or 'tricks' would be way over the head for most people in this course). Most students in the...
  16. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    I totally agree. I have a lot of C# experience so I totally understand the concepts. But the other students in the class are new to programming so they are having to wrestle with the nuances of the C++ language which has nothing to do with data structures themselves. The professor keeps...
  17. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    You can't do that because you don't know when the user will access what was popped. It may not be immediately. My point is that the professor is wrong and from discussing it with him I could tell he himself doesn't have a firm grasp of what's going on. Anyway, thanks for your input...
  18. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    Sure, I could do that but that would mean that the Stack would forever store anything pushed into it. That's crazy and I seriously doubt real-world stacks work this way.
  19. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    But it's not because I am shifting the elements in the array upon pop(). The value of p + 1 is being moved to p + 0 (and so on depending upon number of elements in the array). If I returned a reference to p + 0 then the user of the Stack would actually being getting p + 1's data.
  20. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    I don't understand the question. The stack, internally, is using an array. If I return array[0] with pop() then shift the elements in the array to account for index 0's content removal (i.e. index 1's value is moved to 0), what am I returning a reference to?
  21. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    Sorry for the delayed response, was away yesterday and didn't feel like typing a response on a 8" Amazon tablet. So here's the deal: this Stack implementation is templated. So you don't know what what type it's being initialized as. In my example the user of the Stack could be instantiating...
  22. ShakyJake

    Playstation 5

    What the hell. It feels like the PS4 was released not too long ago. Is a PS5 really necessary this soon?
  23. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    So let's back up a step. From a simple main() method say you do this: int* myArr = new int[10]; int myInt = 100; myArr[0] = myInt; Is there now a reference to 'myInt' at myArr[0]?
  24. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    A copy of the element is created locally within the pop() method. The pointer to the element will be deleted. You cannot return a reference to a locally scoped variable.
  25. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    You pop because that's a Stack operation. One implementation of the Stack is a Linked-List. So the element in question is attached to a Node structure. In the pop() method I'm doing something like T element = currentNode->e; Node temp = currentNode // adjust pointers from previous and next...
  26. ShakyJake

    IT/Software career thread: Invert binary trees for dollars.

    Any C++ experts here? I'm currently taking a course on Data Structures and Algorithms in C++. The professor has given us a header file for us to implement a Stack. However, I think the header file is slightly incorrect: template <typename E> class Stack { public: Stack()...
  27. ShakyJake

    The Haunting of Hill House

    Metacritic reviews are looking pretty good: The Haunting of Hill House
  28. ShakyJake

    Marvel's Daredevil

    Oh well! No plans to watch this shit now.
  29. ShakyJake

    Lucifer

    Lindsey Gort, man. AKA Candy.
  30. ShakyJake

    Doctor Who

    For those interested, here's a YouTube video with all the theme song variations. The new one is definitely like the 63-67 version.
  31. ShakyJake

    Doctor Who

    I skipped the Capaldi run but decided to tune in for this premiere. Not bad, honestly. Definitely a different feel -- wasn't goofy like a lot of the Moffat shit. I think the actress did a great job channeling The Doctor. Also, didn't detect any overt SJW or girl-power nonsense. Interesting...
  32. ShakyJake

    American Horror Story: Apocalypse

    Honestly, this was probably one of the best episodes of the series. Really enjoyed it and kept my attention. By the way, I don't recall how Madison and Queenie died back in Coven. Does anyone else recall? Also, backing up a couple episodes, when Madison said to Billie Lourd's character, "I...
  33. ShakyJake

    Halloween 2018

    Is anyone aware of any companies that will craft costumes by request? What I'm looking for is a high-quality replica of a particular super hero costume. Sure, there exists the usual crap you find at the various costume stores but I want something that is actually fitted for me and is...
  34. ShakyJake

    Computer Issues

    That's funny. I used to operate a computer repair/hobby store and a customer brought in a system he built with exactly the same 'problem'. Motherboard was fine once properly seated with stand-offs.
  35. ShakyJake

    Desktop Computers

    Yeah I'm not wanting to do anything crazy. I lucked out finding a 4K monitor at a thrift shop for 16 bucks. I just assumed there existed a sub $300 video card that could run WoW at 4K. Guess not!
  36. ShakyJake

    Desktop Computers

    Well that sucks. Scaling the game down to a lower resolution makes nameplates look rather crappy.
  37. ShakyJake

    Desktop Computers

    What's the recommendation for a video card that can run WoW @ 4K at reasonably high settings? I just upgraded to an i7-8700k. My existing card is a GTX 950 which runs WoW beautifully at 1080p, but at 4K it's kind of struggling at mid-range settings. I do NOT care about other games. WoW is...
  38. ShakyJake

    The Gifted

    She's hot for sure but my preference is for those triplets.
  39. ShakyJake

    Manifest

    Her face annoys me for some reason. I thought the pilot was decent but my bet is it'll be cancelled. It'll probably get a full season order, but won't make it to a 2nd.
  40. ShakyJake

    Linux OS stuff Thread

    So whatever happened with SteamOS and those machines?