AJAX Portfolio

I have added a new AJAX portfolio section to my web site at: http://www.williamsportwebdeveloper.com/ajax.html. This makes public most of the JSON work I’ve been doing for the past month or so. You’ll find search forms for Flickr photos, eBay auctions, Technocrati blogs, and ISBN numbers by book title. I’ll probably be adding a lot more pages so keep an eye out for new additions. Technically it is not AJAX if XML is not involved but the term has come to have a broader meaning than the original acronym.

I’ve almost finished reading the book The ASP.NET 2.0 Anthology: 101 Essential Tips, Tricks & Hacks by Scott Allen, Jeff Atwood, Wyatt Barnett, Jon Galloway, Phil Haack. It features a lot more useful information than other books I’ve read on ASP.NET 2.0 so it will take me awhile to digest the information and document it in my notes. My ASP.NET 2.0 topics now outnumber my ASP.NET 1.1 topics if you count Web Parts, AJAX Control Toolkit, and GridView topics.

Posted in General | Leave a comment

Lycoming County Web Site Switches To DotNetNuke

Tonight I am trying to write a blog post using Windows Live Writer which can be used with WordPress. I see that the Lycoming County web site has switched to DotNetNuke. That means they’ll be using ASP.NET instead of ASP which is what that awful Pennsylvania-Dynamic Site Framework Project (PA-DSF) is using. According to their web site, "This change is a cost-containment measure and will eliminate the County’s previous dependency on two third-party vendors." LOL

DotNetNuke is very popular with ASP.NET developers but I have not done much with it. Today I added many more pages to my Notes. I documented the print media style sheet to control printer output using CSS. I created a new topic on some CSS that will crash Internet Explorer. The most important addition was my notes on .NET Reflector which can be used to decompile .NET assemblies. This should be useful when I need to recover some code from a compiled ASP.NET site. I also documented some recent Windows application work using function keys and embedded resources in C#.

I installed a code snippet plugin for Windows Live Writer so I’m going to test it below:

   1: private void Form1_KeyDown(object sender, KeyEventArgs e)
   2: {
   3:     if (e.KeyCode == Keys.F5)
   4:     {
   5:         MessageBox.Show("You pressed the F5 function key!");
   6:     }
   7: }

Posted in General | Leave a comment

The Entrepreneurial Developer

I’ve been reading many programmer blogs looking for hot tips and tricks. Several blog posts that seem to get the most reaction concern the different types of programmers. Some programmers are pragmatic and focus on solving business problems. They don’t keep up their skills and don’t do any programming over the weekend or in the evenings. Other programmers fancy themselves as software engineers and get deep into math. They like to learn new languages and spend all their free time programming or studying new technology. However, although the “software engineer” may be brilliant, he often refuses to focus on the business problem and may waste considerable time creating custom compilers or doing “bit twiddling“.

I don’t consider myself to fall into either camp. I consider myself to be an entrepreneurial developer. I find most career advice to be worthless because it is insufficiently cynical and I am very cynical about business. Don’t expect me to buy into the meritocracy and I don’t want to hear about teamwork or “thinking outside the box“. I think Dilbert is an accurate portrayal of the workplace. The best career advice I’ve read is to remember that you are not part of the organization. Your employer feels no loyalty to you. This is especially true for programmers who can be easily outsourced. You should always look out for number one and consider yourself an independent contractor supplying a service to your employer. This means you need to tend to your career as a business. You need to keep yourself marketable.

For example, if an opportunity comes up at work to take some training you should grab it. Don’t adopt the bad attitude that training is a chore or just more work. Training is something that you acquire and benefits your career. When you leave your company or are let go the training goes with you and makes you more marketable. Most companies don’t provide any training because they are not interested in investing in their employees. They know that there is no loyalty in this business relationship.

