TweetyMail: It’s Twitter Over Email. And It Works
TweetyMail: It’s Twitter Over Email. And It Works
To be an interesting third-party Twitter client these days you have to do something that really sets yourself apart. After all, there are no shortage of Twitter clients — and there’s no guarantee that Twitter itself won’t come out with features that eliminate the need to use your client. TweetyMail is a new client that’s a bit different, and Twitter itself is not likely to take it on anytime soon.
TweetyMail is Twitter over email. Yes, it’s that simple. Imagine never having to go to a Twitter client at all. If you want a list of the newest tweets from the people you follow, you just shoot off an email and back a new one comes with the tweets. If you want to tweet yourself, you just shoot off another email. Maybe you want to follow someone? Another email. Retweet? You get the picture.
This works because each Twitter action has a different TweetyMail email address. So if I want to unfollow a user, for example, I would simple email that username to unfollow@tweetymail.com. If I want to send a DM to a user, I would send an email to message@tweetymail.com. And so on.
Obviously, for this to work, you need to link up an email account you control to TweetyMail. But once you do that and verify it’s actually your address, you’re good to go. And you can hook up multiple addresses.
And there’s another benefit to using TweetyMail: improved follower and DM notifications. This is slightly more complicated to set up as TweetyMail gives you a special address that you then have to enter as your main email address on Twitter.com (this is where they figure out which email to send your notifications to). In TweetyMail’s new follower notification email you get things such as one-click follow, a full bio, and most recent tweets. It’s much better than what Twitter itself gives you.
With TweetyMail you can also easily set up alerts for tweets from a certain user, search terms, or mentions. All of these will be sent to your email address until you turn them off.
So yes, with TweetyMail you can completely bypass the need to go to Twitter.com (or any other Twitter client) ever again. TweetyMail currently has all features available for free during its initial testing phase. Eventually, the plan is to charge for some of the features (listed here) and to remove ads. If you’re addicted to email, and live in Gmail all day, this may be worth it for you.
TweetyMail: It’s Twitter Over Email. And It Works
To be an interesting third-party Twitter client these days you have to do something that really sets yourself apart. After all, there are no shortage of Twitter clients — and there’s no guarantee that Twitter itself won’t come out with features that eliminate the need to use your client. TweetyMail is a new client that’s a bit different, and Twitter itself is not likely to take it on anytime soon.
TweetyMail is Twitter over email. Yes, it’s that simple. Imagine never having to go to a Twitter client at all. If you want a list of the newest tweets from the people you follow, you just shoot off an email and back a new one comes with the tweets. If you want to tweet yourself, you just shoot off another email. Maybe you want to follow someone? Another email. Retweet? You get the picture.
This works because each Twitter action has a different TweetyMail email address. So if I want to unfollow a user, for example, I would simple email that username to unfollow@tweetymail.com. If I want to send a DM to a user, I would send an email to message@tweetymail.com. And so on.
Obviously, for this to work, you need to link up an email account you control to TweetyMail. But once you do that and verify it’s actually your address, you’re good to go. And you can hook up multiple addresses.
And there’s another benefit to using TweetyMail: improved follower and DM notifications. This is slightly more complicated to set up as TweetyMail gives you a special address that you then have to enter as your main email address on Twitter.com (this is where they figure out which email to send your notifications to). In TweetyMail’s new follower notification email you get things such as one-click follow, a full bio, and most recent tweets. It’s much better than what Twitter itself gives you.
With TweetyMail you can also easily set up alerts for tweets from a certain user, search terms, or mentions. All of these will be sent to your email address until you turn them off.
So yes, with TweetyMail you can completely bypass the need to go to Twitter.com (or any other Twitter client) ever again. TweetyMail currently has all features available for free during its initial testing phase. Eventually, the plan is to charge for some of the features (listed here) and to remove ads. If you’re addicted to email, and live in Gmail all day, this may be worth it for you.
just testing email posting
|
Command Line using CURL for Updating Profile Images
here is a quick command-line request using cURL that might give you a hint about how to make the
update_profile_background_image and
update_profile_image methods work:
curl -k -F 'image=@filename.jpg;type=image/jpeg' -u yourusername:yourpassword -H 'Expect:' https://twitter.com/account/update_profile_image.xml
The important part here is -F section, which allows the raw data to be sucked out of a graphics file (@filename.jpg) and POSTed to the Twitter
method. For more information about using cURL from the command line
Twitter Search For Grabbing Email (a simple script)
<span style="color: rgb(0, 0, 0); font-weight: bold;"><?php</span>
<span style="color: rgb(0, 0, 136);">$file</span> <span style="color: rgb(51, 153, 51);">=</span> <span style="color: rgb(153, 0, 0);">file_get_contents</span><span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 255);">"http://search.twitter.com/search?q=gmail.com+OR+hotmail.com++OR+<span style="color: rgb(0, 153, 51); font-weight: bold;">%22e</span>mail+me%22"</span><span style="color: rgb(0, 153, 0);">)</span><span style="color: rgb(51, 153, 51);">;</span>
<span style="color: rgb(0, 0, 136);">$file</span> <span style="color: rgb(51, 153, 51);">=</span> <span style="color: rgb(153, 0, 0);">strip_tags</span><span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 136);">$file</span><span style="color: rgb(0, 153, 0);">)</span><span style="color: rgb(51, 153, 51);">;</span>
<span style="color: rgb(153, 0, 0);">preg_match_all</span><span style="color: rgb(0, 153, 0);">(</span>
<span style="color: rgb(0, 0, 255);">"([a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+(?:[A-Z]{2}|com|org|net|gov|mil|biz|info|mobi|name|aero|jobs|museum)\b)siU"</span><span style="color: rgb(51, 153, 51);">,</span>
<span style="color: rgb(0, 0, 136);">$file</span><span style="color: rgb(51, 153, 51);">,</span>
<span style="color: rgb(0, 0, 136);">$matches</span><span style="color: rgb(0, 153, 0);">)</span><span style="color: rgb(51, 153, 51);">;</span>
<span style="color: rgb(153, 0, 0);">print_r</span><span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 136);">$matches</span><span style="color: rgb(0, 153, 0);">)</span><span style="color: rgb(51, 153, 51);">;</span>
<span style="color: rgb(0, 0, 0); font-weight: bold;">?>
</span>
hasil yang diperoleh dari perintah php-cli (command line interface dengan contoh seperti ini)
hal tersebut selanjutnya dilanjutkan dengan perintah atau replace, untuk mendapatkan daftar atau list-nya
hahlo: Twitts from iPhone/iPod Touch, Webbased
Hahlo
Another web based Twitter client designed specifically for iPhones and/or iPod Touches. So no jailbreaking or software installations required – just point Safari to http://hahlo.com. Of the web based clients, this one was the most “buggy” for me. A direct message sent to a friend apparently just disappeared into the ether. With that said, it does have a lot of features and the UI is decent.
Screenshots:
hahlo home | Timeline |
Cetwits: Twitts from Your Windows Mobile6, Windows Mobile Smartphone
ceTwit
Works as advertised. The author tests on an HTC TyTN II (AT&T 8525) and a Samsung Blackjack, but he has tried to make it Smartphone friendly. For what it’s worth, it worked like a charm on my HTC S621. Well, user icons weren’t displayed, but I would consider that a feature not a bug, as it uses less bandwidth (Canadians will appreciate that). Update: I got in touch w/ the author, and he confirmed that the Smartphone version doesn’t support avatars, intentionally. Of all the Windows Mobile Twitter clients I tried, this is the one that remains on my Smartphone. Download here.
Screenshots:
Timeline | Action menu |
Timeline options | Update |
Qwit, Twitter Desktop Application in KDE
Kalau sudah distro linux memakai synaptic, tinggal search qwit, nanti akan muncul seperti ini.Qwit is QT4 cross-platform client for Twitter.
Qwit berjalan diatas KDE, kebetulan saya meng-install di pclinuxos.
Sayang sekali untuk fitur search yang tersedia membuat mypclinuxos "froze" setelah menjalankannya.
Kustomasi terhadap setting-an cukup mudah or easy....... ketika terdapat new tweet akan tampil di desktop kita.
cheers...
BLT - Bash Love Twitter
Author Page / Original Pagemerupakan aplikasi yang berjalan dengan perintah bash, yang ditulis dengan menggunakan PERL.
Lakukan instalasi terhadap module BLT ini di sini . Menurut Blog pembuat BLT ini, anda harus siap-siap untuk "pain instalation" karena banyaknya dependensi module ketika akan menginstal aplikasi twitter yang dijalankan dalam console linux ini.
Setelah berhasil melakukan instalasi, untuk mengetahui keberhasilan dan cara penggunaannya cobalah dengan menggunakan perintah
$ blt -h
good luck!!
Tidak ada komentar :
Posting Komentar