MyPage puts you in control of the current page: Remove, isolate, edit page items with keyboard control. On-screen print-preview emulation lets you see how the page will print while editing. (if you dug click2zap, try this out.)
Author: Steve
PHP for Easy Bookmarklet Testing and Distribution
Bookmarklet authors have it tough. On top of the usual challenges of cross-browser Javascript testing, we’ve traditionally also had to workaround IE’s character limit and jump through hoops to embed code inside of javascript: links.
Bookmarklet Server (source) eases testing and deployment by allowing you to keep code where it should be—in .js files. A single SCRIPT element dynamically loads the bookmarklet code and creates the javascript: link for you.
PlayTagger bookmarklet
PlayTagger loads del.icio.us’s Play Tagger in the page, which allows you to listen to (and bookmark) mp3 links.
Get it
Shamelessly self-promoting test links
Brittle Stars – So Unfair
The French Horns – Brighter Now
Previously powered by…
This page used to have a bookmarklet that did a similar function using the open source XSPF Flash Music Player, but SourceForge now prevents direct linking to the SWF files. Rewriting the bookmarklet to use PlayTagger is easier than explaining that you have to host your own SWF and adjust the bookmarklet accordingly.
What happened to the design?
We’re sorry, CSS will return tomorrow.
See Web Standards Naked Day (SFW) for more info.
For Josh
WDHV and Maria Taylor
WDHV 101.7 is a little FM station in Trenton that plays some great pre-70’s classic country. The other day I caught the tail end of “Talk Back Trembling Lips” from 1963 and the rhythm section and reverb filled the van so nicely–it made my morning. They do slip in later stuff and even up to the awful she-thinks-my-tractor’s-sexy “big hat” country, but it’s in moderation and all played by people who actually seem to remember this stuff.
I mention this because this week I’m helping sabotage statistics by recording my radio listening habits for Arbitron (think Nielsen for radio). Three things are great about this: 1. Per day, I only listen to maybe 45 mins of NPR and 10 minutes (if I’m lucky) of some hodunk out-of-area oldies station. 2. They bribe you with dollar bills in the envelope…$10 so far, and since Arbitron works for the LPFM-hating NAB, I’m happy to take their money. 3. This makes twice that I was randomly selected to do this, first being probably a decade ago.
Tonight I’m going to see Mates of State, Maria Taylor and papercranes at Common Grounds. Maria is/was(?) one half of Azure Ray, who put out a great debut album and some OK follow-ups. It’ll be nice to finally see the Mates outside of Wayward Council, they’re sometimes a little much for casual listening, but a blast live.
No more CC applications, please
Cost = 1 stamp. I’ll see how it goes..
IE7 Compatible Float Clearing
According to the latest news at least. Includes font-size:0 per the original author of this mess.
.clearfix:after {
content:".";
display:block;
height:0;
font-size:0;
clear:both;
visibility:hidden;
}
.clearfix {display:inline-block;}
/* \\*/
* html .clearfix {height:1%;}
.clearfix {display:block;}
/* */
Detect a blocked pop-up window
Since reliable info doesn’t seem to be out there, this Javascript detects if a pop-up window was blocked at least by IE6/XPsp2’s built-in blocker, FF or Opera 8.
var popWin; // global for easy reference later
function pop(url, name, features, replace) {
popWin = open(url, name, features, replace);
if (popWin == null) { // nice blocking browsers return null
alert('window blocked, redirect or whatever');
} else {
setTimeout(function() {
if (typeof popWin.parent == 'undefined') { // opera
alert('window blocked, redirect or whatever');
}
}, 200);
}
}
How about Safari?
Spore
This game is all about scale. Think “The Sims” from the molecular level to the galactic with everything in between. At least watch long enough to see your animal doin’ it (soft jazz with sax helps set the mood). As a programmer, this thing makes my greatest accomplishments feel like Pong.