HN user

seanodonnell

56 karma
Posts2
Comments15
View on HN

very nice, and very nice docs as a whole, is this built on top of an existing documentation framework, or is it a completely in house tool?

At present wispy ignores all 3 letter words, apart from a small list considered "non boring", it also ignores plenty of longer words that are considered generally meaningless, The hashtag idea is good, ill look into that, consider it on my todo list :)

Click detection is something I have been thinking about, its not as hard as you think as the general coordinates of each word are stored when building the cloud in the first place.

It uses jsonp to talk to the twitter api, so if its a rate limit, its on your own ip, are you in a large company or uni by any chance? Otherwise it might just be a slow connection, you dont really know when a jsonp call has failed, so you just have to time it out after a while and assume thats what happened, happens to me every now and again when using it from a phone. If its none of the above, please send me a message using the sites contact form, it tells me a lot about your browser in the process and I can try and replicate the problem.

I'm planning on doing that, and open sourcing quite a bit of the tools/libraries I had to build myself. The contact page is a little fancy in that it sniffs your browsers feature set via javascript and sends it on to me when you send a message, a huge help with tech support :) Its up on github and linked to on the faq page.

Microsoft has a ton of stuff here, originally it was mostly localization work, now they do a bit of everything and have a few big datacentres as well. They do enough that "Microsoft" all on its own is a few percent of the GDP.

The video uploaded to the screens is Displayed on 3 large screens in Dublin City Centre (Ireland) all day, and allows people to request their video be played via sms.

If anyone has any feedback, suggestions I would love to hear them. Version 2 of the website will go live in a few days, and I'm hoping to include any good ideas I hear. Thanks.

len(list) is actually a shortcut for calling list.__len__() , any object that implements the __len__ method is therefore compatible with it. So in practice, len is in fact a method call. Almost every python function that operates on objects is just a similar shorthand.