The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1,860 other subscribers

Archive for the ‘Hardware’ Category

Welcome to Classic Shell: Classic Start Menu and Classic Explorer functions for Windows 7

Posted by jpluimers on 2009/12/31

One of the things in usability is to enable old skoop people that have been using.

Windows 7 went even further than Windows Vista into changing start menu functionality and explorer functionality that had been there since Windows 95.
So things that have been working for over a decade, suddenly stopped to work, or worse: work differently.

Would you imagine what happened when someone reordered the pedals in a car (from left to right are clutch, brake and throttle) or reassign their functionality?

So some people gathered and wrote Classic Shell.

Now someone please restrore the “backspace” keyboard behaviour back to “go one level up in the folder tree” as it had been for more than a decade…

–jeroen

Posted in Keyboards and Keyboard Shortcuts, Power User, Usability, User Experience (ux) | 4 Comments »

Fiddler replaying requests to the ASP.NET Development Server: XP works but Vista not, or “when localhost is not 127.0.0.1 in Fiddler 2”

Posted by jpluimers on 2009/12/09

Today, I bumped into something utterly strange: requests replayed through Fiddler 2 to a locally running ASP.NET Development Server on Vista using localhost URLs did not give a connection.

I use ASP.NET from both C# and Delphi Prism. Most of my development work is on Windows XP (see notes below) but I test on many platforms.
Moving one of the projects from XP to Vista, and testing with Fiddler, I found that when using Fiddler 2:

This form of URL fails on Vista, but works on XP: http://localhost:49703
This form of URL works both on Vista, and XPhttp://127.0.0.1:49703

So on Vista – contrary to XP – localhost requests from Fiddler were in fact being sent to the external network adapter on Vista, and the 127.0.0.1 requests to the internal network adapter.
Since the ASP.NET Development Server is bound only to the internal network adapter, external requests don’t work (boy, I wish they did, it would make some of my debugging so much easier!).

Read the rest of this entry »

Posted in .NET, ASP.NET, C#, Delphi, Development, Fiddler, Keyboards and Keyboard Shortcuts, Prism, Software Development, Web Development | 2 Comments »