So it is important for a programmer to invest in his own training and build up his expertise. The lazy institutional programmer just does not get it. He feels too secure in his position and does not bother to learn new technology. On the other hand, I don’t think the “software engineer” is much better. He is too into the technical aspects of coding. I see a lot of this on the ASP.NET community weblogs where developers write about advanced language features. They don’t seem to take any interest in the online business opportunities for web applications.

I think there are several other advantages to the entrepreneurial mindset for a programmer or web developer. For one thing it keeps you from becoming lazy because you need to evaluate new technology for its business potential. It also keeps you from becoming bored because you are emotionally invested in running your career like a business. I would even recommend that an institution encourage the entrepreneurial mindset in its IT staff because it keeps them sharp. Unfortunately, some technology companies actively discourage creativity because they want ownership of anything the programmer develops. This can sometimes be taken to a ridiculous degree where every bit of code becomes company property that must be signed away. I can see how you may want to protect an entire application but most code is completely unoriginal.

Social broadcasting strikes me as being the hottest Internet Entrepreneur opportunity right now. All the participants are highly excited by the technology. They are pushing hard to take advantage of the opportunities and get very upset when anything threatens their plans (such as the encroachment of traditional media). I’ve seen an explosion of new web sites in this space. Unfortunately is is very challenging to do anything on your own because the technical requirements are heavy but I have some things cooking.

Posted in Business, General | Leave a comment

AJAX And JSON Are Making JavaScript Very Popular

I’ve been doing a lot of work with JavaScript lately. JavaScript has become very popular due to the AJAX craze. Every Web 2.0 site has to do something impressive with AJAX so web developers are becoming more creative with JavaScript. There are now many JavaScript libraries available with increasingly sophisticated features. I’ve even seen JavaScript libraries for logging errors and doing unit tests.

However I’ve only become interested in JavaScript because JSON makes it easy for me to create small web applications that consume data from popular web sites. I can now whip one up in about two hours. If a web site only provides data in XML I have to create a Yahoo! Pipe to convert it to JSON so I have created 5 pipes so far.

I’m building a collection of client side web applications in my Notes help file. This collection currently includes:

  1. Stickam Friend Online Presence – using a Yahoo! Pipe to get the data as JSON
  2. LiveVideo Featured Videos – also uses a Yahoo! Pipe
  3. Amazon Wish List – notice the number of JavaScript books I’ve added
  4. Pownce Public Note List
  5. Technorati Blog Search – this one allows you to enter a search term and the number of posts
  6. Flickr Search – enter a search term to get photos tagged with that text
  7. Yahoo! Live – shows ten broadcasts with thumbnail images
  8. eBay Item Search – search for items on eBay
  9. Yahoo! Video Search – different than Yahoo! Live. This allows you to search for online videos
  10. ISBN Book Search – search for ISBN numbers based on a book title

Eventually I will create a portfolio section on my web site for these small web applications. With each one I try to improve my JavaScript code. I am using the jQuery JavaScript Library to write less code. I especially like its DOM manipulation features. Recently I started to use jQuery’s $.getJSON method. I was popping up an alert for every object property to test for the JSON data scheme but now I combine them into one alert which is less annoying. I think I’ll make some further improvements by logging the object properties and using the jQuery method of adding event handlers.

Fortunately all the social networking sites like to provide developer APIs, encouraging web developers to create applications using their public data. You can keep on top of the APIs available at: http://www.programmableweb.com/. I have not created any Facebook applications yet but it is on my list. My current priority is RSS feeds which can be converted to JSON and the seesmic API. Seesmic is a beta site for conducting video conversations.

Posted in AJAX, Programming, Web | 1 Comment

My Blog Has Been Restored

Unfortunately, a snafu by my hosting company, http://www.freeservers.com/, downgraded my hosting account. I visited my web site last Friday evening and saw a lot of advertising on my site. I called my hosting company to have that removed but then I discovered that the MySQL database was missing. WordPress keeps all the blog posts in a MySQL database so without that your blog is gone. I gave them a week to restore my data and when that did not happen I moved my web site to CrystalTech.

