Saturday, June 12, 2010

Twit_World: TWRF : 1.�Husky 2200 briggs and stratton owners manual 2.�Dancing with the stars tour 3.&nbs... http://ping.fm/ZR3hB
Twit_World: TWRF Unfollowing The Folks On Twitter - Liberation!: I was just looking through my Twitter account and... http://ping.fm/upEnZ
Twit_World: TWRF Twitter is talking about YOU…& about things you care about: http://j.mp/cAlUWx: Twitter is talk... http://ping.fm/VulSK
Twit_World: TWRF Fay Nabila: a young girl with a big talent from IMB (Indonesia Mencari Bakat), you can search it ... http://ping.fm/rUceW
Twit_World: TWRF Yesung's and Eunhyuk's twitpic update: Source : Yesung’s and Eunhyuk’s twitter Reuplo... http://ping.fm/yasPJ
Twit_World: TWRF Argentina 1-0 Nigeria http://chilp.it/d8f02d http://ping.fm/b8FCS
Twit_World: TWRF [Update] Yesung's Twitter : Victory Korea!!: On Saturday 12th June 2010 오~~필승 코리아 !!!... http://ping.fm/iouAJ
Twit_World: TWRF A school that gets it: In the world of public education change is always difficult.  In the worl... http://ping.fm/20LPW
Twit_World: TWRF Lee Jung: Lee Jung Soo, South Korean football player. He made the first goal for Korea. Yeay!! An... http://ping.fm/39eBQ
Twit_World: TWRF Korsel: Korsel is the abbreviation of Korea Selatan which means South Korea. They're playing agai... http://ping.fm/L069C
Twit_World: TWRF Will Twitter's Trending Topics be for sale to the highest bidder? http://j.mp/bf8Zl7 /via @Dudema... http://ping.fm/zbxx5
Twit_World: TWRF McCaskill Nearing Enough Votes to Change Secret Hold Rules: Senator Claire McCaskill (D-MO) “sa... http://ping.fm/MzZCn
Twit_World: TWRF I'll blog & tweet about you if you'll share the best image retouching you've ever done: http://j.... http://ping.fm/5I0G1
Twit_World: TWRF Twit A Hit: Top composer and all round lovely chap (and he’s from North Yorkshire to boot) ... http://ping.fm/oURUX
Twit_World: TWRF r/t First time ever: Twitter releases details behind major outage: http://j.mp/aYTZDT /via @Dudem... http://ping.fm/Q7dMF

Tuesday, June 8, 2010

TWRF JPB: Jan Peter Balkenende was the Dutch Prime Minister and he's the leader of the CDA (Christian Dem.. http://chilp.it/0d440e
TWRF idonotsupport: People are tweeting about things they do NOT support. http://chilp.it/3afb80
TWRF Clipe Alejandro: Lady Gaga's new video "Alejandro" premiered today. http://chilp.it/b72228
TWRF Bought Never Say Never: Justin Bieber fans are declaring that they bought "Never Say Never" because .. http://chilp.it/3e8eb4
TWRF Draconisch: Dutch word for excessively strict. Used by dutch politicians. http://chilp.it/c22878
TWRF When The Going Gets Weird:
Twitter is a fantastic resource. It’s also a fantastic place to be.
Most.. http://chilp.it/11c7d1
TWRF Revealed: The Most Beautiful Tweet Ever Tweeted (At Least, According To Stephen Fry):
The most beau.. http://chilp.it/4397dc
TWRF The Twitter Effect: Mashable vs TechCrunch vs BoingBoing:
In May 2009, @Mashable, @TechCrunch and @.. http://chilp.it/8c418a
TWRF You Already Know How To Use It:
For brands and entrepreneurs, success within social media isn’t all.. http://chilp.it/8d3816
TWRF Twitter Gets More Direct With Letting You Know When You’ve Been Blocked:
This may not be a very new.. http://chilp.it/b73bb0
TWRF ABounceNBargainSpacewalk(504)287-4701: Forget HTML5. HTML6, as demonstrated delightfully by this sit.. http://chilp.it/86128c
TWRF Twitter Status - Site Availability Issues: We had a system-side issue this morning�starting aro.. http://buzzup.com/zri6
TWRF An open letter to Slim Thug | TheLoop21.com: An open letter to Slim Thug "How much more 'down' do yo.. http://buzzup.com/zri5
TWRF Sample 5-Megapixel Photos Taken with the Upcoming iPhone 4: Sample 5-megapixel photos taken with the.. http://buzzup.com/zri4
TWRF BP buys first place in Google search results - Technotica- msnbc.com: BP buys first place in Google .. http://buzzup.com/zri2

Massive Twitterfall for iPhone update!



Today we have pushed out a brand new version of Twitterfall for iPhone. Not only has it been completely rewritten from the ground up, but it also has plenty of new features. In particular:




  • It now supports multiple accounts (timeline, mentions, and tweeting), and multiple searches.

  • It's lightning fast to load, and because it's been completely rewritten scrolling is super- smooth, even on an iphone 3G.

  • Tapping on a hashtag shows you a preview of some tweets containing that hashtag.

  • Persistent view of tweets when you close the app.

  • The same great Twitterfall-style timeline view.



We've designed the Twitterfall app to do what you normally use Twitter for really well, rather than adding loads of unnecessary features. Huge thanks to Mike Tomasello for working with us to bring our iPhone app up to date!



