This is probably one of the best (also because it is short) explaining articles about what Project Management really entails.
Update to IPv6
To anticipate the IP address shortage in 2011, the ICANN has started updating the root servers with IPv6 records. One small step for ICANN… one giant leap for the internet.
[From: BBC News]
[From: Builder.au]
Playing music at work
Sometimes something as simple as playing music at work isn’t as simple as it sounds.
There are a few ways to do this, but each of them have their own problems:
- MP3 player
- Playing from a computer
- Internet radio
- Easylistener
What will no longer be sci-fi
A nice little article about five Sci-Fi Scenarios that will come true and when.
Predictions:
- Biometric Security (expected by 2010)
- Space Tourism (expected by 2013)
- Holodeck (expected by 2016)
- Self-Aware computers (expected by 2019)
- Domestic Robots (expected by 2020)
Hardware shopping
It’s that time of year again… I went hardware shopping.
Actually, I went twice. First a PC upgrade a month ago, which I didn’t post about (and not going to except for the list, due to a lack of time and because I forgot to take photos before installing everything) and secondly a week ago.
Here are the lists:
List 1
- Antec Sonata III 500W case (it’s a good power supply and I could use the extra case;) )
- ASUS P5K-E mainboard
- ASUS 8600GT Silent 256MB
- Intel Core 2 Quad 2.4Ghz
- 4 GB DDR2 RAM
- Western Digital 3.5″ 320GB SATAII hard disk
List 2
- Creative Soundblaster X-Fi Extreme Gamer
- Icy Box 2.5″ portable hard disk case
- Seagate 2.5″ 120GB 7200rpm SATA hard disk
- Logitech Wave keyboard
- Linksys NAS200 Network Attached Storage
- Western Digital 3.5″ 500GB SATAII hard disk
- Belkin KVM (monitor + 2 USB)
- Samsung Dual Layer DVD-RW SATA
Custom identities (classes that implement System.Security.Principal.IIdentity) SerializationException in Cassini
A few days ago, I spend almost a day figuring out what went wrong with an application I was writing. Apparently a SerializationExeption can occur when executing ASP.NET code in the ASP.NET Development Server (Cassini).
Exception:
Type is not resolved for member ‘Classname,Assembly, Version=1.1.0.31, Culture=neutral, PublicKeyToken=null’.
Exception details:
System.Runtime.Serialization.SerializationException: Type is not resolved for member …
When executing the same website in IIS, everything runs fine.
From 95 to Vista
A short, nice and bit of a sarcastic (which makes it nice) overview of the changes from Windows 95 up to Windows Vista.
[From: Shipping Seven]
Windows Vienna by 2010
OK everyone knows Windows Vista isn’t as popular as Microsoft had hoped. Let’s see if the new Windows Vienna, to be ready by 2010, is any better…
[From: TG Daily]
Namespace inheritence difference between VB.NET and C#
Recently, I’ve been involved in a .NET project that uses both VB.NET and C# projects in the same Visual Studio solution. Personally, I prefer C#, but VB.NET isn’t that hard to switch to, except that you can run into an unlogical namespace inconvenience.
VB.NET and C# handle the namespace inheritence in their class files and project files differently :S
VB.NET project
- Specify the Root namespace of your project as “Test.VB”
- Add the following class to that project:
Namespace Test.VB.TestNamespace
Public Class Class1
'Some code
End Class
End Namespace
C# project
- Specify the Root namespace of your project as “Test.CS”
- Add the following class to your project:
namespace Test.CS.TestNamespace
{
public class Class1
{
//Some code
}
}
Addressing those classes from your main project in the solution:
Test.CS.TestNamespace.Class1 class1;
Test.VB.Test.VB.TestNamespace.Class1 class2;
As you can see… The VB.NET class inherits the project’s namespace, the C# class doesn’t.
Disk Access Denied in Windows Vista
I recently updated my system’s hardware. Because it has quite a bit of extra power, I decided to give Windows Vista another try. (On the hardware and findings of Vista maybe later a bit more).
After installing most of the previous software (some needed updates to be compatible with Vista) I noticed that one of my USB drives wasn’t accessible anymore. My account has administrator privileges so that should be fine, but I still got an “Access Denied” error. When I disabled the new
Now that could be the solution, to leave it just like that, but instead I wanted the UAC system enabled. After enabling it again, the error occurred again so I knew it had to do something with user rights.
On my previous system, a Windows XP, I selected only the Administrators group and Backup Operators (for my backup script) to have access. But under Vista that isn’t enough anymore.
Read the rest of "Disk Access Denied in Windows Vista" »