Comments [0]
Definitive O2 Reception Map at Westfields London
Have you ever wondered where you can get O2 coverage at Westfields London?
Well worry no more. With this handy map you can now make and hear calls in certain places safe in the knowledge that something may happen.
In the unlikely event you find somewhere else you can make calls on O2, let me know in the comments.
Comments [2]
How to find the [largest] tables in a PostgreSQL database
Ever wanted to see which tables are taking up the most space in your PostgreSQL database? It's not too difficult:
SELECT t.name, pg_relation_size(t.name) FROM (SELECT tablename as name FROM pg_tables WHERE tablename NOT LIKE 'pg_%' AND tablename NOT LIKE 'sql_%') t ORDER BY pg_relation_size(t.name) DESC;
or if you want it in human readable MB/kB:
SELECT t.name, pg_size_pretty(pg_relation_size(t.name)) FROM (SELECT tablename as name FROM pg_tables WHERE tablename NOT LIKE 'pg_%' AND tablename NOT LIKE 'sql_%') t ORDER BY pg_relation_size(t.name) DESC;
Comments [0]
Comments [0]
Surrounded by sheep. They are getting curuious now they see us most mornings and @officedog doesn't chase
Comments [0]
The missing #13 on @scobleizer 'Worst things startups do'
Robert Scoble wrote an interesting piece today about the worst things startups do. It's well worth a read, but point number 4 'You hire a PR firm' has raised a few questions/discussions and I'd like to expand on it.Now, maybe a PR company was helping them behind the scenes or to take care of leads and all the other stuff that goes with building a company but it wasn’t the first interaction I had with the company.
Comments [0]
I need more cowbell, please help #cowbell #fb
Here's the deal: everybody knows that no musician has truly made it
until they have mastered the cowbell. So to celebrate I'm putting
together the Ultimate Cowbell playlist.
erm, that have done it. So, either tweet your suggestion with #cowbell or add a track to the
comments. I'll take all the suggestions and make a top 20 cowbell
playlist that everyone can enjoy on Friday. If you need an immediate cowbell fix you might want to check out the SNL Cowbell sketch, and if you have access to spotify I'll be building the list here.
Comments [0]






