Archive for January, 2008

Blog site update

January 29th, 2008 | Category: News

Hi,

I just updated my blog site from b2evolution to WordPress. So enjoy the new skin!

If you find any broken link (or if you have a broken bookmark), do not hesitate to report it by adding a comment to this post.

Known issues:

Thanks.

Pascal.

No comments

.NET Framework source code is now available

January 17th, 2008 | Category: News, Web Link

Microsoft as made the .NET framework source code available. The interesting part is that you can configure Visual Studio 2008 to support stepping into the .NET Framework’s code automatically while debugging.

Instructions on how to setup Visual Studio 2008 are available from Shawn Burk’s blog here:
Configuring Visual Studio to Debug .NET Framework Source Code

If you do not have Visual Studio 2008 or you just want to download the code for viewing… well, you will need to wait:

from Shawn’s blog post:

10) Can I just download all of the code at once?
Not currently, but we are currently working on enabling this functionality in the future.

14) Can I point a web browser at the symbols URL and download the symbols directly?
No, you’ll get an HTTP 400 (Bad Request) response.

No comments

ASP.NET MVC Framework – Links

January 09th, 2008 | Category: How-To, Web Link

Here is a series of posts from ScottGu’s blog about the new ASP.NET MVC Framework.  That seems pretty interesting…

No comments

Visual Studio 2008 and .NET Framework 3.5 Training Kit

January 08th, 2008 | Category: Web Link

Here is a link to Microsoft Visual Studio 2008 training kit that contains a bunch of information, examples and labs (it’s about 120MB download).  Good to discover and try the new features of VS and the new framework.

Note: Check minimum system requirements first (only for labs).

Link: Visual Studio 2008 and .NET Framework 3.5 Training Kit

No comments

Migrating a Subversion repository from Windows to Linux

January 07th, 2008 | Category: How-To

Migrating subversion from a Windows installation to a Linux installation is not just copying the repository structure and files. But it is still quite easy. Here are the steps:

  1. Extract the repository data from Windows repository and store it into an OS independant format using the dump command:
    svnadmin dump [repo location] > [dump file]
    ex: svnadmin dump /svn/MyProject > c:\temp\MyProject.dmp
  2. Upload the exported file on the Linux system.
  3. Create a Subversion repository:
    svnadmin create [repo location]
  4. Adjust security settings on the new repository directory (if necessary).
  5. Restore the dump file into the new repository:
    svnadmin load [repo location] < [dump file]

Here is an example of loading a dumped file into a Subversion installation for accessing through Apache2 and Ubuntu Server 7.04:

  1. create repository:
    sudo svnadmin create /var/svn/MyProject
  2. change owner:
    sudo chown -R www-data:www-data /var/svn/MyProject
  3. change security:
    sudo chmod -R g+ws /var/svn/MyProject
  4. Load dump file:
    sudo svnadmin load /var/svn/MyProject < ~/MyProject.dmp
No comments

Mastering PowerShell in your Lunch Break

January 07th, 2008 | Category: Technical Doc., Web Link