Nike Music Shoe

These guys take pairs of the Nike Free Run and modify them to make sounds. First video below is behind the scenes of how they did it. Watch that before the second video of the actual performance. Had I not seen what they did, I would have thought the video was faked. Enjoy.

Share

The Apple iPad

After plenty of rumors and anticipation Apple finally announced the newest addition to their product line, the iPad. While the jokes are already flying around how it sounds like a feminine hygiene product, it certainly is an exciting product that I am looking forward to owning. I’ve been debating on whether or not to purchase an eReader and am glad I held off. While I will certainly start reading books from the iPad, there are so many other things it will do as well.

Instead of rambling off some of the cool new features, take a moment to watch this masterpiece in marketing from Apple themselves.

Share

Way Back Machine

Guess Who?, originally uploaded by tigerpaw511.

This afternoon my friend at work was looking up websites as they appeared years ago. It’s the next best thing to a time machine. Using the Way Back Machine, you are able to see websites as they appeared at a specific time in the past.

I entered www.slazyk.com into the search window and came across this photo from the main page. Now it’s in Flickr, to enjoy for years to come. Here’s another one. Katie

Share

Bandwidth Throttling / Policing on Cisco ASA

If If you are looking to control the amount of bandwidth for a particular host using a Cisco ASA Security Appliance, you’ve come to the right place.  When I was first asked to look into this capability on the ASA I knew that I could perform some sort of Quality of Service (QOS).  In fact, all of the documentation that I came across either on Cisco’s website or from third party integrators have detailed information on controlling quality for VoIP, traffic shaping, and how to do those things across a VPN tunnel.  While the information on these great features of the ASA is helpful, finding articles on limiting bandwidth to a particular IP address was more difficult to track down.  In fact, it took a TAC case and several hours of reading papers on the above services until I was able to figure out how to police bandwidth using my ASA.  In the example below I am throttling bandwidth to 1Mb for the host 1.1.1.1:

For the sake of simplicity, I will show you how to limit inbound and outbound bandwidth for one host.  In order to do this for multiple hosts you simply replicate the steps making a few changes to access-list names, class-maps, and policy-maps.

The first step is to create the access list that define “interesting traffic” or what IP you want to control.

access-list throttle_me extended permit ip host 1.1.1.1 any
access-list throttle_me extended permit ip any host 1.1.1.1

The second step is to define the class-map.

class-map throttle-me
match access-list throttle_me

Now you need to define your policy-map and call the class-map.

policy-map throttle-policy
class throttle-me
police output 1000000 2000
police input 1000000 2000

The final step is to apply the new service-policy to the PHYSICAL interface where the traffic will flow.  You CANNOT apply this to a sub-interface.

service-policy throttle-policy interface outside

In summary, this configuration was applied to the outside interface of my ASA.  This is the “choke point” for traffic and can be considered the edge of my network.  As stated above, you must apply the policy to a physical interface on your ASA.  The IP address 1.1.1.1 represents a public address that is statically mapped to a private address behind a sub-interface on my ASA.  The method above combines a little bit of each QOS function from the ASA to get what I want it to do.

Share

HDR Photography

Coastal Path, originally uploaded by tigerpaw511.

I recently started creating photos using HDR or High Dynamic Range imaging. The process involves taking multiple shots at different exposures of the same subject then layering them together. Once that is done the layered images can be enhanced by using a third party application such as Photomatix. For more information about HDR take a look at this Wiki entry.

Here are all the HDR images I have created so far.

Share

Islands of Conciousness

I came across this site while reading up on ways to extend Flickr.  Essentially it is a combination of two projects designed to create “and endless virtual videoloop that is in perpetual metamorphosis”.  I highly recommend a visit.  Just click on the link, sit back, and enjoy.

Share