Skip to main content

When Facebook goes down..

here is what happens on twitter..

@antderosa: Zuck isn't turning Facebook back on unless he gets final edit on The Social Network

@emilcardell: You know your a geek if you think that it is worse that #github is down then #facebook

@sargenthouse Facebook is down, you know what that means right? NO POKING.

@opb: BREAKING NEWS: Facebook is down. Worker productivity rises. U.S. climbs out of recession.

@sacca: When Facebook goes down, everyone comes to Twitter to talk about it. When Twitter goes down, the world falls mute.

@jlnd: Don't worry, if Facebook doesn't come back you can retrieve all your private data from any of the companies they sold it to.

@LouBrutus: DNS FAILURE: Facebook is down which means 9 months from today, many children will born.

@irockiroll the day has finally come. cloverfield ate facebook

@willmckinley: First they cut Facebook. Then Social Security. Then Medicare.

@kris10turner OMG I just paid my cable bill thinking that's why my internet wasn't working properly. come to find out Facebook is down!!

@jmebbk Facebook CEO Mark Zuckerberg is now richer than Apple CEO Steve Jobs • http://bit.ly/aeajA7 • SO STEVE JOBS JUST LOCKED OFF FACEBOOK!!

@thecultureofme "Hey, so, now that Facebook is down, you guys should TOTALLY check out all the neat stuff we're doing at MySpace" #myspaceprconferencetable

@TheDollSays: Facebook users are roaming the streets in tears, shoving photos of themselves in people's faces and screaming 'DO YOU LIKE THIS? DO YOU??'

@alqaeda: #facebook is down. Not sure if we did that, but we should claim credit anyway. Hitting the infidels where it hurts, etc.

@TheVirginiaKid: #facebook is down. Just went outside and saw the sun for the first time in 2 years! Hahaha!

@nilkibenitez maybe al qaeda did it since facebook is holy book of americans lol

@JimmyTraina: If Facebook stays down & never comes back, I'll switch from being a Yankees fan to a Red Sox fan.

@dunkman: Facebook is down. I hate to be the one to tell you but all your Farmville animals died and your crops burned.

@WGNTV Damn, #facebook is down. No problem @WGNTV is still on the air. Kill some time with #Millionaire.

@kingsleyyy There is a God. Facebook is back. I am logged in. I could cry right now. Big, wet tears of joy and relief. I am saved, I see the light!

Popular posts from this blog

Powered By

As it goes, We ought to give thanks to people who power us. This page will be updated, like the version page , to show all the tools, and people this site is Powered By! Ubuntu GIMP Firebug Blogger Google [AppEngine, Ajax and other Apis] AddtoAny Project Fondue jQuery

Decorator for Memcache Get/Set in python

I have suggested some time back that you could modularize and stitch together fragments of js and css to spit out in one HTTP connection. That makes the page load faster. I also indicated that there ways to tune them by adding cache-control headers. On the server-side however, you could have a memcache layer on the stitching operation. This saves a lot of Resources (CPU) on your server. I will demonstrate this using a python script I use currently on my site to generate the combined js and css fragments. So My stitching method is like this @memize(region="jscss") def joinAndPut(files, ext): res = files.split("/") o = StringIO.StringIO() for f in res: writeFileTo(o, ext + "/" + f + "." + ext) #writes file out ret = o.getvalue() o.close() return ret; The method joinAndPut is * decorated * by memize. What this means is, all calls to joinAndPut are now wrapped (at runtime) with the logic in memize. All you wa...

Faster webpages with fewer CSS and JS

Its easy, have lesser images, css and js files. I will cover reducing number of images in another post. But If you are like me, You always write js and css in a modular fashion. Grouping functions and classes into smaller files (and Following the DRY rule, Strictly!). But what happens is, when you start writing a page to have these css and js files, you are putting them in muliple link rel=style-sheet or script tags. Your server is being hit by (same) number of HTTP Requests for each page call. At this point, its not the size of files but the number server roundtrips on a page that slows your page down. Yslow shows how many server roundtrips happen for css and js. If you have more than one css call and one js call, You are not using your server well. How do you achieve this? By concatinating them and spitting out the content as one stream. So Lets say I have util.js, blog.js and so.js. If I have a blog template that depends on these three, I would call them in three script tags. Wh...