Support Me
What I'm Doing...
- @gglaeser Definitely time for fjording! in reply to gglaeser 18 hrs ago
- Visionary. I like it. 1 day ago
- Just ate lunch and listened to a great presentation on MIS from University of Alabama and how it helped his career by @kdonald 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.