I managed to restore all my old blog posts by searching for the text in the pages cached by the search engines. I just copied and pasted the text as new posts and then backdated them. I have lost a few comments and links may go to the wrong posts because the id numbers are screwed up.

My new hosting company supports ASP.NET 3.5 so I will be able to run web applications on my site. I plan to add some examples of my work to my portfolio. I can also create web services and widgets now that I have a site that can run them.

In three weeks I will be flying to Florida to embark on the Carnival cruise ship for the YouCruise. I’m excited by this because I will get to meet my favorite vloggers and travel outside of the country for the first time. I’ve already booked my flight on Travelocity and bought some new carry-on luggage because electronics cannot be packed with your other luggage.

Yahoo! has launched their own web site for social broadcasting, http://live.yahoo.com/. I already have an account there because I use Yahoo! for a lot of things and you always use the same account for all of their services. Of course, now that Microsoft plans to buy Yahoo! this will put a social broadcasting site in Microsoft’s hands and they will promptly kill it because they just don’t get it. I try to participate in their developer community but there is no real sense of community among those professionals.

I’m very interested in an open source project which is meant to provide you with a “YouTube-In-A-Box”. Video.Show is a video sharing site based on technology that I am familiar with; C#, Visual Studio, ASP.NET, SilverLight, and JavaScript. I plan to study this project to see if it is something that I can understand and implement. It would be pretty cool to have my own video sharing site. It is not as sophisticated as YouTube or LiveVideo. I don’t think it can be used for social networking because it lacks any means for users to communicate with each other.

LiveVideo recently launched a new and improved version of their site. They added text blogs, video chat rooms, and many other social networking features.

Posted in General, Web | Leave a comment

Pownce, Technorati, YouTube Pocket PC, and C#

Here is a list of last week’s activities:

  1. I have finished my Pownce widget using their API which provides JSON data.
  2. I completed a Technorati widget for searching blogs.
  3. I figured out how to convert YouTube videos for the Pocket PC and copied a few to its Secure Digital media card. Now when I go on the YouCruise I can show the other passengers some videos. There are always some people who have never heard of YouTube.
  4. I’ve been slowly learning about new C# language features like lambda expressions and LINQ.

I’m researching a 100% pure client side method to create web site mashups. Soon I will add a page to my web site to demonstrate a mashup based on many sources of data. This will not require any server side processing so I will be able to host it on this web site.

Posted in General, Web | 1 Comment

Amazon Mashups, Expression Web VBA, JSON Viewer

Here is a list of what I’ve been doing for the last two weeks:1. Started working with the Amazon web services API. I added a web page to my help collection Notes which gets my programming books wish list from Amazon.2. I wrote a Microsoft Expression Web VBA macro that creates a new web page for my help collection. It automatically fills in today’s date for me and pops up a form where I can enter the topic and title. This will save me a lot of time.

3. Bought digital media for my Pocket PC and Panasonic camcorder. They both take Secure Digital cards so I bought two 1 GB sticks. I also bought some Mini DV tapes. The Pocket PC did not come with any batteries or a power adapter so I’ve had to bid on more eBay auctions to get them.

4. I’ve been doing a lot of work with JSON. I recently found a JSON Viewer which will help me to figure out the object model of the data I retrieve from web services. I recently signed up at the Pownce social networking site and I’m trying to do something with their API. Update: Pownce is now defunct.

I’ve started to read the book The Meme Machine by Susan Blackmore. It is an interesting book about how ideas and stories replicate themselves and spread throughout society. I think the concept is useful for understanding the Internet and viral video.

Posted in General, Programming, Web | Leave a comment

Reinstalling Visual Studio 2005

Tonight I am reinstalling Visual Studio 2005. It takes about 4 hours to install so this will waste my entire evening. I have been having problems running Visual Studio 2005. The Windows Installer msiexec.exe process has been randomly starting up and hogging my PC. This evening I figured out that I have both the Standard and the Professional versions installed and it is the Standard version that is trying to repair itself. So I am trying to uninstall the Standard Version.

