Search results

  1. Kharzette

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

    It would be handy for methods for sure. Just to be able to glance at it and know it doesn't modify the object is handy.
  2. Kharzette

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

    I always found them easier than reference counting stuff. I still screw up occasionally in C# with passing references around. The early "smart" pointers people wrote in C++ were horrid. Reference counting for allocations but with odd quirks that lead to leaks.
  3. Kharzette

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

    I usually write mine as C with a cpp extension, but I do like const. C has const though right? Can't remember. The second place I worked was really into doing stuff like const someStruct * const. You could pass it a pointer to someStruct in memory and know that the function wasn't going to...
  4. Kharzette

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

    No, the value 100 will be put into the first four bytes of the 40 allocated to myArr. Arrrrrr matey.
  5. Kharzette

    Keyboards & Mice

    I love my Mionix castor, but it has started to just shut off lately. In the worst possible moments, with me strafing around trying to dodge stuff when I can't turn. I started shopping around, this being the second castor to die, and was dismayed by all the odd shapes and million buttons. I...
  6. Kharzette

    New World

    So is it full of long stuns and knockdowns or can you actually control your character in a pvp fight?
  7. Kharzette

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

    The last page of this thread has been horrifying. I'm glad all I'm any good at is games coding.
  8. Kharzette

    Formula 1 and MotoGP - Racing

    Moto thailand was awesome, all 3 races.
  9. Kharzette

    The Paranormal, UFO's, and Mysteries of the Unknown

    That's a heart shaped get well soon balloon that blew away
  10. Kharzette

    Lineage 2 Official Classic Server opens Oct 3 2018

    I think the reason why this game was so often copied was that the source was stolen.
  11. Kharzette

    FOH Shower Thoughts

    BTW I went looking and there's lots of quantum consciousness stuff out there on youtube and such. Some of it is kind of fringey, but fascinating stuff on microtubish structures in cells and anesthetics and such.
  12. Kharzette

    Formula 1 and MotoGP - Racing

    Best part of the race: Dropbox - blah.mp4
  13. Kharzette

    Formula 1 and MotoGP - Racing

    Looked like lewis wanted to swap trophies. Ver was entertaining at least.
  14. Kharzette

    FOH Shower Thoughts

    Maybe memories are stored as waves and recall means the wave is observed. Memories decay due to Quantum decoherence - Wikipedia maybe.
  15. Kharzette

    Overwatch

    Did you guys watch Britain vs France? Sounded like a football match in there
  16. Kharzette

    The Bard's Tale 4

    arfi arfi arfi mibl ymca zzgo sugd?
  17. Kharzette

    The Paranormal, UFO's, and Mysteries of the Unknown

    Nah that's where the hidden leaf village was
  18. Kharzette

    The Paranormal, UFO's, and Mysteries of the Unknown

    Looks like solar panels covered in snow and ice maybe?
  19. Kharzette

    Formula 1 and MotoGP - Racing

    Wonder what the crowd was chanting there for a bit? I couldn't understand.
  20. Kharzette

    Overwatch

  21. Kharzette

    SCUM

    Bike is making zombie noises at people :D
  22. Kharzette

    Cyberpunk 2077

  23. Kharzette

    SCUM

    So I guess it's a bad idea to be making a survival game now? :D
  24. Kharzette

    Twitch.tv

    There are 10 sprays, but I think some of those you get for completing the diabeetus challenge
  25. Kharzette

    Formula 1 and MotoGP - Racing

    Silverstone rained out I guess?
  26. Kharzette

    Overwatch

    Well it went pretty smoothly. The worst that happened was a double brig comp. Hilarious to watch though, I'd watch a full league of that.
  27. Kharzette

    Overwatch

    I kinda hope when the allstar mystery heroes thing comes down that blizz gets to see how horribly unbalanced it can be when certain heroes arrive and you can't switch to counter. Maybe it will shame them into making a cancer free mystery mode or something.
  28. Kharzette

    Everquest Mysteries

    No I was on Mith Marr with the afterlife folk
  29. Kharzette

    Everquest Mysteries

    Little Wendy <3
  30. Kharzette

    Indie Games

    Yea it might be a bad game but that trailer is very feelsy. Platformers usually make me run the other way, but it sounds almost like an easy walking sim kind of thing.
  31. Kharzette

    Indie Games

    This may be the most perfect trailer I've ever seen
  32. Kharzette

    Sutekh's C++ +More Thread

    I dunno! I guess I did that from habit. I think maybe back in the elder days if you left it blank it did something funny like assumed an int argument or something?
  33. Kharzette

    Sutekh's C++ +More Thread

    void main(void) { int a =42; int b =7; a =b ^ a; b =a ^ b; a =b ^ a; } Since this is in screenshots:
  34. Kharzette

    Overwatch

    Or a ski game starring Mei up in the mountains! Or a romance visual novel about a Mercy / Pharah / Soldier love triangle! Or a Lucio ddr type game! Or Vivi's Adventure from the arcade!
  35. Kharzette

    Overwatch

    It took me 4 hours to get my 9 wins last night and no aimbots down in the dregs where I play.
  36. Kharzette

    new Nvidia GeForce RTX 2080 cards released

    I need to look at the API to see how valid this stuff will be. Ray casts typically need some kind of tree or heirarchy or however you speel that to speed things up. Might be some goofiness or latency or heavy bus usage if that stuff needs rebuilding alot. But I guess threads? Might be...