Check it out on the App Store, available for just 59p ($0.99), where you will find screenshots and some more information.



Let us know what you think!


http://chilp.it/dfb0f3

From PHP to Erlang

When you use a web app to interact with Twitter you are almost always going via a sort of 'proxy' system, as browsers have lots of security to prevent Cross-Site Scripting Attacks. On Twitterfall, this proxying was performed by a piece of PHP code running via a FastCGI server, as well as other cross-site operations such as shortening URLs. We have encountered some big disadvantages with this method:

  • The Twitter API is slow. At peak times it can take seconds, not milliseconds, to respond. As a result, we have to run lots of PHP processes on our server that have to sit maintaining connections, using up lots of memory (This isn't what PHP was designed for!). When Twitterfall first started, this used to be a huge problem, now it's more of a niggling pain, but still there.

  • The PHP code is basic, it doesn't forward errors to the client (it just silently fails), and is very difficult to debug. It's been around since the start of Twitterfall, so understandably it's got a bit long in the tooth.

  • There's no easy way of monitoring it, and adding monitoring to an already bulky process would just slow it down more. 


So we've worked on a replacement, and we're pleased to say it's been running in production successfully now for quite some time. We've built it on several great components available:



  • Erlang, which is great at running hundreds, thousands, even millions of concurrent processes, great for the slow Twitter API.

  • Mochiweb, a lightweight HTTP server framework for Erlang that powers Facebook Chat, and Hydrometeor.

  • erlang-oauth, an Erlang library for dealing with oAuth requests. We have modified it to support:

  • ibrowse, an HTTP client written in Erlang that replaces Erlang's HTTP client, which we've experienced big problems with when dealing with multiple concurrent requests to the same server.

  • erlang-collectd, an Erlang library for logging data to collectd, a monitoring daemon.


This means: 



  • We can handle loads of concurrent connections to Twitter without breaking a sweat.

  • We can easily monitor the status of the connection between Twitterfall and Twitter, which makes it easier to inform our users when Twitter have a problem (and they think it's us).

  • We can monitor how people use Twitterfall to help improve the user experience.

  • Twitterfall feels more responsive.


Thanks to this new component, we've made the following observations: 



  • The Twitter API errors a lot. Sometimes it will return 404 errors on known API endpoints for no apparent reason, and quite often it will return capacity errors.

  • The Twitter API is really slow when America are awake. Here's a graph of response time when people have made authenticated requests to the Twitter API via Twitterfall:
     

  • People have lists in their Twitterfall that don't exist any more, so we've added a visual cue to show when you have a list in your Twitterfall that doesn't exist.

  • People don't notice their tweets are too long, so we've made it so that you are warned if you try to send a tweet that is more than 140 characters.


Other updates



  • Fixed a bug with loading your lists.

  • Fixed a bug that caused the geolocation map that shows up for geolocated tweets to stop working.

  • Added some new error messages.

http://buzzup.com/zrhx

New blog and fixes

After consistently having issues with Posterous's post formatting, we've moved our blog to Squarespace.


We've also made a few tweaks to Twitterfall, the main one being:


Improved URL shortening




Now, if you shorten a URL in the 'New Tweet' box it will shorten the URL and add the title of the web page you are linking to (when possible). (yeah, the example above is bad, but you get the idea!)


Other changes



  • We've moved the @ symbol out of Twitter links to stay consistent with the Twitter user interface.

  • We've adjusted some of the default colours to improve readability.

  • You can now view tweets in conversations between protected users if you are following those users.

  • We've added a '?present=' URL parameter which allows you to set the presentation mode text immediately when the page loads. This was at request from @bennuk.

  • We've improved some of our Javascript. Source 1, Source 2 (avoiding eval() with YUI Compressor), Source 3.

  • We've fixed the bug with DMs not working. 

http://buzzup.com/w23c
TWRF Twad.ly – Bloggers, let someone sponsor your tweets!: -In-Stream advertising for Bloggers
-Smart way.. http://buzzup.com/zrhv
TWRF TwitFlink – find links tweeted by any twitter user: -Find links tweeted by a twitter user
-No login .. http://buzzup.com/zrhu
TWRF Twimms – send rich text tweets and direct messages: -Send rich multimedia content to twitter users
-.. http://buzzup.com/zrht
TWRF Twt140 – a directory of selected twitter applications: -Lots of twitter applications
-All applicatio.. http://buzzup.com/zbsk
TWRF SpokenTwit – how to voice tweet: -Tweet using voice
-Register your number and start voice tweeting S.. http://buzzup.com/zrhq
TWRF Paper.li – Read Twitter as a newspaper:




paper.li organizes links shared on Tw.. http://buzzup.com/zrhp
TWRF TweJay.com – Making Twitter Talk:





Many people are known to say “Oh, I love T.. http://buzzup.com/zktt
TWRF Saif Ali Khan: ‘I won’t be using Twitter’:




Source: Digital Spy Bo.. http://buzzup.com/zrho
TWRF Twitter for iPhone app suffers from same caching issues as Tweetie 2:




Source: BeatW.. http://buzzup.com/ycjy
TWRF RemoteTweet.co – Twitter Scripts and Web Applications:




Remotetweet.com is a d.. http://buzzup.com/yv4r

Popular Posts

Blog Archive