DAY Communications LLC Design & Function for Web & Print

Fastest growing Kentucky companies

It's fun to peruse the 2015 Inc. 5000 List.

Loot Crate won the national competition for fastest growing company with a 3-year growth rate of 66,789%. In comparison the runner up, Paint Nite, only grew by 36,555%. Both are in the Consumer Products and Services sector.

"The Los Angeles-based Loot Crate sends as many as 650,000 monthly subscribers in 35 countries a box filled with collectibles like a Back to the Future hoverboard replica and a Bill and Ted’s Excellent Adventure T-shirt. The company, founded in 2012 by Chris Davis and Matthew Arevalo, tops this year’s Inc. 5000 list by overcoming shipping strikes, product scarcity, and the uncertain subscription-box economy to succeed in the business of fandom."

Among the top 10 fastest growing national winners are the two consumer product companies and two business products companies. The single categories include: government services, health, retail, advertising & marketing, energy and software.

The top Kentucky winners are graphed using the HTML5 canvas element here, and in the table below.

The hyperlinks in the table below will take you to the company's Inc. 5000 description that includes its url.

2015 RANK COMPANY NAME 3-YEAR % GROWTH REVENUE (millions) INDUSTRY LAUNCHED CITY STATE
215 United Installs 606% $3.4 million Construction 2012 Erlanger KY
611 Legion Logistics 744% $25.5 million Logistics & Transportation 2009 Florence KY
730 Bluegrass Dedicated 614% $8.9 million Logistics & Transportation 2011 Bowling Green KY
750 Capture Higher Ed 509% $5 million Education 2011 Louisville KY
1390 Alliance Cost Containment 452% $4.5 million Business Products & Services 1992 Louisville KY
1475 Studio Calico 279% $7.6 million Consumer Products & Services 2007 Bowling Green KY
1503 21c Museum Hotels 273% $3.5 million Travel & Hospitality 2007 Louisville KY
1878 Nexigen 229% $4.6 million IT Services 2003 Newport KY
2312 Kona Ice 56% $18.2 million Hospitality 2007 Florence KY
2350 Component Supply 163% $3.3 million Logistics & Transportation 2000 Louisville KY

Combining WrapBootstrap Theme with BE 3

A search for DotNetBlotEngine themes may not turn up as many free offerings as it once did, but some may be found. For a very small amount you can also buy a nice theme from WrapBootstrap.com/

These themes can be easily integrated with DNBE since the app is configured to use Bootstrap.

An example of using the Unify theme with DNBE 3.3 may be viewed at: DayCom.co

Here is how I integrated DNBE with WrapBootstrap's Unify theme.

  1. Start by downloading the BlogEngine3.3 (web) app. I put it in Visual Studio 2013 Projects folder.
  2. Purchase the Unify theme and download it. I left the original version intact so that I could go back to it in case I broke something in my development site. I left it in my Documents folder, but I open it as a website with VS2013 to view the html pages and understand how it should look and function.
  3. Add a folder in the DNBE /Custom/Themes folder and name it "Unify."
  4. Add the css folder with the styles.css and rtl.css files that are in the /Custom/Themes/Standard folder, and likewise add the fonts and images folders as they are in Standard. You may not need these, but you might.
  5. Add the .ascx, html, site.master and other files that are in the /Custom/Themes/Standard folder. Your theme.xml file should reflect the authorship of Unify. You might want to add the site.master from Standard-2015, but I found the code that enables the login which is found at the top of the Standard site.master very helpful.
  6. Add the Unify assets folder (that is inside Unify's HTML folder) and all the folders and files in the Assets folder if you want to experiment with everything. Or, be selective and only add what you plan to actually use.
  7. I also put the css code from the Standard-2015 css Main.css file in a custom.css file in the assets/css folder and adjusted it. You cannot include the body nor h1-6 code if you want to use Unify's theme colors etc.
  8. After this, I published the site to Azure on a practice url to see if it would work. To make it work, you need to adjust your links to stylesheets and scripts in your site.master so that they attach to Unify's files. For example, in the Standard-2015 theme folder, the link to bootstrap.min.css is:
    <link href="css/bootstrap.min.css" rel="stylesheet">
    but in your Unify site, the link in the site.master file will be:
    <link rel="stylesheet" href="/Custom/Themes/Unify/assets/plugins/bootstrap/css/bootstrap.min.css"> This will be true for all the css and script files that you use.
  9. To decide which Unify plugins (etc) you want to use, you can view the html pages in its HTML folder in your development environment. Of course, you will not want to publish these to your server but use whatever code from them that is helpful.

I hope I have remembered everything, but probably haven't so send me an email through the DayCom.co contact form if you have a question.