CodeIgniter Forums
MeNeedz Twitter - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: MeNeedz Twitter (/showthread.php?tid=25789)

Pages: 1 2 3 4 5


MeNeedz Twitter - El Forum - 01-02-2010

[eluser]hugle[/eluser]
[quote author="Demedes" date="1262465735"]Offtopic message, but: What does MeNeedz mean? Thank you :-)[/quote]

IMHO, waldmeister needs, or 'me needs' in other words 'i need' SomelibrarySmile)))))))


MeNeedz Twitter - El Forum - 01-02-2010

[eluser]davidbehler[/eluser]
MeNeedz was originally derived from a project I was working on but I never got to finish it.

It has no real meaning...you might understand it as "i had a need for a certain library and want to share it with you all" Smile


MeNeedz Twitter - El Forum - 01-02-2010

[eluser]Sbioko[/eluser]
)))) Good thoughts ))))


MeNeedz Twitter - El Forum - 01-18-2010

[eluser]Sbioko[/eluser]
Is this possible to get all tweets of the public timeline, not only 20? This will define, if I will use your library. Thank you!


MeNeedz Twitter - El Forum - 01-18-2010

[eluser]davidbehler[/eluser]
No, as far as I know it's not possible as the API will only return the "...20 most recent statuses from non-protected users..."

Check the API Documentation for more info on that: http://apiwiki.twitter.com/Twitter-REST-API-Method:-statuses-public_timeline


MeNeedz Twitter - El Forum - 01-18-2010

[eluser]Yash[/eluser]
Great work !


MeNeedz Twitter - El Forum - 01-24-2010

[eluser]Sbioko[/eluser]
Oh, waldmeister, you were wrong! You can easily get all the twitter statuses of the public timeline or friends timeline. I do it using jQuery, so It can be easily done using PHP+Codeigniter. If you want some help, ask me!

@Retweet :-) Sorry, again!


MeNeedz Twitter - El Forum - 01-25-2010

[eluser]davidbehler[/eluser]
Feel free to share your solution here, I'm always open for improvements of my libraries.


MeNeedz Twitter - El Forum - 01-25-2010

[eluser]Sbioko[/eluser]
Ok. I will do it later.


MeNeedz Twitter - El Forum - 02-27-2010

[eluser]BobbyB[/eluser]
Hi,
I was wondering how to apply this pattern replacement code, I found in another thread to the MeNeedz Twitter library.
Code:
$patterns = array(
            // Detect URL's
            '|([a-z]{3,9}://[a-z0-9-_./?&+]*)|i' => '<a href="$0" target="_blank">$0</a>',
            
            // Detect Email
            '|[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,6}|i' => '<a href="mailto:$0">$0</a>',
            
            // Detect Twitter @usernames
            '|@([a-z0-9-_]+)|i' => '<a href="http://twitter.com/$1" target="_blank">$0</a>',
            
            // Detect Twitter #tags
            '|#([a-z0-9-_]+)|i' => '<a href="http://twitter.com/search?q=#$1" target="_blank">$0</a>'
        );

Thanks in advance for your help!