Lake O'Hara, Yoho National Park, B.C., Canada.
Saturday, September 29, 2007
Friday, September 28, 2007
Wednesday, September 26, 2007
Tuesday, September 25, 2007
Monday, September 24, 2007
Sunday, September 23, 2007
Saturday, September 22, 2007
Friday, September 21, 2007
Wednesday, September 19, 2007
Comment Switches
What are comment switches and how to use them? To comment and uncomment certain blocks of code repeatedly, I use what I call a "comment switch", allowing me to switch a block of code on or off with a single character. It looks like this:
Switch between two code blocks with a single character:
I recently found a forum posting where a similar comment switch was proposed:
//* printf("I am active!\n"); // */
/*
printf("I am commented out!\n");
// */
Switch between two code blocks with a single character:
//* printf ("I am active!\n"); /*/ printf ("I am commented out!\n"); // */
/* printf("Now I am commented out!\n"); /*/ printf("And I am active!\n"); // */Addendum:
I recently found a forum posting where a similar comment switch was proposed:
/* comment /* */ //* uncomment /* */
Wednesday, September 12, 2007
Net Worth
You can find out how much your blog is worth.
My blog is worth $0.00. Wow. That's how much I paid for it.
Speaking of net worth... BYC is talking about installing finger docks. That sounded great, until I found out how they planned to pay for them. They plan to charge every member $5000. Welcome to the club. One would think the avenues of fund raisers, sponsorships, donations and volunteerism ought to be explored. I feel that maintenance and improvements to club property should be done within a budget laid out in BYC's operating plan, but I haven't yet put my two cents in to the Commodore or manager.
Oh, wait... according to Technorati, I haven't got two cents.
My blog is worth $0.00.
How much is your blog worth?
My blog is worth $0.00. Wow. That's how much I paid for it.
Speaking of net worth... BYC is talking about installing finger docks. That sounded great, until I found out how they planned to pay for them. They plan to charge every member $5000. Welcome to the club. One would think the avenues of fund raisers, sponsorships, donations and volunteerism ought to be explored. I feel that maintenance and improvements to club property should be done within a budget laid out in BYC's operating plan, but I haven't yet put my two cents in to the Commodore or manager.
Oh, wait... according to Technorati, I haven't got two cents.
Subscribe to:
Posts (Atom)
Productivity and Note-taking
I told a friend of mine that I wasn't really happy with the amount of time that gets taken up by Slack and "communication and sched...
-
Update : Here are slides for this talk at OttawaJS: " Node.JS Module Patterns Using Simple Examples ". Update 2 : More Node.JS M...
-
tldr; https://github.com/73rhodes/sideflow This extension provides goto, gotoIf and while loop functionality in Selenium IDE. Selenium ...
-
Other articles in this series: REST API Best Practices: A REST Cheat Sheet REST API Best Practices: HTTP and CRUD REST API Best Practice...