Browsing some of my old bookmarks I went from here and then on to here. Turns out today is Bill Gates birthday.
Monthly Archives: October 2002
Installed Pie Menus in Mozilla
After using mouse gestures for a while and not finding them as well integrated as the implementation found in Opera I decided to try a different approach. The new pie menu add-in I installed seems to be somewhat more intuitive than the mouse gestures, time will tell if it is something I will persevere with or discard like mozilla mouse gestures. The problem I had with the mouse gestures was the interference with text selection, in the end it just frustrated me too much.
Get an ASP.net WebServer on the cheap
So you want to develop and test ASP.net web applications on a Windows XP Home machine. What do you do?
- Get WebMatrix [if you don't have it already]
- Use WebMatrix for a bit until you despair at the crap HTML it turns out.
- Long for the utility of your favourite Text Editor [TextPad]
- Despair at having to boot up WebMatrix first just to set the WebMatrix WebServer running from the desired directory and port at the start of every session.
- Figure out how to improve the situation
Yes I have figured it out [pretty basic really].
- Find the WebServer.exe in the WebMatrix program folder
- Create a shortcut to the exe
- Add parameters for the directory and port number from which you wish to run the server
- Copy the Shortcut to the “Startup” folder
- Publish it on your personal website
- "C:\Program Files\Microsoft ASP.NET Web Matrix\v0.5.464\WebServer.exe" /port:8080 /path:"C:\WebRoot" /vpath="/"
C#, Aggie and compilation
I managed to compile my first non trivial (read “hello World”) C# application today. The lucky application was the opensource news reader Aggie. So how did I do it? Quite simply if truth be told.
Steps to compiling Aggie (or just download thefunctioning application)
- Get the source
- Put it somewhere
- Delete or move AggieCmd.cs (The command line source version)
- Run the compiler, C:\>csc /out:aggie.exe /target:winexe *.cs
As a first taste in compilation not too bad (after a few false starts caused by not having compiled C sharp before).
Why not just download the thing? Because I would have missed out on all the hacking I’m going to do with it. Successfully compiling from source was just the first step on my road to C# mastery. One of the main false starts was that I wasn’t sure which files needed to be compiled, including the AggieCmd.cs file caused namespace conflicts when running the compilation (I imagine because it is a substitute for Aggie.cs) anyway a quick look at using the micrososft disassembly tool, IL DASM, showed me what was in both of the files and I quickly realised how the different source files fitted together.
Thinking about Meta
I’ve been doing some thinking recently about the importance of meta data in my upcoming content management system and how best to implement my own meta data scheme. Given that I am interested in providing a RSS feeds something that is interoperable with that would be a good start. One particular focus has been to gain a broader understanding of the dublin core meta data schemes and their applications, An article I came across a while ago now can be found at ArsTechnica, it provides an interesting insight into different layers of metadata.