1. Turn That Old Mac or PC into a Media Beast

    June 27, 2009 by J.P.

    img_0225

    For those of you have an old computer laying around the house here is a great way to put it back in use in ways that will forever simplify your life.

    I have done this at the last few places I lived but never created a post of this before.

    My first system I had setup was an old dell running xp with an 40gig drive minimal ram and stock gfx card. The second machine featured in the picture above is the new system I’m setting up today. Mac G4 45oMHz 800mb ram with all stock components.

    Apps that you will need:

    • VNC application, ChickoftheVNC to remote control your tv with your laptop… which like most of us is always in your lap while watching tv.
    • VNC iphone remote application, Mocha Touch.
    • VLC media player and iphone remote app
    • Boxee if you have a new enough system to support it. Unfortunatly I’m running a g4 and can get some of the newer sexier apps.
    • Hulu app. Again if your machine will support it.
    • Handbrake to backup your DVD collection and store it in the basement.
    • Silverlight…. I know, but its needed if you want to watch your Netflix movies.

    Components you made need to setup the system (Note this depends on what ports you have on your computer and what you have on your TV)

    So this is just a list of common ones

    • 3.5mm cable with dual headphone inputs.
    • VGA Cable (Supported by most newer TV’s)
    • HDMI Cable if you got the hottest new gear
    • Computer speakers if you missing the 3.5mm port on the back of you TV (This is the least ideal setup)
    • largest HD you can cram into you machine. Why not hold all the media you can possible fit!

    That should be a good start for you home media pc. Post a comment if you have a questions for recomendations. Enjoy.


  2. Activating Root Access in OSX Terminal

    June 18, 2009 by J.P.

    terminal

    After messing around with my Hackintosh today I needed to remove some of my kext files in /System/Library/Extentions (S/L/E). I wasn’t in the mood to find an early build of a hackers app I just wanted Terinal su/root access.

    Here is an easy method to activate root access in Terminal for Mac OS X 10.5 or later.

    1. From the Finder’s Go menu, choose Utilities.
    2. Open Directory Utility.
    3. Click the lock in the Directory Utility window.
    4. Enter an administrator account name and password, then click OK.
    5. Choose Enable Root User from the Edit menu.
    6. Enter the root password you wish to use in both the Password and Verify fields, then click OK.

    Related Links:

    A better terminal app


  3. Video Player with HTML 5

    June 16, 2009 by J.P.

    With some of the latest browsers supporting HTML 5 I thought I go ahead and take a stab at trying to create a very basic video player using some of the new tags. What’s interesting is many times when flash would be needed for video and audio HTML 5 will be able to support such media types with just a little JS.

    Here is a sample player using HTML 5 (Note this is at a very early stage and only has play/pause functionality).

    wildthingshtml5

    <div id="myVideoContainer">
    <video id="myVideo" src="../videos/WheretheWildThingsAre.mov" autoplay="autoplay">
    <p>Sorry Your Browser Doesn't Support HTML 5. Safari 4 will support this video player, download it here</p>
    </video>
    </div>

    Related information: