Clemson Football for iPhone Just Updated

Download the app

Dedicated exclusively to Clemson Football, this app has everything you need to follow the team.

App Includes:
NEW: Clemson Podcast and Video
NEW: Get Clemson Football Notifications
Schedule and Game Previews
Roster and Player Information
Comprehensive Clemson Football News
Game Day Weather Forecast
Clemson Trivia Game
Post News to Facebook and Twitter Accounts

Posted in Uncategorized | Leave a comment

How To: Extract hyperlink contents in Excel for Mac

I found this information explaing how to extract links from excel data and wanted to pass it along:

You have a series of hyperlinks from which you want to extract the URLs. You want to keep the hyperlink display text as well.

  1. Copy the hyperlinks into a column in Excel (column A).
  2. Copy the hyperlinks into the adjacent column as well (column B).
  3. Select column B and right-click on the selected cells. Choose “Edit Hyperlink”
  4. In “Display” the value will be “multiple cells”. Delete this text and save. Just the URLs will remain in column B.
  5. Select column A and right-click on the selected cells. Choose “Remove Hyperlink”. Just the display text will remain in column A.

Posted in Uncategorized | Leave a comment

BizzApps Delivers NCAA Bracket Challenge Website for WCCP FM

BizzApps delivers NCAA site for WCCPBizzApps has built a custom NCAA Bracket game for WCCP FM. Registered users can sign up and make their picks for this year’s NCAA Men’s Basketball tournament.

Follow this link to register today!

Posted in Uncategorized | Leave a comment

For the first time, Chrome and Firefox can “talk” to each other via WebRTC.

Check out this article to learn more about this incredible technology that allows in-browser video and audio communication. Now if only all of the browsers – IE I am talking to you – can get together and make this happen.

Posted in Uncategorized | Leave a comment

BizzApps Releases 8 New Updates for iOS apps

We have been busy. In the past 2 weeks, BizzApps has released 8 updates for our iPhone and iPad apps and all of them are now live on the iTunes store.

 

BizzApps: Download our Apps on iTunes

Posted in iOS Development | Leave a comment

JFolder::create: Infinite loop detected in Joomla | Quick fix tip

Super quick fix to module installation problems in Joomla 2.5+

Check out the full solution here

Posted in Uncategorized | Leave a comment

mi-Team UNC Basketball iPhone App Now Updated

The mi-Team UNC Basketball App for iPhone now includes an Interactive Map of Chapel Hill. Download the App Here

 

Make your next trip to Chapel Hill one of your best. Plan your stay in Chapel Hill with our new map:

Find Hotels, Restaurants, Bars as well as Golf Course information.
View business websites and restaurant menus all within the app.
Utilize the iPhone navigation to easily find your destination.

Download UNC App from iTunes

 

 

 

Posted in Uncategorized | Leave a comment

Notre Dame iPhone App Updated to Include BCS Championship

Be ready for the big game with the miTeam: Notre Dame Football iPhone app!

What’s New in Version 2.0

  • BCS Championship Previews
  • BCS Championship Road Trip Map of Miami – Find Area Dining, Hotel, Bars and More
  • Updated Roster and Player News
  • Integrated Twitter Discussion
  • Game Day Weather Forecast
  • Download the App Today

 

 

 

 

 

 

Posted in Uncategorized | Leave a comment

UNC Hoops Fan iPad App Now Available on iTunes

UNC Hoops Fan
UNC Hoops Fan
UNC Game Highlights
UNC Game Highlights
Plan Your Trip
Plan Your Trip
Chapel Hill Map
Chapel Hill Map

Our newest app has just been released on the Apple iTunes store.

This is a must-have for UNC Basketball fans:

  • Team News
  • Game Video Highlights and Podcast
  • UNC Basketball Trivia
  • Interactive Map of Chapel Hill with Restuarants, Hotels, Bars and Golf Courses as well as Area Attractions
  • Discuss UNC Basketball via integrated Twitter chat
  • Roster and Player News

Get the app on iTunes here.

Posted in Uncategorized | Leave a comment

How to Kill All Session Variables Using PHP

Here is a handy bit of code that you can use to kill all of your Session variables in a PHP application:

 

<?php
session_start();
$_SESSION = array();

if (ini_get(“session.use_cookies”)) {
// Prepare and swipe cookies
$params = session_get_cookie_params();
// clear cookies and sessions
setcookie(session_name(), ”, time() – 42000,
$params["path"], $params["domain"],
$params["secure"], $params["httponly"]
);
}

ini_set(‘session.gc_max_lifetime’, 0);
ini_set(‘session.gc_probability’, 1);
ini_set(‘session.gc_divisor’, 1);

session_destroy();
header(‘Location: index.php’);
?>

Use this on a logout page and you should be in good shape.

Posted in PHP, Web Development | Leave a comment