Choosing The Right Domain

Finding the right domain can be a arduous process. That is, unless of course you are lucky enough to find your business name in the exact form you desire. More often than not, obtaining a great domain takes a lot f time, mental energy and cautious anxiety. Will it be easy to type? Easy to remember? What about SEO and marketing issues?

Luckily there are a few tools out there to help you pick the right URL. First up is Lean Domain Search. This handy program allows you to enter a keyword and searches available domains that contain that keyword.

Namemesh is a step up and allows you to enter a list of keywords, even wildcard characters (not sure why), and will report a list of domains categorized by commonality. The program also gives you a list of similar domains that can help you find synonyms.

For the lazy business owner you can always go with Web2.0 Name Generator. It’s a one click solution that spits out random names like, Fudnuddler or Topicspace.

Finding the right domain name can be a tedious process but hopefully these tools can help you along the way. Just remember that the perfect domain is thoughtful, easy to understand/communicate and intuitive.

Minimalism in Design

By eliminating clutter and concentrating on essential features, minimalist web design prioritizes user experience. This method prioritizes an uncomplicated and aesthetically pleasant user experience by utilizing clean lines, plenty of white space, and a minimal color palette. Minimalist websites accomplish these goals by reducing unnecessary design features, which

What’s New For 2015

Really, we’re not all that sure. We’ll go where the winds blow us but we do have some exciting projects to start out the year right. January will be a big month for us here at Livewire and we hope it only goes up from there. We’re glad

Small Business Sees A Rise In Cyber Threats

Come on, let’s all live in the real world: we’re all vulnerable. Really the only chance you have these days is to make it as difficult as possible for any potential hacker to get to your valuable data. First and foremost this means protecting your data in transit.

Add YARPP to Custom Post Types: WordPress

A great little plugin for adding related posts to your blog has been around for a while: YARPP, Yet Another Related Posts Plugin. It’s fairly robust, for being free, but it does not natively support custom post types – a bummer. A quick way around this is to

Using Warning Lights or Guages

A good article on fox-business about whether your business uses warning lights or gauges to understand how your business is growing. The proper answer should be: gauges. A light is just either on or off, a gauge gives you much more information about where your business is headed,

Preloading Images with Jquery

There are times when preloading images is an important step in keeping your site/page/program running smoothly. This is especially true in the era of mobile. Here’s a cute little snippet that does just that. function preload(yourarrayOfImages) { $(yourarrayOfImages).each(function(){ $(‘<img/>’)[0].src = this; }); } preload([ ‘img/image1.jpg’, ‘img/image2.jpg’, ‘img/image3.jpg’ ]);