Today I got a battery for a DELL Axim X5 Pocket PC I bought on eBay. This is the same kind of Pocket PC that I bought my older brother for Christmas. I was impressed by its ability to play videos using the Pocket PC version of Windows Media Player. I plan to take it on the YouCruise to show videos to other vloggers. I have also bought a Panasonic PV-GS120 3CCD MiniDV Camcorder on eBay so I will have a decent camcorder to use on the trip.

Today I learned how to create a tag cloud using ASP.NET 2.0. I’m thinking about starting a social networking services site. One of the services could be a tag cloud of all the tags that a vlogger uses to describe their videos. This is a feature that YouTube does not offer.

Posted in General | Leave a comment

SubVersion

I’ve been reading many other programmer blogs to get a sense of what I need to know to remain marketable. When you work alone or on a small team you experience professional social isolation and don’t learn about the best practices that everyone in your industry would expect you to know.

One of the professional practices I read about was source control, also known as revision control. Source control is used to manage source code that a team of developers is working on. It maintains copies of changed files, allows you to annotate changes, keeps a repository of the project, manages the merging of files, and allows you to restore files to a previous version. Obviously this is not something you’ll use if you work alone so an independent software developer is unlikely to be familiar with it.

Most professional programmers seem to be using SubVersion. It has a Visual Studio Add-In AnkhSVN and a Windows Explorer client, TortoiseSVN. The server requires the Apache web server. I already had the Windows Explorer shell extension installed because I needed it to get some Python packages. I found some detailed instructions on how to install SubVersion on a programmer’s blog, another benefit of perusing blogs.

Make sure you install Apache 2.0 and not the latest version because SubVersion does not work well with Apache 2.2. I don’t care for this requirement because I do most of my work with Internet Information Server and don’t want to manage another web server. After you get everything installed and tested you still have to spend a lot of time getting used to the process of committing changes and retrieving projects. This requires a considerable investment in time but I can see why being unfamiliar with SubVersion might require training for a new hire.

Posted in Programming | Leave a comment

JSON Web Services

I’ve recently learned that it is possible to create a web service which returns JavaScript Object Notation JSON rather than XML. ASP.NET 2.0 allows you to give a web service a ScriptService attribute which “AJAX enables” the Web Service and allows JSON (JavaScript Object Notation) objects to be returned instead of SOAP messages. The client JavaScript can even directly call the web service using a ASP.NET AJAX client-side proxy. ASP.NET 2.0 has a JavaScriptSerializer class which you can use to convert data into JSON.

This is proving to be very useful for a project I am working on which pulls a lot of data from a database to create JavaScript arrays. The JavaScript arrays are then used to populate drop down lists. Unfortunately, this web application has some performance issues because it requires the browser to keep too much data in its memory. I’m hoping to solve this problem by using AJAX to load the JavaScript arrays instead of dynamically creating them through browser code, i.e. JavaScript code. The browser will still be holding the data in memory but it will not need to parse quite so much JavaScript code.

I am currently very interested in JSON because it has proven to be essential to create AJAX applications which can work in compiled HTML help files and help collections. I have already added some fully functional applications to my Notes; a RSS reader, an IP address lookup page, a page to get the weather from the National Weather Service, and a page to get postage rates from USPS. Some of these widgets require a proxy service running on my local web server to make remote requests for XML which is then converted to JSON. Now I should be able to add some custom web services to my JSON data sources. Google and Yahoo also provide many web services which can provide data in the JSON format.

Posted in ASP.NET, General, Programming | Leave a comment

Book Review: Microsoft AJAX Library Essentials

