Posts Tagged ‘Fun’
Techdays 2010 @ Antwerp – Channel9
A few weeks ago I attended Techdays 2010. Now you all video’s ave been posted on Channel9.
Check them out on:
http://channel9.msdn.com/tags/TechDaysBelux/
Enjoy!
Scott Hanselman: blog improvements
Last week I on TechDays I attended the session of Scott Hanselman ‘32 Ways to Keep Your Blog from Sucking‘ and maybe some of you have noticed, but I already made some small changes:
- I placed a Creative Commons attribute below (License Your Blog)
- I started using my del.icio.us account again and placed a link on my blog (Use a Social Bookmarking Service)
- I tuned my CSS (Pay Attention to Formatting)
Things I have tried, but not decided yet if I am going to use it:
- Integrate OpenId with my comments
Things that I placed on my ToDo-list:
- Consider Using FeedBurner
- Improve my About page
- Find a FavIcon
So since comments are enabled, let me know what you think…
Microsoft Tag
Maybe you have seen strange images like the one below. When you have the ‘Microsoft Tag Reader‘ application, you can read the message/link/vCard/… behind this image. You can also create your own Tag’s at http://tag.microsoft.com.
Crap
Did you ever find any ‘personal’ comments from a Microsoft developer in AX code? I did. In AX2009 SP1 I found the following code block in the method displayComments() on the form HRMGoal:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | public void displayComments()//HRMGoalComment _gc) { Notes note; HRMGoalComment hrmGoalComment; boolean firstTime = true; ; //Crap while select hrmGoalComment where hrmGoalComment.GoalId == hrmGoal.GoalId { if(note) note += '\n\n'; //changeLine; note += queryValue(hrmGoalComment.CreatedDateTime); note += ' ' + hrmGoalComment.employeeName(); note += '\n' + hrmGoalComment.Comment; } displayComments.text(note); } |



