Archive for 2010

August 2010

Friday, July 30th, 2010


My Newest Website: StylexSeating.com

Wednesday, June 30th, 2010

Stylex Product Page
Stylex Grid Page
Stylex Seating is a versatile office furniture company based out of New Jersey. This project was built on a custom CMS that dynamically writes content to static html files to speed up load speeds and lower database and server load. Released for NeoCon World’s Trade Fair 2010, it is a perfect representation of Stylex’s beautiful products and also a display of the quality of work that Conduit Studios produces. Take a look.

I have also added it to my portfolio.

World Cup 2010 Promos

Thursday, June 17th, 2010

I know there are a lot of these going around right now, but honestly… don’t you want to go find a field somewhere and kick a ball around?
Let’s also not forget, this tournament is more than just about soccer. The US is missing out on not being one of the nations overtly in love with their team. This is a beautiful sport. And I love it. I’m going to Brazil World Cup 2014… who’s with me?

jQuery: RegExp for all occurances; Wrap all © and ® with HTML

Friday, March 26th, 2010

This script will find all © and ® on a page and wrap them a span around them with a “copy” or “reg” class accordingly.

<style>
.copy, .reg {font-size:xx-small;vertical-align:text-top;}
</style>

<script>
$(function(){
var copy = new RegExp(‘\u00a9′,’g');
var reg = new RegExp(‘\u00ae’,'g’);
var newBody = $(‘body’).html().replace(copy, ‘<span class=”copy”>&copy;</span>’).replace(reg, ‘<span class=”reg”>&reg;</span>’);
$(‘body’).html(newBody);
});
</script>