Atlantic Business Technologies, Inc.

Category: Managed Services

  • Pinterest – Internet Marketers Atlantic BT’s First Pin

    Pinterest Atlantic BT Raleigh Internet MarketersAtlantic BT on Pinterest

    Can Pinterest get any hotter? My Business Intelligence Revolution magazine on Scoop.it is becoming all Pinterest, all the time. What is not to like? Visual, easy to use and makes clutter cool and manageable. I’m a believer and just pinned our first pin:

    Martin’s first Atlantic BT Pinterest Pin

    Will post notes and news from our monthly Atlantic BT Internet Marketing Meetup. Next meetup is on NewsJacking the Real Time Web To Cure Cancer – so not an overreach at all (lol). If I wasn’t known for my overreaches I wouldn’t be known and how boring that would be. Stay tuned as we figure out how to use Pinterest to brand, marketing and support our customers and Internet marketing. In the meantime, please check out our NewsJacking Cures Cancer site, tweet and share #MartinsRide and attend our 2.21.12 Meetup in person (4509 Creedmoor Road, Raleigh) or virtually as we stream the event to the real time web.

    Great weekend everyone and get those pins ready.

    Martin

  • NewsJacking Cures Cancer In Real Time Atlantic BT Meetup

    Martin's Ride To Cure Cancer Hits The Beach picture with banner3,000 Mile Bicycle Journey
    Riding a bicycle across America is a popular bucket list item. Sounds cool and fun except turning the crank the millions of times necessary to get this picture is a lot more WORK than dreams contemplate (smiling as I wrote that). I loved every challenge, beautiful vista and flying down mountains at better than 50 mph, but I wouldn’t ride Martin’s Ride To Cure Cancer again on a bet.

    Martin Rides Again At First Real Time Meetup On 2.21.12
    Wanted to “ride” again to help raise money and awareness for cancer research but haven’t been on a bicycle in a year (this going to work everyday = HARD LOL). We created the “Martin Rides Again” concept for our Newsjacking Cures Cancer idea. It didn’t seem cool to create a PowerPoint about the real time web. Surely the web’s Real Time Gods would strike me dead for such a sin. I wondered if we could discuss the real time web and its growing power and seduction in real time. It pays to have great smart friends. Wondering if we could feed our Internet Marketing Meetup video out to the web in real time Jake and Devin from Method Savvy said, “sure.” Great smart BRAVE friends.

    Method Savvy logo and link to method savvy home page

    I’d saved best part of my brainstorming out loud for last. I wanted a 3 ringed circus, then wanted to stream the circus real time to the web, curate 10,000 pieces of #MartinsRide content and do it all in less than 3 weeks. “Sure,” Jake said, “but you know there is no time.” Love people who answer such a tough question like that with a simple, “It’s impossible so let’s get going,”. Let’s see, just about every morning on Martin’s Ride To Cure Cancer felt impossible and yet we got going until there was nothing left but beach and water.

    Jake and Devin created NewsJacking Cures Cancer site on Tumblr, a NJCuresCaner Twitter feed and we started with my $.01 per #MartinsRide mention with our 10,000 mentions goal. Our idea was MY MONEY and THEIR TWEETS. Every Tweet, Facebook share or blog post including #MartinsRide would earn a penny to help cure cancer.

    Much like Martin’s Ride we weren’t alone for long. Atlantic BT’s generous, visionary founder Jon Jordan and our fearless leader Mark Foulkrod and the rest of a great management team voted to add a penny for each mention this morning. Next video producers asked if they could also contribute a penny to help cure cancer. Answer to that question is always YES.

    Cool Meetup NewsJacking Real Time Circus
    NewsJacking is the art of surfing emergent trends. Learn about the trend from author David Meerman Scott at Content Marketing World last September (highly recommend anything Scott writess). Much like surfers sitting slack on their NewsJacking By David Meerman Scott boards until a set of waves rolls in and we must paddle like crazy to catch the wave, surf it and head back out for another ride NewsJacking ties into many immediate Search Engine Optimization trends such as search, social and mobile.

    Could We NewsJack To Cure Cancer
    Since we were already creating a circus may as well go crazy and add in a favorite cause – curing cancer in our lifetime. We didn’t want to ask for money, but we did want to see the power of the Social Web. I put up $.01 for every #MartinsRide or #ABTmeetup mention. Seemed easy and fun. Our money and other people’s tweets (OPT).

    What To Do Now? Deadline for mentions is now Friday 2.24!

    • Learn more about NewsJacking To Cure Cancer
    • Follow NJCureCancer (NewsJacking Cures Cancer)
    • Don’t Live in Raleigh? Tune In to our real time stream and find it on our NewsJacking To Cure Cancer secrets, see Martin’s Ride photos never shared before and win cool SWAG.
    • Here is a great infographic Jake and Devin borrowed from David Meerman Scott to share NewsJacking’s important premise:

    NewsJacking Cures Cancer

  • WordPress Plugin – ABT Relative URLs

    Here’s a WordPress plugin that will help you transfer your site across domains by stripping out the default “absolute url” from post content with a relative “/”; note that this works as you create content, so it should be the first plugin you install!

    Download ABT Relative Urls  Download from WordPress

    As taken from the readme file:


    Description

    By default, WP inserts absolute urls into post content; this includes the protocol and domain, which is based on the home Admin setting. This plugin replace all self-referencing (domain) links with relative paths “/” instead. Works when inserting images into posts, and on the actual save_post action it scrubs the contentexcerpt, and post_meta fields.

    Especially helpful when developing on a DEV site with the intention of transfering to a LIVE domain. Please note that you should use this plugin before you start adding content, or you’ll have to resave everything later.

    Includes code based on Relative Image URLs plugin, which strips domain when inserting images from the Media Library. A similar idea to Absolute to Relative URLs, but works automatically, and handles meta fields.


    Installation

    1. Unzip, upload plugin folder to your plugins directory (/content/plugins/)
    2. Activate plugin
    3. Create content – view HTML source to ensure that domains have been stripped from content.

    Frequently Asked Questions

    How does it work?

    First, it determines the absolute URL from the admin settings (home key, via home_url()), as this is what WordPress uses when hardcoding links.

    On save_post action, it examines both the post_content and post_excerpt submissions and strips the current domain/protocol from:

    1. href attributes
    2. src attributes
    3. all other instances of the domain

    It then retrieves all of the postmeta, scans through the array, and removes the domain from any values. Since it’s a direct dump, it maybe_unserializes each value before recursively scrubbing the content.

    Can I use the absolute URL?

    Yes with protected shortcode:

    [abt_absolute_url trailing="/suffix/"] 

    where the attribute trailing is optional, and would append whatever is given to the absolute url. Really it’s just provided as a “just-in-case”, as you could write [abt_absolute_url]/suffix/ just the same.

    Can I change what’s replaced?

    By default, the following:

    array( 'src="' . $absolute_path_prefix , 'href="' . $absolute_path_prefix , esc_attr( $absolute_path_prefix ) ) 

    are replaced with

    array( 'src="' . $relative_path_prefix , 'href="' . $relative_path_prefix , esc_attr( $relative_path_prefix ) ) 

    Two hooks are provided to alter these defaults:

    • abt_relative_urls_get_search_for: the first “search” array
    • abt_relative_urls_get_replace_with: the second “replace” array

    The reason it looks for the src, then href, then the actual attribute has to do with compatibility with the included relative image url plugin.

    Developers

    Check out our other developer-centric plugin, WP-Dev-Library. Suggestions/improvements welcome!

  • What Is SEO PR

    San Antonio News Express LogoWhat Is SEO PR And Why It Makes Us Happy
    Search Engine Optimization press releases use a handful of tools and platforms such as PRweb and E-Releases to bundle “what is happening now” press releases into powerful content network marketing platforms creating positive search engine marketing cycle we’ve named “more and more, faster and faster, better and better” capable of generating high PR links into web sites, social media (though not sure why you would do that yet) and increasing chances for the magic WOM (word-of-mouth) elixir.

    Here is a link to the San Antonio Express News post about our Content Curation Contest and thanks to the person at SAEN who pulled our release off the PRweb site:

    Content Curation Contest post by San Antonio Express News

    Finding The New News
    You can still see it in old movies and indelibly marked in your memory if you are of a certain post-50 age. The smoke filled, chaotic newsroom with crazy deadline energy and unique personality. I mourn the passing of cool things. My beloved albums, tiny huge televisions with five channels and telephones on the wall in your kitchen join the smoke filled news room as memorabilia.

    On the other hand, there are new cool things and SEO PR, press releases written for search engine benefit and to reach new contacts and “influencers” unreachable in any other way was a secret often used in my last position as Director of Ecommerce. SEO PR is less and less of a secret as are all my old SEO tricks are (inevitably) discovered and then overused. SEO Press Releases are popular and about to be more so because they work (at least for now).

    Platforms Vs. Websites
    One reason seo press works is the content is managed by smart curators. PRWeb and E-Releases were platforms and enjoying the benefits platforms generate long before I wrote Platforms vs. Websites last year. Yes these powerful platforms have the same issues as other social media (Facebook, Twitter). In order to move value to your digital properties links are need and, in this case, THEY control the links. Cost of poker in today’s search engine marketing (SEM) fueled world and worth table stakes.

    How SEO PR Works
    Write a press release, here is one of mine:

    Content Curation Contest Seeks World’s Best Curators

    Be mindful of keywords and there are a few formatting things such as the date and time stamp and pull quote that the platform managers will help you through. PRWeb is less generous with links. They used to allow 1 per 100 words. I had 4 links in my draft of the Content Curation Contest release and PRweb cut down to the single one at the bottom driving to our blog instead of our landing page.

    Content Curation Contest Landing Page

    Content Curation Contest at Atlantic BT link Why would PRweb make such a change? Probably because Atlantic BT’s landing page is new and not as content rich or well linked and SEO friendly as the blog post selected. What you link TO is as important as that you link. Wish PRweb told me prior to distribution since links on the several week old blog post selected weren’t up-to-date. We got ‘er done and that is the main thing, but their choosing links for me is frustrating and patronizing. I understand their need to protect the impressive Google Juice they’ve created, but a little notice would have been nice (just saying).  NONE is how much traffic from content you don’t write, so we are willing to put up with a single poorly registered link.

    Benefits of SEO Press Releases
    I can’t reach out to the San Antonio Express-News myself for two good reasons. First life is short and I have about five minutes a day to eat, sleep and go back to work (like most of us). Second, and this is the real reason, any influencer wants to FIND cool stuff. Finding cool stuff is what the Oprahs of the world live for so frustrating an influencers’ strong hunter instinct only hurts.  I love it when someone says, “We will get Oprah to talk about us.” You might win the lottery too but I wouldn’t put it in a marketing plan.

    When I co-founded Found Objects there was a difficult challenge – how to get talked about when we had NO MONEY. I wrote a letter to editors from the major media outlets that impacted our space such as Oprah’s magazine, Elle Decor and Redbook. The letter came from the President of Found Objects (my ex), was about 500 words long, let the editors know of about our biggest hit – Magnetic Poetry Kit – and offered our help when they were on deadline and needed something cool.

    I attached the letter to a large calendar a famous designer made featuring fonts (forgot his name), stamped FoundObjects.com on the calendar’s top with a $20 rubber stamp and FedExed the letter and calendar in an over sized tube (expensive but worth the “these guys are for real points” I figured since this was back before you could know everything about our company with Google). We got calls and full page features in several critical publications including Elle Decor and O Oprah’s magazine (and remind me to tell the why you never disappoint Oprah’s producers story).

    The important point is people who curate, write and influence for a living don’t want you to tell them what to do. Journalists, reporters and bloggers (influencers) need to find you, learn about you and want to be involved. Frustrate the drive and curiosity that defines journalists, reporters and writers lives and livelihood and good luck with that. Don’t shout build relationships.

    SEO Press Releases – You Are Drowning And Can’t Get Up
    I mix two metaphors in the title for this paragraph on purpose. SEO PR’s value proposition is to put your news where influence go so they might care. Influencers care when your message, company, product or brand is supportive or helpful to them. Influencers must curate an increasingly insane amount of information. According to Google CEO Eric Schmidt we create as much content every two days as from the beginning of time to 2003. Imagine what is going to happen when Moore’s Law of squaring circuit power while cutting integrated costs REALLY gets going?

    You (the royal YOU meaning US) are NOT the only people feeling information overload – influencers feel it too and maybe most acute. Becoming a valuable resource for original or shared content and a mutually beneficial relationship may develop. You need their help, they need your help so life is good.

    Care Don’t Manipulate
    I’ve written, tweeted and blogged about cool writing and content for a long time. I comment, share and provide KUDOS frequently. I love curation and enjoy being involved and supportive. Hitting fifty helped create the sudden and surprising realization life isn’t all about me all the time. I began to reject Satre’s idea that hell is other people (except in airports) and started to live a NonZero life (shameless plug for one of my favorite books and authors).

    My consistent involvement on many fronts (ScentTrail Marketing blog, @ScentTrail and Curation Revolution on Scoop.it) means any story pitch is sincere and based on core values – a real love of curation and people when we aren’t on a plane. My story pitch may or may not land, but the general sense of walking my personal talk and being authentic, caring and real comes from the reputation economics we all do.

    We are a little CIA-like now. We check a Facebook page, Google and Klout scores (Atlantic BT’s is up lately THANKS). It is not that people don’t trust or accept at face value, but, driven by natural curiosity, people want to know stuff. Knowing stuff about other people is what drives the world. Our natural curiosity is Darwinian and what, in the end, life may be about. Some may think people don’t trust, are suspicious and uncaring, but such an assertion is unsupported by anything except anecdotal evidence.

    Robert Wright’s NonZero and Mind of the Market by leading skeptic Michael Shermer and The Selfish Gene by Dawkins all confirm our innate genetic desire to help each another. Influencers are simultaneously helpful and furious watchdogs about their reputations (they have to be). If you read Seth Godin or Malcolm Gladwell you know influencers create influence by being real, honest and caring.

    If influencers shill too much their ability to influence goes down. If they are viewed as mean or uncaring their influencer ratings go down. People who influence our culture and actions must protect their brand while being extremely open to the next cool idea, person or meme.

    THEY are the pros YOU the amateur. Don’t do anything except be honest, caring, sharing, helpful and humble. Care don’t manipulate is another one of those post-50, post-cancer lessons. In Gilbert’s book Stumbling On Happiness he shares our somnambulist wanders mostly in the dark about where personal happiness comes from. Most of the time we have no clue. Worse, we construct serendipity to explain the wrong thing in the wrong way. People think THINGS and SUCCESS is where happiness lives.  Not so much Gilbert points out.

    SEO PR is like a bit of a wander in the dark too. We want Oprah to call our company firing her magic silver bullet, the bullet sure to make us able to walk in moonlight without fear of getting all hairy and fanged. Problem is, as Gilbert, Wright and Shermer point out, happiness is a process not a destination, an idea not a thing. Approach your life, company and brand with these wise author’s human truths,

    • Help others as much as possible since it is really the best way to help yourself
    • Authenticity comes from consistent actions over time
    • Give first, worry about everything else second and when in doubt return to the first part of this bullet
    • Reputation comes from what others think and content Google indexes
    • Use a SEO PR engine to build relationships with cool new influencers like the San Antonio Express-News
    • Be humble and say Thank You since any connection is a gift

    Thanks SAEN, you guys rock.

    Martin

  • WordPress Plugin – Featured Heroes Slideshow

    Here’s a WordPress plugin that will allow you to create a slideshow from posts – using either the provided “Heroes” content type or any other post type.  Added bonus – you can place the slideshow anywhere with a shortcode.

    Download ABT Featured Heroes  Download from WordPress

    As taken from the readme file:


    Description

    Provides a new content type “Heroes” to manage your featured slides. You can then add a slideshow to any page using the shortcode abt_slider_hero. The slideshow is automatically configured using jQuery Cycle and the options you specify in the shortcode.

    One of the options postType allows you to use other content than the provided “Heroes”, effectively allowing a slideshow of almost anything in WordPress.


    Installation

    1. Unzip, upload plugin folder to your plugins directory (/content/plugins/)
    2. Activate plugin
    3. Add slideshow shortcode anywhere you need it.
    4. If you want to put the widget (shortcode) in a Widget, you’ll need to allow shortcodes in widgets
    5. You can call the slideshow in code using abt_featured_heroes::embed( array $atts )

    Frequently Asked Questions

    What is the shortcode?

    Use the following format (defaults indicated here):

    [abt_slider_hero fx="fade" width="100%" height="400px" order="asc" orderby="menu_order" speed="600" timeout="7000" classes="" postType="heroes" style="photo"] 

    where

    • fx = the cycle transition effect (fade, scrollUp, shuffle, etc) – see jQuery Cycle homepage for more information
    • width = width of the slide
    • height = height of the slide
    • order = sorting order (asc/desc) for the fetched items
    • orderby = how to sort the fetched items
    • speed = transition speed from one slide to the next
    • timeout = delay between slide changes
    • classes = optional classes to apply to the slideshow
    • postType = you can retrieve other content types than “heroes” if desired
    • style = normally the thumbnail navigation just reuses the full-size image, but if you want to “control” the quality of the shrunken thumb specify an alternate image size (like “thumbnail”)

    Pretty much all of the attributes are optional, so all you need is:

    [abt_slider_hero] 

    How do I put a slideshow in code?

    You can call the slideshow in code using abt_featured_heroes::embed( array $atts ), where $atts is an array matching the shortcode attribute list.

    Can I change the defaults?

    Only one simple hook available:

    • add_filter('abt_featured_heroes_localize', YOURFN);change the base javascript variables used by the flipwall init script:
      • stylesheet: replace the default stylesheet with your own to change the default appearance of slides
      • speed: change the transition speed (from 600 ms)
      • timeout: change the slide delay (from 7000 ms)
      • fx: change the slide transition (from ‘fade’)
      • style: optionally use actual thumbnail photos for navigation, instead of reusing full-size images (default ‘photo’, alt ‘thumbnail’)
      • width: default width (from 100%)
      • height: default height (from 400px)

    How to put shortcode in widget?

    Use a filter to apply shortcode processing to widgets.

    Filter: <?php add_filter('widget_text', 'do_shortcode'); ?>


  • Content Curation Contest Is On!

    Content Curation ContestEnter Content Curation Contest

    Win an Ipad 2 or Kindle FIRE
    The first Content Curation Contest seeks to discover the Top 10 content curators of 2011. The contest has two phases: APPLICATION (ends 226) and VOTING (starts the next day). If you love to curate content on Facebook, Twitter or Scoop.it you might win an Ipad 2, Kindle Fire or Fame and fortune with a profile page on Atlantic BT and a “TOP CURATOR” handle.

    Easy Curation Contest Application
    Wanted to keep application easy, friendly and FAST. The toughest question asks to describe your curration philosophy. This is a question I’m not sure I could answer. I curate a little like I used to paint. Generally I curate the intersection of Internet marketing, cancer survivorship, art and startups – the things I love and care about (cycling creeps in there too). We don’t need a polemic about curation philosophy as much as we need your sense of motivation and where you want to help, where you want to make a difference with your content curation. Don’t over think, have fun and know everyone at Atlantic BT appreciates your hard work.

    Win Fame, Fortune and Appreciation
    We created the Content Curation Contest to say THANKS and heap some rewards on people who help first and worry about awards later. Click on the link above to fill out our contest application – only takes a few minutes and you may be selected as a top curator, win fame, fortune and some of those drinks with little umbrellas in them. Good luck and thanks for everything you do to help others understand the information revolution.

    Thanks for your had curating work. Together we understand faster and better than apart. Wisdom of curated crowds is the only way to survive Moore’s Law of content chaos.

    Martin Smith
    Director Marketing