Tuesday, April 13, 2004

Luck is not on my side :(
The project got postponed. However I am still on the list of people that will be contacted when the project kicks off.

In the meanwhile my contract here has been prolonged and AFAIK there are at least 3 or 4 people here that have work for me when the current job is finished.

Life isn't too bad after all :)

Tuesday, April 06, 2004

I got contacted by Euricom again. Aparently they need people for the biggest Microsoft Development project in Belgium. I hope I get selected for this opportunity. They still think I don't have enough experience in that type of function but maybe they are willing to take a chance on me.

Cross your fingers and pray for me guys ;-)

Friday, March 19, 2004

A nice posting about "free software" in an ideal world. The writer makes some pretty good point imho.
See for yourself.

"The only thing that's free is the sun!"

Talking about free software, MyIE2 is a great interface that installs on top of Internet Explorer. It has a built-in popup-blocker and many cool features like tabbed interface, aliases, mouse gestures, ...). Check it out and donate some money to the poor guy ;)

Wednesday, March 17, 2004

File upload with .NET, you know you want to :)

File Upload

Another great link for the real freaks out there. Various chats about development topics with the real experts, check it out!

MSDN Chats

Ever thought of using MSDE for your Web Application?

MSDE in Web Applications

Offline ability for your SmartClient applications

Really Smart

Thursday, March 11, 2004

Are stored procedures right for you? I personally always use stored procedures in my programs, but to give you a more credible point of view check the following link ;)

Find Out if Stored Procedures Are Right For You

Cache invalidation in the next ASP.NET Whidbey. When using cache one of the obvious invalidations is a change in the database. Not querying the database on every request can make a huge performance difference. Until now you have to make custom procedures that weren't always as simple as they should be. In Whidbey they thought of it, SQL Cache Invalidation! In combination with SQL Server Yukon this is an extremely easy-to-use yet powerful feature.

ASP.NET Whidbey Caching improvements

I don't know about you guys but I can hardly wait for the .NET Whidbey and SQL Server Yukon release! That probably makes me a nerd though :-D

Wednesday, March 10, 2004

With the upcoming SP2 for Windows XP this article may be of use:
Windows XP SP2 - Enable remote debugging

For the MSDE users out there: Web Data Administrator (requires .NET Framework)
Again, long time ago :(

The people @ Euricom were looking for someone with more management experience :-( Too bad but it's what I suspected in the first place. I received a lot of default replies from other companies. "No job openings at the moment" :x

I found a new job or at least for a while. A week before my contract ended I got contacted by HP, a company I already worked for some time ago. They needed someone for SQL development. An "Asset Management" database has to be created and with the help of feeders from the client, HP Lease and the Altiris (SMS-like application) database we should be able to get a great deal of information about the complete lifecycle of the computers. It's supposed to be a 2 month contract but from the looks of it I don't think it can be done in 2 months. The information flow is slow at the moment and the client is known to change his decisions quite regularly.


Let's rock :)

Tuesday, January 27, 2004

Something you all oughta know but read it anyway ;)
Logging on as SA. It Never Fails

Thursday, January 15, 2004

Hi,

I'm sorry it's been so quiet on my weblog :x I'm looking for a new job and it really takes up a lot of time.

Applied for a job with a very interesting company on Tuesday: Euricom.
They specialize in .NET development in Belgium and are claimed to be one of the most advanced companies on .NET here. Fingers crossed!

Read a nice article on Data Access: Tips for successful Data Access. I've also been reading about Indigo, the new hype in the crazy .NET world. Understanding Indigo

Tuesday, December 09, 2003

Ever wanted an easy to adapt menu in .NET. Here's a great article by Scott Mitchell.

ASP.NET Home: Building an ASP.NET Menu Server Control (ASP.NET Technical Articles)

Tuesday, October 21, 2003

Working on a little project for people to send in their CV's through the website. I'm using XML as the database. In my quest for information I came across this article.

307029 - HOW TO: Transfer XML Data to Microsoft Excel 2002 by Using Visual C# .NET

Wednesday, October 15, 2003

New to Object Oriented Programming?
Check this out:
DotNetJunkies: The Quick and Dirty .NET Guide to C#/VB Object-Oriented Programming
Ever wondered what is in your SQL Server's cache and how many times a cached item is used?
Check out the master..syscacheobjects table.

If you want to work with the database name just join the table with the sysdatabases.dbid field.

eg.

SELECT master..sysdatabases.name, master..syscacheobjects.objtype,
master..syscacheobjects.cacheobjtype, master..syscacheobjects.usecounts,
master..syscacheobjects.[sql] FROM master..syscacheobjects
INNER JOIN master..sysdatabases ON master..syscacheobjects.dbid = master..sysdatabases.dbid
WHERE sysdatabases.name = 'yourdbname'
GROUP BY master..syscacheobjects.objtype, master..sysdatabases.name, master..syscacheobjects.cacheobjtype, master..syscacheobjects.status, master..syscacheobjects.[sql], master..syscacheobjects.usecounts
ORDER BY master..syscacheobjects.usecounts DESC
You've probably all heard about WinFS, the next generation file system from Microsoft. Well, here's a very interesting story:
Microsoft unpacks details of Longhorn storage | CNET News.com


"Think of WinFS as pulling together relational database technology, XML database technology, and file streaming that a file system has," he said. "It's a (storage) format that is agnostic, that is independent of the application."

Tuesday, October 14, 2003

I found a nice blog post about .NET 2.0. It looks very promising, lets hope they live up to their promises.

Edgar Sanchez's .NET Blog