This is basically what I do all day:
WTF? - Are they talking about me?
On being unproductive…
I just got a second monitor for my computer at work yesterday and I couldn’t be happier! However, a few minutes ago I stumbled upon this valleywag post about how adding a second monitor actually decreases productivity because the extra space is used for distractions.
They couldn’t be more right. You may find it incredibly ironic that this post is being written on that screen during work.
If you’re curious:

Your privacy is up for grabs
This just in:
With Beacon, Facebook will install cookies onto users’ computers to track their activities when they visit partner websites such as eBay, Travelocity, and Fandango. When these users bid on an item, book a trip or buy a movie ticket, Facebook will let the user’s friends know in their Facebook news feeds, the stream of friends’ activities that greets users when they log in. From Valleywag
So, facebook is now taking a bold step towards pissing me off. Now, I have to think twice before I buy something stupid online. Will my friends be notified that I bought seasons 1 & 2 of project runway? What will they think? Although, part of me wants to buy a bunch of weird items just to mess with people. Coming soon to a feed near you: “Matt just bought a teddy bear, a gallon of play-doh and a fire extinguisher on eBay.”
I didn’t delete my profile after I was bitten by a vampire, stabbed by a pirate, had food thrown at me, or even after getting bitch slapped by superpoke, but now my need for facebook has come under serious scrutiny. All I want is a glorified roladex so I can keep track of my “friends” whereabouts and “stalk” girls. No frills, no thrills, no bullshit. Just clean, eficient espionage.
But no, it had to come to this. Just when people started liking cookies again, they go and blow it for everyone.
Blockquotes: setting an endquote image that displays dynamically
A lot of blogs out there use an image of beginning quotes to spice up their blockquotes. If you don’t know what I mean, here’s an example:

Now, you’ll notice that there is a background image on the blockquote tag that specifies the beginning quote image, but there is no endquote image. This is because the blockquote element cannot have two background images assigned to it. So, the next logical solution is to simply designate in the CSS a background image in the lower right corner to any P tag that appears inside a blockquote element.
This is wrong. It looks great, but only when the blockquote contains only one paragraph. When there is more than one, the endquote image gets set to each paragraph and you end up with a mess of endquotes.
After messing around with some javascript on wordpress for a few hours one day, I finally came up with a decent solution.
It starts with some javascript:
function showQuotes() {
// Gets the number of blockquotes on the page.
var quoteNum = document.getElementsByTagName("blockquote").length;
var quote;
var pNumber;
var pTag;
var newBR;
var pLength;
for(var y=0; y < quoteNum; y++){
quote = document.getElementsByTagName("blockquote").item(y);
pNumber = quote.getElementsByTagName("p").length;
pTag = quote.getElementsByTagName("p").item(pNumber - 1);
pTag.setAttribute("class", "endQuotes");
// Set "className" for internet explorer
pTag.setAttribute("className", "endQuotes");
if(pTag>1){
pLength = pTag.childNodes[0].nodeValue;
pLength = pLength.length;
// If the last paragraph has less than 60 characters or spaces,
// throw in a line break to correct the P element height.
if(pLength < 60){
for(var x=0; x<2; x++) {
newBR = document.createElement("BR");
pTag.appendChild(newBR);
}
}
}
}
}
showQuotes();
Place the javascript at the bottom of the index.php page just inside the ending body tag.
Next all you have to do is add the css:
blockquote {
background: #333 url('images/quote.gif') no-repeat left top;
color: #CCC;
font-style: italic;
margin: 20px 0px;
padding: 10px 0px 0px 30px;
}
blockquote p {
margin: 0px !important;
padding-right: 30px;
padding-bottom: 10px;
}
.endQuotes {
width:350px;
background: url('images/quote_end.gif') no-repeat scroll right bottom;
}
It should look like this:

Note: I don’t consider myself an expert in javascript and I’d love to hear people’s opinions on how this could be done better.
Images from Valleywag and The Trendwatch respectively.
Startup Weekend NYC
This weekend is Startup Weekend NYC! It’s being held at the PolyTechnic University in Brooklyn. I’m pretty psyched. My take 24:7 buddy Vlad will be joining me. Despite my enthusiasm, I’m kind of dissapointed by the ideas being tossed around in the forum. Most of them are for facebook applications that either already exist or violate facebook’s TOS.
However, it’s not like I have any brilliant ideas either. Except my “drunk facebook” app. I mentioned it in a previous post not too long ago, but the gist is that it records all your facebook actions so when you wake up hungover the next morning you know whose wall you posted “McLovin rules!” 17 times…
I’ve been considering starting a “cheap food” social networking site. One where people can post interesting ways to cook alot of food without a lot of ingredients to see how creative some people can get. Hell, that’s better than most of the ideas so far.
VoSnap Launches…Finally
After the end of startup weekend in Boulder, Colorado, last July the voting site deemed VoSnap was yet to be unveiled. Well, over a month later it’s finally open to the public. VoSnap.com is a web app that lets a user ask a simple question, present a series of answers to choose from, a time limit, and send it to other users or email it.
It’s group voting…in a snap! Ask questions and get answers fast using text messages and emails. With vosnap, it’s decided. VoSnap Homepage
Personally, I was pretty curious to see what could be produced by 68 people in a weekend. Well, a month later I’m somewhat disappointed. You can pose your question and receive an answer, but not much else. However, they’ve just pulled it out of private beta and I’m sure there are more features to come. I’m going to startup weekend in NYC in September. I guess we’ll see what happens.
One week in January
Take247 co-founder Dan Clifton has recently written an article detailing the shoot of In Mid-Air in January of 2007. It walks you through the tremendous amount of work that went into the production, along with some Armageddon and Harrison Ford jokes sprinkled in.
You can read it here.


