Digital Worlds

Just finished up a long term project with Digital Worlds at the University of Florida in Gainesville.

This web design project intends to reach young audiences with compelling content. It is a place for them to upload videos, share, collaborate and get insights into problems and issues that affect their peers. The “portal”, in a sense, centers around video content features:

  • Robust user management system
  • Users can private message each other or favorite videos. The user profile system allows them to upload an avatar, list their social network links and interact with the website.
  • The video upload system is custom build by Livewire, it features youtube and vimeo support. Using the power of embedly, the script automatically pulls all the information from the video into a format the website can use.
  • A unique category system gives the admins easy to use control panel for managing and categorizing videos
  • Content is held in queue for moderation – no naughty videos, everything must be suitable for minors

Swiftly understanding the needs of our clients Livewire was able to turn a tired wordpress installation to a scalable, sound web portal that gives users maximum interactivity.

Database Projects

We are database junkies. Simply put, you can’t beet the flexibility and scalability that databases offer us in the web design world. We prefer using MySQL which is the most common database for web projects. It integrates with PHP perfectly and together there is simply nothing more powerful.

african american man using computer

How to Reset the SMC on Your Mac: A Step-by-Step Guide

How to Reset the SMC on Your Mac: A Step-by-Step Guide If your Mac is acting up—battery issues, overheating, or problems with sleep mode—it may be time to reset the System Management Controller (SMC). The SMC controls essential hardware functions like power management, battery charging, and thermal regulation.

Page Speed Insights

The importance of page load speeds for website performance cannot be emphasized in the current digital environment. A website’s loading speed can make or break its success in today’s fast-paced world when people expect rapid access to information and flawless online experiences. The following are some major justifications

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’ ]);

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,