... all I'm offering is the truth. Nothing more. RSS 2.0
# Wednesday, March 05, 2008

While working today I was listening\watching the MIX 08 web cast. Let me very briefly highlight what is hot!

Technorati tags:

Wednesday, March 05, 2008 3:14:06 PM (Eastern Standard Time, UTC-05:00)  #    Comments [0] - Trackback
Microsoft
# Tuesday, March 04, 2008

I was trapped in a meeting recently I was forced to endure a barrage of buzz words and statements that really grate my nerves. Here is an extended list of my least favorite:

  • giving 110%
  • Overcoming silo's
  • integration
  • 80 for the 20
  • bandwidth

This list could go on and on...

Tuesday, March 04, 2008 10:44:33 PM (Eastern Standard Time, UTC-05:00)  #    Comments [2] - Trackback
Other things

Have you ever had a hankering to take a college course but did not have the money or the time to sit down in a classroom. Maybe a small yearning for Writing and Humanistic Studies or Linguistics and Philosophy, or peradventure some Brain and Cognitive Sciences. Well then MIT Open Courseware maybe the site for you.

MIT Open Courseware provides free lecture materials that includes exams, videos, and lecture notes for the renaissance persons among us, who are simply in love with learning.

To be clear this is quite different to distance learning you will not be granted a degree or certificate, neither does it allow you access to MIT facility, but if there is a field of study that you always wanted to investigate, then I would check this site out and see if there are some free downloads for you to enjoy.

I decided that I may try Relativistic Quantum Field Theory I ;)

Technorati tags: ,
Tuesday, March 04, 2008 9:53:23 AM (Eastern Standard Time, UTC-05:00)  #    Comments [0] - Trackback
Education
# Saturday, March 01, 2008

After Dare mention that SkyDrive increased its capacity to 5GB I raced over to check it out. Certainly this increase is much more helpful but I would really like to see them make SkyDrive accessible from MSN Live Messenger as well, makes sense to me anyway ;)

Technorati tags:

Saturday, March 01, 2008 12:20:04 PM (Eastern Standard Time, UTC-05:00)  #    Comments [0] - Trackback
Tools
# Friday, February 29, 2008

I was doing some coding and created a derived class today and realized that the compiler was giving a me a silent warning message. Consider the following case where my base class (FirstFloor) has a virtual method which, by definition when a class is derived from it, is permitted to override it. As below I had inadvertently forgot to include the override method in the derived class but things seemed to work as required (against my better understanding).

    public class FirstFloor
    {
        public virtual void Foo()
        {
            Console.WriteLine("FirstFloor.Foo");
        }
    }

    public class SecondFloor : FirstFloor
    {
        public void Foo() //missing the override keyword
        {
            Console.WriteLine("SecondFloor.Foo");
        }
    }

Below is the silent warning that occurred, and unfortunately the compiler is really forgiving and hides the inherited member for you:
image

This is really picking at the details, but in this case you should always use the keyword override even if the compiler is soft on this kind of crime.

    public class SecondFloor : FirstFloor
    {
        public override Foo()
        {
            Console.WriteLine("SecondFloor.Foo");
        }
    }   

One other thing I am doing is starting to setup my compiler to treat warnings as errors, now that is going to catch a whole bunch of other things going on in your code, but that is another blog entry.
image 

Technorati tags: , , ,

 

Friday, February 29, 2008 10:32:41 PM (Eastern Standard Time, UTC-05:00)  #    Comments [0] - Trackback
C#
# Thursday, February 28, 2008

I have just had my first glimpse of the WorldWide Telescope demo and I must say I am impressed! The WorldWide Telescope is a new product of Microsoft Research and it has apparently taken images from the worlds best telescopes and linked them in a seamless homogenous view of the universe.

I always love looking up into the sky when I am away from the intrusive lights of the big city, the number of viewable stars seems to grow exponentially. Now is my chance to see everything without having to leave the comforts of my own home. The demo kind of reminded me how impressive I thought Google Earth was when it was released, this figures to be so much more.

I am eager for the release in early spring, seeing the viewable universe up close will be a delight! Consider downloading a high def version of the demo you will not regret it!

Technorati tags: ,
Thursday, February 28, 2008 10:34:45 AM (Eastern Standard Time, UTC-05:00)  #    Comments [0] - Trackback
Microsoft | Other things
Blogroll
Statistics
Total Posts: 330
This Year: 18
This Month: 2
This Week: 0
Comments: 30
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2010
Mark Downie
Sign In
All Content © 2010, Mark Downie
DasBlog theme 'Business' created by Christoph De Baene (delarou)