Blogging on the Microsoft Community web site http://weblogs.asp.net has proven to be more rewarding than blogging on my own. I get more feedback from other developers. There have also been other benefits. For example, I was sent a free book to review. Microsoft AJAX Library Essentials: Client-side ASP.NET AJAX 1.0 Explained by Cristian Darie and Bogdan Brinzarea is a book on the Microsoft JavaScript library for AJAX. There are many AJAX JavaScript libraries available like script.aculo.us, jQuery, and Prototype but the Microsoft AJAX Library is designed to make the most sense to ASP.NET developers because it uses namespaces and classes that are similar to C# and the .NET Framework.

This book provides an excellent overview of the object-oriented programming capabilities of JavaScript. Most web developers just hack JavaScript without getting into its OOP aspects so there is a lot to be gained from this material. For instance, I learned that the proper way to create HTML code is through the Document Object Model using functions like createElement, createTextNode, and appendChild instead of just doing it the lazy way with innerHTML. JavaScript isn’t a proper OOP language so there are many work arounds to get it to emulate classes. Some of these language features are similar to what has been added to C# 3.0; anonymous functions, inner functions, closures, functions as variables, and prototypes. However you don’t really need to know all the insidious OOP details to use the library.

There is also some information in the book on JSON (JavaScript Object Notation) which the Microsoft AJAX Library uses to exchange data. Basically it is a way to serialize JavaScript object arrays as plain text. I’m not sure if the Microsoft AJAX Library will accept XML. When I tried to use it with YouTube gData I got an error and had to include the json query string variable &alt=json.

The book also covers all the debugging tools available for JavaScript. I did find a few I did not have like the Venkman JavaScript Debugger and Nikhil Kothari’s Web Development Helper. There is a debug version of the library, MicrosoftAjax.debug.js, which contains code comments, readable code, and summary data for Visual Studio 2008 code completion. The library itself contains a debug class with methods for debugging and tracing. I consider this an excellent reason to use this library instead of other AJAX libraries because I rely heavily on debug statements and tracing.

I tried to use the Microsoft AJAX Library in my custom help collection. The request went out but the response gave me an error, “Access is denied.“. I suspect this is caused by the same origin policy which prevents documents or scripts loaded from one origin from getting or setting properties of documents from a different origin. A web page in a help 2.0 collection frequently has problems in referencing files and does not exactly operate within a domain.

You can find additional information on this book at: http://www.packtpub.com/ajax-csharp-essentials/book

Posted in ASP.NET, General | Leave a comment

Photoshop And VB.NET Window Services

Last night I learned how to create Layer Masks, Vector Masks, and Clipping Masks in Photoshop. I had to work through various tutorials and take some notes on everything that I had to figure out. For example, you cannot create a vector mask from a selection. You have to use the pen tool to create a path. I should spend more time studying Photoshop because it is more fun than struggling with code. It satisfies my creative urges. I do have a Photoshop Wow book with many cool tips and tricks. Unfortunately it requires hours of experimentation to learn how to do something cool.

Today I learned how to create a windows service using VB.NET. This took several hours due to some confusion over which timer object to use. I found many message board posts on the Internet about this issue but unfortunately the first tutorial I found did not mention it. I’ve been using scheduled tasks and web services for automation but a windows service would be easier to manage. I need to automate something on a dedicated web server where I will be able to install a windows service.

Posted in General, Graphics | Leave a comment

Cutting Down On Research And Studying

I’ve decided to cut down on the amount of new technology research and studying I’m doing. It is getting to be too time-consuming and scattered. I need to focus more on doing billable work. In particular, I am not going to spend any more time on security. I was getting too in-depth on SQL injection methods and venturing into Python and PHP because hackers tend to use those languages.

I’m going to cut down on CSS studying. I’ve learned a great deal more about CSS but it can get very involved when you factor in all the browser implementations. I’ll probably still pick up a few tips and tricks occasionally. I shall also spend less time exploring web design but I’ll keep my eyes open for any graphics element that looks cool.

As far as research goes, I will not jump on ASP.NET 3.5, Visual Studio 2008, or Silverlight. I’m still mastering ASP.NET 2.0 so I don’t want to confuse myself with another version. I think Microsoft is going a little crazy with their pace of development because they are planning a model view controller (MVC) framework for ASP.NET and so many other new features that nobody will be able to keep up with it. They just keep piling on the complexity.

However, I will continue to concentrate on the following technology; After Effects because I’ve already invested a lot of time in mastering it, ASP.NET 2.0 because I have many books to read, AJAX again because I have several books on AJAX.

Posted in General, Web | Leave a comment

ASP.NET 3.5 Released

I’ll blog about this here because everyone on the http://weblogs.asp.net/ site has already announced it. Microsoft has released the .NET Framework 3.5 which includes the new version of ASP.NET, known as ASP.NET 3.5. Visual Studio 2008 has also been released but SQL Server 2008 is still not available except in beta. I had the beta versions of Visual Studio 2008 and ASP.NET 3.5 installed on my home computer so I had a struggle to uninstall that and install the release versions. Fortunately I managed to accomplish this tonight. There were many packages installed by the Visual Studio 2008 Beta 2 and I had to uninstall all of them manually before I could get Visual Web Developer 2008 to install successfully. I’ve also managed to create rounded corners for the divs used by the Microsoft Expression Web template. This gives me a basic web site design that I can completely define through CSS. I also have the JavaScript to allow you to switch the CSS so you can quickly see a web page with different designs applied. I’ll probably put a small demonstration site on my web site under the portfolio section so potential clients can see proof of my graphics abilities.

Posted in ASP.NET, General, Programming | Leave a comment

Widescreen Monitor

Tonight I bought a HP w2207 Widescreen Flat-Panel TFT-LCD Monitor. I am really thrilled with it. It is as big as a TV set! I have it hooked up to my dual-monitor video card so now I have a dual monitor set up.

My old monitor is an IBM G70 17″ Color Monitor. It looks pretty small next to my new 22″ monitor. The color is going bad on it. I has blue horizontal streaks going across the screen. You can’t even buy CRT monitors any more. I did not see any in the stores.

The widescreen LCD monitor will be great for my After Effects work which is quite cramped on a small screen. You have to have your video composition window and the timeline window open at the same time which does not leave much room for your tools palette, the project window, and the effects window. I usually have to move windows around a lot to see what I’m doing.

I spend enough time at my computer to make it worthwhile to invest in better equipment. I also watch a lot of video sitting at my computer because I don’t have cable TV and rely on online video for my entertainment needs.

Posted in General | Leave a comment

Web Site Design

One of my immediate goals is to learn how to be a better web site designer so I can stop making excuses when a client seems to be more interested in a fancy web site design rather than the web application work I usually do. Of course, I don’t really need to bother because I have plenty of work already and I’m not likely to go begging for design work. But it would satisfy my creative side if I could create fancy web sites.I’m probably not that far off from this goal. I already know CSS and XHTML which makes it possible to easily apply a design to a site. It is considered to be the more professional approach to web site design. The old way of doing things was to create a web page entirely in Photoshop as one huge image and then slice and dice it into a mess of nested tables and numbered graphic files. You were pretty much stuck with that design because the table layout was determined by the page image and the graphics where like puzzle pieces. You could not replace a puzzle piece without messing up the image.

I think there are just a few tricks I still need to learn. First, I need to learn how create different textures. A popular style is to make the page background image a pattern with a faded color to give it a different texture than the page content. The idea is to draw attention away from the background. This can be done smartly with diagonal stripes and a gradient or it can be done very badly to look like hideous wallpaper.

I also need to figure out how to apply a color scheme. It is easy to find a color scheme because there are web applications to generate them from complementary colors but there are no guidelines for how to apply the color scheme. Gradients and drop shadows are also easy enough to create but you need to know how to use them judiciously.

Posted in CSS, General | Leave a comment

AJAX Control Toolkit, IT Toolbox, Flash Content

