Search Result
Collapse
7 results in 0.0039 seconds.
Keywords
Members
Tags
-
Why can't I assign people to a twitter list?
I am unable to assign people to Twitter lists. I get this error message: There is an error on the page. Is there any way to get an answer from Twitter? -
What network is the easiest to connect with people? Twitter, Facebook, or Linkedin?
This cartoon made me think about this:
[imgnothumb]http://farm4.static.fl ickr.com/3313/3206462547_f19f e0a919.jpg[/imgnothumb]
After having spent some time dealing with this issue for clients and internally @Bytes, i was wondering what other people thought of this? Which one is working out better connecting to other people?
Twitter? Facebook? or Linkedin? -
Looking for the best iPad app to manage twitter account
I am looking for a twitter app that will help me manage my twitter account on the iPad.
I've heard twitter's own tool is really good. Are there any others?Last edited by Niheel; Sep 23 '10, 02:57 AM. -
Trying to access data inside Twitter json object
I am working with the Twitter API and finding it great fun and generally easy to use.
But I am having trouble getting to the data in the trends/current.json file. I am able to loop through the object data with a foreach loop and print it out. But I want to do more with the data than just print it.
Just to be clear, I want to work with the daily and weekly trends but I am using the simpler current trends for this example.... -
How i can have a .htaccess like twitter.com?
Hi
I wanna have a htaccess file that when i go to "www.domain .com/sometext" the page redirect to "www.domain .com/user.php?user=s ometext". It's important that is better that URL not end with slash. I have a problem with my htaccess file:
Code:RewriteEngine on RewriteRule ^(.+)$ user.php?user=$1 [L,R]
-
Remove certain posts from an RSS feed
Hey guys, I'm trying to have my website display my latest post from my twitter RSS feed.
This is very simple and I accomplished it through this code.
Code:<?php $twitterxml = simplexml_load_file("http://twitter.com/statuses/user_timeline/16428755.rss"); $tweet = str_replace("jamwil: ", "", $twitterxml->channel->item[0]->title); echo $tweet; ?>