PressPausePlay

The film/music business landscape is seeped with uncertainty, and it may be too soon to tell the industry’s nude erection. if the internet is any indication, a new grande unified media model will be full of grainy, viral shakycam videos of cats drinking Pepsi. PressPausePlay will hopefully address some of these issues.

Trying to make it in a market that isn’t sure it wants to pay you is exciting on an individual level, and may be “purifying” on an industry-wide level. If I could just figure out how to eat ‘excitement’.

Web Services By Aaron@ParsiLux

ParsiLux.com offers a full range of computer and Internet services. We aim to remove the complexity from the Internet so you can concentrate on your core business.

We do it all, from server set-up all the way through publishing your site, handling modifications and analytics reporting. We will provide you with fast turn-around, great customer service and low prices. Don’t know the diffrence between FTP and PHP? Not a problem, we have you covered. We will work with you to design and develop a custom made solution that complements your business and desired level of site control. Do you want to be able to update your site by yourself? We can explore content management systems like WordPress, Drupal or Joomla.

Do you want a traditional site made from the ground up that takes care of itself (or so it seems)? We will take complete control of your domain and you never have to do anything. Maybe your interested in how your website works, we will provide well commented code and show you exactly how the HTML and CSS work to make your site.

From the simple to the complex we can make your Web wishes come true! Please send an email and we will promptly be in touch to discuss your needs. aa@parsilux.com

No cost, no obligation. We are here to help.

The World’s Greatest JavaScript Code

Click the link below, you won’t regret it. Rejoice in the glory of Asteroids. Use the arrow keys to move your ship and the space bar to blast HTML elements off the page. Great stress reliever! You can also copy this and use it on any web page, just paste it into the address bar and hit enter.

javascript:var%20s%20=%20document.createElement('script');s.type='text/javascript';document.body.appendChild(s);s.src='http://erkie.github.com/asteroids.min.js';void(0);

What is HTML5 and How Do I get me Some?

HTML5 badgeBesides being the go to buzz word for web development these days, HTML5 is the next generation of standards(5g?) for building websites and browsers. Without going into mind-numbing esoteric details, I can tell you that you can turn your web page into HTML5 with (almost) a single line change of your source code.

<!DOCTYPE html>

Of course, besides bragging rights to your non-technical minded friends, this change will have no effect on your page. What it will do is give you the power to use the newly standardized HTML5 tags such as <video> and <canvas>. These tags allow your browser to natively support what once took a third-party propriety plug-in, Flash.

Dont get me wrong, the w3c didn’t introduce a new standard to kill Flash. It just so happens that a certain companies disdain for Flash coincedes with the introduction of a new web standard that is capable of replacing it. Maybe, given time.

With all the hype for HTML5 one could be lead to believe that the <video> tag is the greatest thing to hit the Internet since, well, embedded video.

That is not the case. Right now the video tag is used mostly as a degredation tool. If you want to host a video clip on your site, you would be remiss if you only hosted it in HTML5. This is because the w3c standard does not specify a media encoding for your video. As such browser vendors are free to support any or all of the video formats including H.264, Ogg Theora or VP8(WebM) and they don’t all support the same ones. This means your fancy HTML5 video will likely only be served to tablet and non-Flash users in H.264. Most visitors will still see the good old-fashioned Flash version they already support.

Now on to the <canvas> tag. Again, this tag is meant to be an open standard to an already existing function of a browser plug-in. The <canvas> tag lets you define drawable region and interact with it using JavaScript. One use is to make games for your browser, a realm long dominated by none other than Flash.

The HTML5 standard includes lots of other things besides the “Flash killers” that seem to garner so much attention. For some reason we never hear about the other features like drag and drop and geolocation.

So, do you need HTML5? Probably not, unless you want to make your website more ipad/iphone friendly or you really like being on the cutting edge of web technology.