Category: Uncategorized

Happy Holidays – 2015

Posted in Uncategorized

Note To Self My – Friend RegEx

I keep looking for a script to make phone numbers +0000-000-0000 into 00000000000 I always forget my friend RegEx Sample: Regex.Replace(Text, “[^0-9]”, “”)

Posted in Uncategorized

Why Not To Choose a Web Interface

For some applications it seems to me that the web interface may be at it is limits. For those applications that need large amounts of data on display on a single screen that also include calculations and database updates a

Posted in Uncategorized

String Comparison using Equals

s.equals(x); Will return true if the strings s and x contain the same character sequence. So: String s = new String(“foobar”);String x = new String(“foobar”); Then s.equals(x) will return true, but s == x will be false, because s and

Posted in Uncategorized

Creating a Collection of Top-Level Class From Base Level Class

When you have a class inherit another class, sometimes you want the base level class to create a collection of the top-level class.  In this blog I will demonstrate some basic inheritance and a little reflection trick.  Note the examples

Posted in Uncategorized

8 Search Engine Friendly Web Design Tips

Make meta tags relevant to the web page – not specifically to the site Add ALT attributes to images and make sure it describes the image Add Title attributes to links and make sure it describes the link and its

Posted in Uncategorized

I am back – Whoo Whoo!

Despite the Blogger’s removal of FTP support, I have been able to continue using my blog. I have created my own ATOM feed interpretor. It was pretty easy to do in ASP.NET. Look for my future blog on how to

Posted in Uncategorized

Blogger Removes FTP support

Well, it has happened. Blogger is pulling its FTP support. This means that this is my last post of this kind. I will be updating my blog portion of my site with a different technology unless blogger creates something new.

Posted in Uncategorized

8 Firefox Plugins

Tonight I have assembled a list of 8 Firefox Plug-ins that either make my development life easier or simply add a little flair to my web surfing.  Each plug-in is my own choice and is not a paid endorsement.  These

Posted in Uncategorized

I am not the WhozaDog.com creator

There has been a rash of discussions about “a” Andrew Pallant who is the creator the of WhozaDog.com website.  I am not that same person.  While we share the same name, we do not share the same outlook on life.

Posted in Uncategorized