Support Me
What I'm Doing...
- Visionary. I like it. 18 hrs ago
- Just ate lunch and listened to a great presentation on MIS from University of Alabama and how it helped his career by @kdonald 1 day ago
- Headed to bed, got a huge week ahead of me. Phase deliverable due, Strategy Case Presentation, and Psychology Test before I can head to NYC! 2 days ago
- More updates...
Recent Comments
- Zach McKenzie on Tuscaloosa News – Jon Howell
Code Commenting Tip
Jul0
Every developer has wanted to temporarily comment out code, and most languages support the code commenting function of
/* codeToComment(); */I have found it very helpful for developing to comment using
/*codeToComment();/**/Especially for large blocks of code, where you can take out the first occurrence of /*, and not cause any compile issues with your code.
This, even though very small, saves me a lot of time when I am trying to debug especially.