Kevin Trethewey

Software Developer, Technologist, Connoisseur of things that go 'bing'.

  • Home
  • Contact
  • Links
  • About

August 2004 - Posts

Acer C300 Tablet-Notebook

Monday, August 30, 2004 9:53 PM






After working on this for a couple of weeks now, there is no doubt whatsoever in my mind: This is the future of notebook computing.

Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | 11 comment(s)

GmailFS - Gmail Filesystem

Monday, August 30, 2004 7:00 PM

GmailFS provides a mountable Linux filesystem which uses your Gmail account as its storage medium. GmailFS is a Python application and uses the FUSE userland filesystem infrastructure to help provide the filesystem, and libgmail to communicate with Gmail.

GmailFS supports most file operations such as read, write, open, close, stat, symlink, link, unlink, truncate and rename. This means that you can use all your favourite unix command line tools to operate on files stored on Gmail (e.g. cp, ls, mv, rm, ln, grep etc. etc.).

[more here]

Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | 1 comment(s)

WinFS dropped from Longhorn timeframe

Saturday, August 28, 2004 9:21 AM

Microsoft cuts key Longhorn feature
By scaling back, company hopes to hit a 2006 release


This is bad news. I am not a happy camper.

Although this little gem in the article did bring a smile back to my face...

"The industry would like us to deliver Windows innovation on a regular basis," said Will Poole, the Microsoft senior vice president in charge of the company's PC Windows business. "From our perspective, 2006 is a good time to do that."

Ok, so maybe it was more a smirk than a smile...

Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | 5 comment(s)

Virtual Post-It #007

Wednesday, August 25, 2004 5:07 PM
In the Visual Studio task list, the 'Show Tasks-All' item in the context menu is a bit misleading: Comment tokens (like TODO or HACK) will only appear in the task list if you actually have the code window for that comment open in the IDE. This means that if you would like to see *all* of your comments, you will need to first open *all* of you code files.
Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | 3 comment(s)
Filed under: Virtual Post-It

Interest rates cut

Thursday, August 12, 2004 3:56 PM

The two-day meeting of the South African Reserve Bank's (SARB) Monetary Policy Committee (MPC) decided to lower the repo rate by 50 basis points to 7.5%.

Excellent!!!

[link]

Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | with no comments

2004 MSDN Magazines

Thursday, August 12, 2004 8:41 AM

In downloadable CHM format...

  • January
  • February
  • March
  • April
  • May
  • June
  • July
  • August

[Update: Full back issue archive here, current issue as rss feed here]

Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | 2 comment(s)

"Essential XML Quick Reference" book available for free download

Friday, August 06, 2004 2:15 PM
Essential XML Quick Reference is for anyone working with today's mainstream XML technologies. It was specifically designed to serve as a handy but thorough quick reference that answers the most common XML-related technical questions.It goes beyond the traditional pocket reference design by providing complete coverage of each topic along with plenty of meaningful examples. Each chapter provides a brief introduction, which is followed by the detailed reference information. This approach assumes the reader has a basic understanding of the given topic.The detailed outline (at the beginning), index (in the back), bleeding tabs (along the side), and the page headers/footers were designed to help readers quickly find answers to their questions.

Get it here
Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | 2 comment(s)

Virtual Post-It #006

Thursday, August 05, 2004 12:10 PM
SqlCommandBuilder.DeriveParameters(<command>) does not support transactions. If the command is within a transaction, you will get the following error: “SqlCommandBuilder Execute requires the command to have a transaction object when the connection assigned to the command is in a pending local transaction” - even when the command object does in fact have a transaction object.
Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | with no comments
Filed under: Virtual Post-It

Virtual Post-It #005

Wednesday, August 04, 2004 8:07 PM

I have noticed some people (esp those new to .NET) can get confused by the Command Window. They inadvertently arrive at the little greater than prompt '>' and can't seem to get the '?' syntax to work anymore. If this means you, then what you need to know is that the Command window actually has two modes; and Immediate Mode and a Command Mode. To switch modes you need to enter the following into the window:

[Immediate] --> [Command]:           >cmd

[Command] --> [Immediate]:           immed

The immediate mode is used for debugging, the command window is for...well, commands...

Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | 1 comment(s)
Filed under: Virtual Post-It

Virtual Post-It #004

Wednesday, August 04, 2004 7:03 PM

Be careful when installing (or more specifically uninstalling) VS.NET plugins. The creators of the plug-in installations sometimes do not create their packages correctly and they end up uninstalling critical components along with their own (early versions of ReSharper for instance). This could result in an unusable IDE, and a few hours time doing a repair installation.

Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | with no comments
Filed under: Virtual Post-It

Virtual Post-It #003

Wednesday, August 04, 2004 7:00 PM
The constructor and loading events of a user control are executed at design time when you open a form that has an instance of the control on it. Any code that accesses resources that are only available at runtime is a bad idea (i.e. database access routines).
Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | with no comments
Filed under: Virtual Post-It

Virtual Post-It #002

Wednesday, August 04, 2004 6:53 PM
Avoid showing messageboxes during load or activate events of your form or usercontrol. This could result in a weird Win32 handle error. (found this one as hard to repro as it was to debug, but be warned).
Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | with no comments
Filed under: Virtual Post-It

Virtual Post-It #001

Wednesday, August 04, 2004 6:46 PM
When you are extending a usercontrol in C# (and possibly other .NET languages, i didn't check), don't define any enums within the derived class. If you do, when you use the control on your forms, VS.NET will constantly report the enum as not being used. Rather define the enum outside of the class, in the same namespace.
Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
by Kevin Trethewey | 2 comment(s)
Filed under: Virtual Post-It
Go

Tags

  • .NET
  • Admin
  • ALT.NET
  • Community
  • Dotnet.org.za
  • eBooks
  • Fonts
  • Free Stuff
  • Fun Stuff
  • Google
  • Links
  • Microsoft
  • Personal OffTopic
  • Quotes
  • Red Five Labs
  • Robotics
  • Software Development
  • South Africa
  • SQL
  • Useful Advice
  • Utilities
  • Video
  • Virtual Post-It
  • Vista
  • VSTS Tips
  • WebDev
  • Wiki

Navigation

  • Home
  • Careers
  • Downloads
  • Support

Archives

  • May 2008 (1)
  • October 2007 (1)
  • July 2007 (1)
  • June 2007 (2)
  • May 2007 (1)
  • February 2007 (2)
  • January 2007 (2)
  • December 2006 (3)
  • November 2006 (9)
  • October 2006 (10)
  • September 2006 (3)
  • August 2006 (2)
  • July 2006 (6)
  • June 2006 (7)
  • May 2006 (9)
  • April 2006 (4)
  • March 2006 (14)
  • February 2006 (2)
  • January 2006 (5)
  • December 2005 (5)
  • November 2005 (7)
  • October 2005 (4)
  • September 2005 (10)
  • August 2005 (3)
  • July 2005 (5)
  • June 2005 (8)
  • May 2005 (11)
  • April 2005 (10)
  • March 2005 (7)
  • February 2005 (11)
  • January 2005 (12)
  • December 2004 (5)
  • November 2004 (2)
  • October 2004 (3)
  • September 2004 (10)
  • August 2004 (13)
  • July 2004 (6)
  • June 2004 (7)
  • May 2004 (24)
  • April 2004 (20)
  • March 2004 (21)
  • February 2004 (19)

Syndication

  • RSS
  • Atom
  • Comments RSS
Powered by Community Server (Commercial Edition), by Telligent Systems