New apps coming down the pipe

We have 6 new apps coming out over the next few months. Very excited to roll these out – unfortunately we can’t give you too many details but we have a couple apps geared toward attorneys and the legal industry, one that deals with product shipping and another that connects businesses with first time customers in a brand new way.

We have high hopes but we know this industry. Making a hit app is one-in-a-million… literally. All we really want to do is carve out a nice niche and give as many people as we can a high quality useful product. We’re not looking for the next facebook, twitter or even the next Angry Birds – app building is not about that, it’s about making something of quality that a segment of an industry will find useful. We go into it with ROI on the mind, not dollar signs in our eyes. Development takes time, sometimes, a long time, but it’s worth it.

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

Understanding Image Optimization

Image optimization is complicated and a multi-tiered process that takes months of study and practice. Just kidding. It’s easy. First, make sure you’re images aren’t huge. Most digital devices take pictures in high resolutions and most stock photos come that way. Always size your images to the exact

Getting Accurate Shipping Rates

If you own an ecommerce store and provide real time shipping rates you have likely encountered a long list of issues with returning accurate rates. If you have not, Bravo good sir or madam! You are the exception. Having real-time shipping rates on your online store is a

reducing cumulative layout shift (CLS)

Reducing Cumulative Layout Shift (CLS)

NEED HELP REDUCING CLS? Enter Your Website Below For Personal Recommendations:   Fill out my online form. In the fast-evolving landscape of web design, one metric that has gained significant attention among developers and SEO experts alike is the Cumulative Layout Shift (CLS). Since it directly affects user

Warrington Heating and Air Has a New Website

Warrington Heating and Air is a great company and they made a great choice coming to us for their website needs. Previously they had been with a company out of California. They were not happy with the results thus far. Their website was out of date, never worked

Jquery Simple Fadeout

A cute little snippet to show a simple green bar upon a successful edit. <?php if(isset($_GET[‘edit’])){ ?> <div id=’notifyy’> Edited Successfully </div>     <script type=”text/javascript”>     $( ‘#notifyy’ ).show(function(){     $(this).fadeOut(5000);     });     </script> <?php } ?> The CSS: #notifyy{width:100%;background:#2f5001;padding:4px 15px;color:#fff;} Always,