Yesterday I turned off JavaScript in my browser and saw what my web site will look like without JavaScript. You won’t see the Flash header without JavaScript and you will not be able to navigate to any of the web pages in the Flash menu. This is a mistake that many web sites make when they use Flash. They do not provide any alternative content to take the place of the Flash content. It is particularly important to provide your links in the alternative content. I expanded the text and added links in my header although you won’t see it if you are seeing the Flash loaded over it.I began to study the AJAX Control Toolkit yesterday. I discovered that I didn’t even have it installed. I had the AJAX Extensions for ASP.NET 2.0 installed but not the AJAX Control Toolkit which is sort of a library of common web controls. I created a toolkit project template and added all those web controls to my toolbar. Now I am going through the controls to find the minimal requirements for using them in a web page.I now have a blog at IT Toolbox where I will be writing about social media. IT Toolbox is a social networking site for IT professionals. Or should I say, it is a professional networking site? This is going to give me too many blogs to maintain because I’m also writing a blog on the Microsoft site for ASP.NET and my business blog here. However I can get many more readers on the Microsoft site and IT Toolbox provides some additional incentives and marketing support for their bloggers. There are now too many web sites built around user generated content and some sites now realize that they need to provide some incentive to their top contributors. I’ve seen this on YouTube were top vloggers have been made partners and offered exclusive ad revenue sharing deals. Boy did that cause a ruckus in the community!

Posted in Business, General | Leave a comment

Williamsport Media Developer – Site Redesign Is Finished

This afternoon I finally finished my web site redesign and published the changes. I changed the name of the site from Williamsport Web Developer to Williamsport Media Developer because I wanted to emphasize my interest in new media. I did not change my domain name though.

The new web site design is meant to kill my business. This may seem unwise but I’ve been getting too many projects from clients that can’t afford to pay for the work I do. I would prefer to work in the more lucrative field of video production. The online entertainment industry can afford to pay more than e-commerce web sites and the work is more exciting. I don’t expect to get a lot of work but that is alright because I have plenty of work to keep me busy now.

I did not create the Flash animation or the web site design. I bought a template from Template Monster.com. However I did have to edit every aspect of the template. I had to edit the Flash file to change the links, the text, and the hyperlinks. I had to edit the Photoshop file to change its text and to create a header and footer. I had to edit the web pages for content and to make the HTML markup better for the search engines. I also had to edit the style sheet to make the text easier to read. It was actually a lot of work for a small site. I used the SWFObject to embed the Flash content because it is more reliable than the code the template used.

I will continue to make changes to the web site but most of the additional work will be to improve the content.

Posted in Business, General | Leave a comment

Microsoft Expression Blend

I looked at the Microsoft Expression Blend web site today to see if it was anything that I would be interested in. Expression Blend appears to have some of the same features as Adobe After Effects with keyframe animation, support for vector graphics, and video and audio encoding. It can be used to create Silverlight applications for the web. It can also share development code with Visual Studio. In other words, Microsoft Expression Blend seems ideal for my multimedia projects. It even supports databinding with web services.

If you could combine databinding with video compositing then it would be possible to dynamically generate video based on a variety of data sources. For example, you could convert RSS feed headlines into title screens and intersperse them with video clips or transitions. A visitor to your web site could then see a different video every time they visited your web site with current information like the news headline tickertapes that appear on commercial TV news channels. Maybe you could stream dynamically created video. That would really be revolutionary!

Posted in General, Video Production, Web | Leave a comment

Blogging For Microsoft

Microsoft has given me a blog at http://weblogs.asp.net/rrobbins/, their community web site for ASP.NET developers. I’m excited by this because I do most of my work using ASP.NET and I have a lot of content in my technology notes which I can use. So far my blog posts have averaged 100 views which is probably better than this blog.

I hope to get some feedback on the programming topics that I blog about. The ASP.NET community web site is popular with some really talented programmers and they can give me expert advice on how to improve my work. I’ve been buying lots of books on ASP.NET and I can find the authors’ blogs on the ASP.NET community web site.

Posted in ASP.NET, General | Leave a comment