I recently came up against a situation where I wanted to add rows to a table via javascript. Not a problem with jQuery, EXCEPT that my table rows were being added with 'style="display:block"'. What's wrong with that, you ask? Well, in Firefox the row was being appended to the table but it looked all scrunched […]
Category Archives: Code
Internet Explorer image resizing tip
Who knew? Though it's not best practice to resize images in the browser this could really be useful in the right situation: img { –ms-interpolation-mode: bicubic; } This little snippet will vastly improve the image resizing abilities of ie — bringing it closer to the resized image quality experienced with Firefox or Safari. […]
Copy calculated bpm data from algoriddim djay to iTunes using Applescript
It's been a long time since I've messed with Applescript. I modified a script I found on the algoriddim forums. This script would run through all tracks that were analyzed in djay and try to write the bpm data to the mp3 tag in iTunes. If your library is large, this could take days. My modified […]