Jump to content

Newbie Help


Recommended Posts

That's really so nice of you Melba. :)

Thanks again.

Quick question though, what script editor are you using?

2 years ago, if I'm not mistaken I was using an editor where if you press F7, it will go on a step by step process on your script. And you can add a watch with any variable/string you want and see the value real time. Now I can't do it anymore after I upgraded it. I don't know why.

I'm using Sc1 Version 1.79 (SciTE4Autoit3)

Andoy

Link to comment
Share on other sites

  • Moderators

AndoyGomez,

AutoIt has never had a Step debugger like that - you must be thinking of VisualBasic. There are a few step debuggers in the Examples forum, but I believe that they do not work in Vista+ because of the added process security. :)

Like you I use the full version of SciTE4AutoIt3 with a few added bits and pieces that I have coded myself. I just use ConsoleWrite and MsgBox to debug my scripts - and yes they need it just as much as anyone else's. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

AndoyGomez,

AutoIt has never had a Step debugger like that - you must be thinking of VisualBasic. There are a few step debuggers in the Examples forum, but I believe that they do not work in Vista+ because of the added process security. :)

Like you I use the full version of SciTE4AutoIt3 with a few added bits and pieces that I have coded myself. I just use ConsoleWrite and MsgBox to debug my scripts - and yes they need it just as much as anyone else's. :)

M23

No, I'm serious Melba, I was able to use the step debug, my OS that time was XP. I'm certain about it cause I really won't forget that cause it helped me big time and the watches too!!!

I was able to made this back then:

It was for a game I used to play, but yeah, this forum doesn't support gamebots!

But, point is, I was really able to use the step debugger option before!!!

Edited by AndoyGomez
Link to comment
Share on other sites

  • Moderators

AndoyGomez,

To answer the PM (please do not send any more as it is considered rather rude here): :)

Melba, I am studying the script you gave me, cause I'm about to modify it. I need a hand though for a particular line you used.

Here it is: StringRegExp($sHTML, "(?i)(?U)<a name=(.*)><\/a", 3)

I know how the command works, I'm just uncertain with the matching characters switches you used.

I understand (?i) and (?U), these are for Case insensitive flag and "invert greediness of quantifiers" but what does it really mean when you say "invert of greediness of quantifiers? I mean in layman's term?

I also don't understand (.*)><\/a"

???

I tried to looked it up to no avail.

Although in MS-DOS .* means any extension will do

>< not equal

\/a I have no clue

I hope you can help me again Melba

Thanks

Apologies for not explaining the SRE when I posted it - it works like this:

(?i)      - make everything case-insensitive
(?U)      - non-greedy matches - see below for more on this as requested
<a name=  - match text which reads "<a name="
(.*)      - capture (because of the parentheses) any number of characters between the text we matched just before and just after this section - this is what we return
><\/a     - match text which reads "><\/a" 
                - the >< is the literal string ">" & "<", nothing to do with "not equal to"
                - the \/ is an escaped "/" as that character has a special meaning in an SRE (as do \.^*$ and several others)
3         - produce an array of results

Why do we need the "invert greediness" section? Well by default an SRE is greedy and tries to fit in as much as possible between the matched texts. By adding (?U) we ask it fit as little as possible into the match. Try running this script which should make it clear:

;)
#include <Array.au3>

$sText = "abc1111111defabc2222222def"

; First with "greedy" matching
$aArray = StringRegExp($sText, "(?i)abc(.*)def", 3)
_ArrayDisplay($aArray)

; And now with "non-greedy" matching
$aArray = StringRegExp($sText, "(?i)(?U)abc(.*)def", 3)
_ArrayDisplay($aArray)

All understood? :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Hi Sir,

I reviewed your post and the example script you gave me, there's a huge difference between greedy and non-greedy(?U). Thank you for making the clear.

Now, I am stuck again and I need your assistance again sir! :)

<button class="follower-actions-btn" id="randomstring"

Pass

<button class="follower-actions-btn" id=""

Fail

That's the pattern I need to use. But with so many special characters like =, ", and -, I can't make my script work.

I tried following the script you gave me to no avail. This is really harder than I thought.

While waiting for you sir, I'll try to read the help file and research again on the issue.

Thanks Sir Melba.

Link to comment
Share on other sites

  • Moderators

AndoyGomez,

What exactly are you trying to extract - "follower-actions-btn"? :)

If you could post several lines of text together with exactly what you want to extract from them, we can look to see if there is any form of pattern to use in an SRE. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

I found this site ► http://www.autoitscript.com/autoit3/pcrepattern.html

But, it's too much. Too much info. I can't handle it for now. Haha.

Oh well. I guess I'll just wait for your explanation sir.

Thanks

EDIT:

Sorry sir, didn't know you're online. Hold on.

I want to extract <button class="follower-actions-btn" id="randomstring"

whatever is in between <button class="follower-actions-btn" id=" and "

so in this case randomstring, but I don't wanna include blank message where the string is <button class="follower-actions-btn" id=""

Edited by AndoyGomez
Link to comment
Share on other sites

  • Moderators

AndoyGomez,

You can do it like this: :)

#include <Array.au3>

$sText = '<button class="follower-actions-btn" id="randomstring"' & @CRLF & '<button class="follower-actions-btn" id=""'

$aArray = StringRegExp($sText, '(?i)(?U)id="(.+)"', 3)

_ArrayDisplay($aArray)

Explanation:

(?i)(?U)   - you know these
id="       - look for this
(.+)       - capture (because of the parentheses) at least ONE character (because we use + and not *) before we find
"          - the next quote

The trick is the use of (.+) to make sure that there is something to capture. :P

All clear? :)

M23

P.S. If you want to learn about SREs I recommend this site. It takes you through SREs in a very user-friendly fashion and I still refer to it regularly. SREs are by far the hardest thing I have ever tried to learn in coding - they make my brain bleed sometimes - but they are very useful (even indispensible) at times. I woudl also suggest downloading the PCRE Toolkit that GEOSoft has produced - you can find it on his site (look under <Applications - Release Versions>) or in his sig.

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Moderators

AndoyGomez,

A bit less of the "sir", please - makes me feel even older than I am! :P

M23

Edit:

what's the difference between ' and " ?

As far as AutoIt is concerned - nothing. But try using " in place of ' in that script and see what happens. :)

Look in the Help file under <Language Reference - Datatypes - Strings> for a full explanation. :)

Edited by Melba23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Woah, that made sense! haha.

ORIGINAL: $aArray = StringRegExp($sText, '(?i)(?U)id="(.+)"', 3)

I tried removing the '

$aArray = StringRegExp($sText, (?i)(?U)id="(.+)", 3)

ERROR!

I tried inter changing the ' and "

$aArray = StringRegExp($sText, "(?i)(?U)id='(.+)'", 3)

No error but no display! :) Hehehe. Pattern didn't match anything.

Link to comment
Share on other sites

#include <IE.au3>
#include <Array.au3>
$Link = "http://mobile.twitter.com/deftones2011/followers"
$oIE = _IECreate ($Link)
$sHTML = _IEDocReadHTML($oIE)

$aReturn = StringRegExp($sHTML, '(?i)(?U)<button class="follower-actions-btn" id="(.+)" type="submit">', 3)
ConsoleWrite(@error & @CRLF)
_ArrayDisplay($aReturn)

I thought I nailed it, but, it's not displaying any array at all. :/

Edited by AndoyGomez
Link to comment
Share on other sites

  • Moderators

AndoyGomez,

Have you actually looked at the HTML you get from that page? There is nothing to match <button class="follower-actions-btn" id=" in it, so it is hardly surprising that you get no return - which is exactly what happened the last time you tried to use an SRE. :P

This is the HTML I get from that page:

<HTML><HEAD><TITLE>Twitter</TITLE>
<script type=text/javascript>
//<![CDATA[
if (window.top !== window.self) {document.write = "";window.top.location = window.self.location; setTimeout(function(){document.body.innerHTML='';},1);window.self.onload=function(evt){document.body.innerHTML='';};}

//]]>
</SCRIPT>

<script type=text/javascript>
//<![CDATA[
var CJS=CJS||{};CJS.start=function(){CJS.init();CJS.findScripts();CJS.downloadScripts();CJS.defer?"undefined"!=typeof document.readyState&&"complete"===document.readyState?CJS.processScripts():CJS.addHandler(window,"load",CJS.processScripts):(alert("Immediate processing is not currently supported."),CJS.processScripts())};
CJS.findScripts=function(){for(var a=document.getElementsByTagName("script"),b=a.length,c=0;c<b;c++){var d=a[c];if("text/cjs"===CJS.getAttribute(d,"type")&&"undefined"===typeof d.cjsfound)CJS.aScripts[CJS.aScripts.length]=d,d.cjsfound=!0}};CJS.downloadScripts=function(){for(var a=CJS.aScripts.length,b=0;b<a;b++){var c=CJS.aScripts[b];(c=CJS.getAttribute(c,"data-cjssrc")||CJS.getAttribute(c,"cjssrc"))&&CJS.downloadScript(c)}};
CJS.downloadScript=function(a){CJS.bIE||CJS.bOpera?CJS.downloadScriptImage(a):CJS.downloadScriptObject(a)};CJS.downloadScriptImage=function(a){var b=new Image;b.onload=function(){CJS.onloadCallback(a)};b.onerror=function(){CJS.onloadCallback(a)};b.src=a};
CJS.downloadScriptObject=function(a){if("undefined"===typeof document.body||!document.body)setTimeout("CJS.downloadScriptObject('"+a+"')",50);else{var b=document.createElement("object");b.data=a;b.width=0;b.height=0;b.onload=function(){CJS.onloadCallback(a)};b.onerror=function(){CJS.onloadCallback(a)};document.body.appendChild(b)}};CJS.onloadCallback=function(a){CJS.hLoaded[a]=!0};
CJS.execCallback=function(a){0!==CJS.aExecs.length&&(a==CJS.aExecs[0][0]?CJS.aExecs.splice(0,1):CJS.dprint("ERROR: We finished executing a script that wasn't on the queue: "+a),CJS.aExecs.length&&CJS.execScript(CJS.aExecs[0][0],CJS.aExecs[0][1]))};CJS.processScripts=function(){CJS.processNextScript()};
CJS.processNextScript=function(){if(CJS.aScripts.length){var a=CJS.aScripts[0];CJS.curScript=a;var b=CJS.getAttribute(a,"data-cjssrc")||CJS.getAttribute(a,"cjssrc"),c=CJS.getAttribute(a,"data-cjsexec")||CJS.getAttribute(a,"cjsexec");if(b)if("false"===c)CJS.aScripts.splice(0,1),setTimeout(CJS.processNextScript,0);else if(CJS.hLoaded[b])CJS.processExternalScript(a,CJS.processNextScript),CJS.aScripts.splice(0,1);else{if("undefined"===typeof a.startwait)a.startwait=Number(new Date);Number(new Date)-a.startwait<
CJS.maxWait?setTimeout(CJS.processNextScript,CJS.waitival):alert("There was an error loading script: "+b)}else CJS.processInlineScript(a),CJS.aScripts.splice(0,1),setTimeout(CJS.processNextScript,0)}else CJS.findScripts(),CJS.aScripts.length&&(CJS.downloadScripts(),setTimeout(CJS.processNextScript,0))};CJS.processInlineScript=function(a){CJS.curScript=a;CJS.eval(a.text)};
CJS.processExternalScript=function(a,b){var c=CJS.getAttribute(a,"data-cjssrc")||CJS.getAttribute(a,"cjssrc");CJS.execScript(c,b)};
CJS.execScript=function(a,b){if(0===CJS.aExecs.length)CJS.aExecs[CJS.aExecs.length]=[a,b];else if(a!=CJS.aExecs[0][0]){CJS.aExecs[CJS.aExecs.length]=[a,b];return}var c=function(a){switch(typeof a){case "string":a=new Function(a);break;case "function":break;default:a=new Function}return a}(b),d=document.createElement("script");d.onload=d.onreadystatechange=function(){if(!this.readyState||!(this.readyState!="complete"&&this.readyState!="loaded"))CJS.execCallback(a),this.onload=this.onreadystatechange=
null,c()};d.src=a;var e=document.getElementsByTagName("script")[0];e.parentNode.insertBefore(d,e)};CJS.eval=function(a){window.execScript?window.execScript(a):window.eval.call(window,a)};
CJS.init=function(){CJS.bInited=!0;CJS.defer="undefined"===typeof CJS.defer?!0:CJS.defer;CJS.aScripts=[];CJS.hLoaded={};CJS.aExecs=[];CJS.bIE=-1!=navigator.userAgent.indexOf("MSIE");CJS.bChrome=-1!=navigator.userAgent.indexOf("Chrome/");CJS.bOpera=-1!=navigator.userAgent.indexOf("Opera");CJS.curScript=null;CJS.maxWait=1E4;CJS.waitival=200};CJS.getAttribute=function(a,b){for(var c=a.attributes,d=c.length,e=0;e<d;e++){var f=c[e];if(b===f.nodeName)return f.nodeValue}};
CJS.addHandler=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d?!0:!1):a.attachEvent?a.attachEvent("on"+b,c):a["on"+b]||(a["on"+b]=c)};CJS.dprint="undefined"!=typeof console&&"undefined"!=typeof console.log?function(a){console.log("CJS "+Number(new Date)+": "+a)}:function(){};CJS.start();

//]]>
</SCRIPT>
<LINK rel=stylesheet type=text/css href="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/assets/lowend.css" media=screen><LINK rel=apple-touch-icon-precomposed href="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/apple-touch-icon-114.png"><LINK rel=icon type=image/png href="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/ic_fav_alpha_32.png"><LINK rel=apple-touch-startup-image href="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/startup.png">
<META name=HandheldFriendly content=True>
<META name=viewport content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"></HEAD>
<BODY class="  "><avglsdata id=avglsdata function="GetRatingsConfig" result="1::1::1::1"></avglsdata>
<DIV style="Z-INDEX: 12000; POSITION: absolute; WIDTH: 0px; VISIBILITY: hidden; TOP: 0px; LEFT: 0px" id=xplsstransflyover></DIV>
<DIV style="Z-INDEX: 12000; POSITION: absolute; WIDTH: 0px; VISIBILITY: hidden; TOP: 0px; LEFT: 0px" id=xplssflyover></DIV>
<DIV class=timeline-head>
<DIV></DIV><A href="http://mobile.twitter.com/"><IMG class=logo alt=Twitter src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/logo.gif"></A> </DIV><BR id=begin-warning clear=all>
<DIV class=timeline-user-friend>
<TABLE>
<TBODY>
<TR>
<TD><A href="http://mobile.twitter.com/deftones2011"><IMG class=list-tweet-img alt="Deftones' Fan" src="http://a1.twimg.com/profile_images/1273622665/images_1__normal" lowend_override="true"></A> </TD>
<TD>
<DIV class=user-screen-name><STRONG>DefToNeS2011</STRONG> (Deftones' Fan) </DIV></TD></TR></TBODY></TABLE>
<DIV class=timeline-user-following></DIV>
<DIV class=timeline-following><A href="http://mobile.twitter.com/deftones2011/following">Following:2,261</A> <BR><A href="http://mobile.twitter.com/deftones2011/followers">Followers:2,095</A> </DIV>
<DIV class=friend-actions>
<FORM class=user_button method=post action=http://mobile.twitter.com/deftones2011/follow>
<DIV style="PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-TOP: 0px"><INPUT value=07123161ded1b03cbb78 type=hidden name=authenticity_token></DIV><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value=Follow type=submit> </FORM>
<FORM class=user_button method=post action=http://mobile.twitter.com/deftones2011/block>
<DIV style="PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-TOP: 0px"><INPUT value=07123161ded1b03cbb78 type=hidden name=authenticity_token></DIV><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value=Block type=submit> </FORM></DIV></DIV>
<DIV style="TEXT-ALIGN: left" class=timeline-header-friend><A href="http://mobile.twitter.com/deftones2011">Tweets</A> <A href="http://mobile.twitter.com/deftones2011/favorites"><IMG alt=Ic_fav-off src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/ic_fav-off.gif"></A> <A href="http://mobile.twitter.com/deftones2011/messages">DM</A> <A href="http://mobile.twitter.com/deftones2011/about">About</A> </DIV>
<DIV class="timeline-friend followers">
<DIV class=list-tweet-head>Who follows DefToNeS2011 
<DIV style="FLOAT: right" class=span><A href="http://mobile.twitter.com/search/users">Find people</A></DIV></DIV><A name=SnailCharm></A>
<DIV id=user_SnailCharm class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/snailcharm">SnailCharm</A></STRONG> <BR>Snail Charm </DIV>
<DIV class=list-inner-tweet><SPAN class=status>??? ??? ???? ?? ??? ???? ???? ??? ??? ???? ????</SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/snailcharm/status/52665650002411520">about 1 hour ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/SnailCharm><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=mlmhighes></A>
<DIV id=user_mlmhighes class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/mlmhighes">mlmhighes</A></STRONG> <BR>MLM Highes </DIV>
<DIV class=list-inner-tweet><SPAN class=status>Monday almost over!</SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/mlmhighes/status/52570477360726016">about 8 hours ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/mlmhighes><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=Deraugustinus></A>
<DIV id=user_Deraugustinus class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/deraugustinus">Deraugustinus</A></STRONG> <BR>Hahm, See Young </DIV>
<DIV class=list-inner-tweet><SPAN class=status>@<A href="/Yongtae1">Yongtae1</A> @<A href="/veronica2k">veronica2k</A> @<A href="/0337650369">0337650369</A> @<A href="/sfh99q">sfh99q</A> @<A href="/smartari">smartari</A> @<A href="/CuvinQuv">CuvinQuv</A> @<A href="/alroba57">alroba57</A> @<A href="/miiw44">miiw44</A> @<A href="/piff01">piff01</A> @<A href="/MK6553">MK6553</A> (cont) <A href="http://tl.gd/9hu8h6" target=twitter_external_link>http://tl.gd/9hu8h6</A></SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/deraugustinus/status/52682246443896832">7 minutes ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/Deraugustinus><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=Dresspage></A>
<DIV id=user_Dresspage class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/dresspage">Dresspage</A></STRONG> <BR>Dresspage </DIV>
<DIV class=list-inner-tweet><SPAN class=status>Emma Rea and Amberjules clothing online. have a look..<BR><A href="http://www.dresspage.com" target=twitter_external_link>http://www.dresspage.com</A></SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/dresspage/status/51958576800997376">2 days ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/Dresspage><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=AllYapp></A>
<DIV id=user_AllYapp class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/allyapp">AllYapp</A></STRONG> <BR>AllYapp </DIV>
<DIV class=list-inner-tweet><SPAN class=status>Where do they get the seeds to plant seedless watermelons? <A href="/searches?q=%23quote">#quote</A></SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/allyapp/status/51386148420988929">4 days ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/AllYapp><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=elladobi></A>
<DIV id=user_elladobi class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/elladobi">elladobi</A></STRONG> <BR>Ella </DIV>
<DIV class=list-inner-tweet><SPAN class=status>Remember Some Important Things Before You Buy a Condo: In terms of getting a condo, one must realize that this i... <A href="http://bit.ly/eeybVa" target=twitter_external_link>http://bit.ly/eeybVa</A></SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/elladobi/status/52683038177497088">3 minutes ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/elladobi><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=mightyiampower></A>
<DIV id=user_mightyiampower class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/mightyiampower">mightyiampower</A></STRONG> <BR>I Am That I Am </DIV>
<DIV class=list-inner-tweet><SPAN class=status>I AM a circle of light surrounding my body sending energy of vibrant health, wealth, joy to all and all that I AM returns</SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/mightyiampower/status/52678180368162816">23 minutes ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/mightyiampower><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=Luanebentes></A>
<DIV id=user_Luanebentes class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/luanebentes">Luanebentes</A></STRONG> <BR>Luane Bentes </DIV>
<DIV class=list-inner-tweet><SPAN class=status>Quem foi o louko que inventou a escola ? Me digam quero matar ele !</SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/luanebentes/status/52682206551879680">7 minutes ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/Luanebentes><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=scenery_h></A>
<DIV id=user_scenery_h class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/scenery_h">scenery_h</A></STRONG> <BR>JungHo </DIV>
<DIV class=list-inner-tweet><SPAN class=status>@<A href="/LotusRoots">LotusRoots</A> @<A href="/jesus8872">jesus8872</A> ?? ?????</SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/scenery_h/status/52670126012641280">about 1 hour ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/scenery_h><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=mapa70></A>
<DIV id=user_mapa70 class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/mapa70">mapa70</A></STRONG> <BR>maparam </DIV>
<DIV class=list-inner-tweet><SPAN class=status>‘???? ?? 16?’ ??? ?? <A href="http://j.mp/gWYNDt" target=twitter_external_link>http://j.mp/gWYNDt</A> <A href="http://twitpic.com/4ekcu6" target=twitter_external_link>http://twitpic.com/4ekcu6</A></SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/mapa70/status/52664383440035840">about 1 hour ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/mapa70><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=air_cooling></A>
<DIV id=user_air_cooling class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/air_cooling">air_cooling</A></STRONG> <BR>Doro Kline </DIV>
<DIV class=list-inner-tweet><SPAN class=status>air conditioning supplies Take A Look <A href="http://www.gulfshorecooling.com/rheem-klimaanlagen/" target=twitter_external_link>http://www.gulfshorecooling.com/rheem-klimaanlagen/</A></SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/air_cooling/status/52682549100675073">5 minutes ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/air_cooling><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=BraveBeeJ></A>
<DIV id=user_BraveBeeJ class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/bravebeej">BraveBeeJ</A></STRONG> <BR>??? </DIV>
<DIV class=list-inner-tweet><SPAN class=status>???? ??? ???, ??? ???? ????? ???? ?? ?? ??. ??? ??? ??? ???(zero sum)? ???? ??? ????. ??? ??? ?????.</SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/bravebeej/status/52669885981016064">about 1 hour ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/BraveBeeJ><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=hopeyougetthis></A>
<DIV id=user_hopeyougetthis class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/hopeyougetthis">hopeyougetthis</A></STRONG> <BR>Hopeyougetthis.com </DIV>
<DIV class=list-inner-tweet><SPAN class=status>To Chris<BR><A href="http://ping.fm/6pU8f" target=twitter_external_link>http://ping.fm/6pU8f</A></SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/hopeyougetthis/status/52469603552604160">about 14 hours ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/hopeyougetthis><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=captain_ned></A>
<DIV id=user_captain_ned class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/captain_ned">captain_ned</A></STRONG> <BR>Ned's Dread </DIV>
<DIV class=list-inner-tweet><SPAN class=status>@<A href="/blueorbitbrand">blueorbitbrand</A> yes, you are now officially classified as strange. Keep up the good work!</SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/captain_ned/status/52669391279632384">about 1 hour ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/captain_ned><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=MuJukSsaSsa></A>
<DIV id=user_MuJukSsaSsa class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/mujukssassa">MuJukSsaSsa</A></STRONG> <BR>???? </DIV>
<DIV class=list-inner-tweet><SPAN class=status>??? ??? 20% ?????~~ <A href="http://cafe.naver.com/ticketlotto" target=twitter_external_link>http://cafe.naver.com/ticketlotto</A></SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/mujukssassa/status/52642707344076801">about 3 hours ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/MuJukSsaSsa><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=Visitx24></A>
<DIV id=user_Visitx24 class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/visitx24">Visitx24</A></STRONG> <BR>VisitX-24.de </DIV>
<DIV class=list-inner-tweet><SPAN class=status>Heute NEU und JETZT online: Yvette <A href="/searches?q=%23seitensprung">#seitensprung</A>... besuche Sie live im Chat unter <A href="http://www.visitx-24.de/" target=twitter_external_link>http://www.visitx-24.de/</A> Free Sign up !</SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/visitx24/status/40115667445354496">about 1 month ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/Visitx24><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=Box_O_Rocks></A>
<DIV id=user_Box_O_Rocks class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/box_o_rocks">Box_O_Rocks</A></STRONG> <BR>Sisyphus Jr. </DIV>
<DIV class=list-inner-tweet><SPAN class=status><A href="/searches?q=%23listeningto">#listeningto</A> "Tom Jones, Little Green Apples" Tom Jones, the man <A href="http://tuniver.se/artist/Tom%20Jones/album/The%20Greatest%20Hits%20Of%20Tom" target=twitter_external_link>http://tuniver.se/artist/Tom%20Jones/album/The%20Greatest%20Hits%20Of%20Tom</A></SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/box_o_rocks/status/52594167712464896">about 6 hours ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/Box_O_Rocks><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=JustKnowThyself></A>
<DIV id=user_JustKnowThyself class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/justknowthyself">JustKnowThyself</A></STRONG> <BR>Justine Bartleywood </DIV>
<DIV class=list-inner-tweet><SPAN class=status>Vitamin B shots improve energy - For all those ladies who have just given birth take note of the Vitamin B injection. Its like a miracle!</SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/justknowthyself/status/52351065206697984">about 22 hours ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/JustKnowThyself><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=Seek4News></A>
<DIV id=user_Seek4News class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/seek4news">Seek4News</A></STRONG> <BR>Seek4News </DIV>
<DIV class=list-inner-tweet><SPAN class=status>Mark Cuban And Kevin O’Leary Invest In Online Toy Rental Service Toygaroo: Just in case you missed... <A href="http://bit.ly/ifdW7r" target=twitter_external_link>http://bit.ly/ifdW7r</A> Seek4News.com</SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/seek4news/status/52678249825832960">22 minutes ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/Seek4News><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV><A name=Besenfreunde></A>
<DIV id=user_Besenfreunde class=list-tweet>
<DIV>
<DIV><STRONG><A href="http://mobile.twitter.com/besenfreunde">Besenfreunde</A></STRONG> <BR>Besenfreunde e.V. </DIV>
<DIV class=list-inner-tweet><SPAN class=status>Besentermine + Straußi auf Ihr Smartphone + iPhone <A href="http://www.besentermine.de/start_mobil.pl" target=twitter_external_link>http://www.besentermine.de/start_mobil.pl</A> &gt; Deutschland mi… (cont) <A href="http://deck.ly/~Lqnns" target=twitter_external_link>http://deck.ly/~Lqnns</A></SPAN> </DIV>
<DIV class=list-tweet-status><A class=status_link href="/besenfreunde/status/52660307553820673">about 2 hours ago</A> </DIV>
<DIV style="FLOAT: right">
<FORM class=user_button method=get action=http://mobile.twitter.com/Besenfreunde><INPUT id=last_url value=/deftones2011/followers type=hidden name=last_url> <INPUT class=friend-actions-btn value="View Tweets" type=submit> </FORM></DIV></DIV></DIV>
<DIV align=center>
<DIV class=list-more><A href="/deftones2011/followers?cursor=-1&amp;offset=20">more</A></DIV></DIV></DIV>
<DIV id=search_footer>
<FORM class=search method=post action=http://mobile.twitter.com/searches>
<DIV style="PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-TOP: 0px"><INPUT value=07123161ded1b03cbb78 type=hidden name=authenticity_token></DIV>Search Twitter <BR><INPUT id=search_query class=search-form name=search[query]> <INPUT class=search-btns value=Search type=submit> </FORM>
<DIV class=search-middle>Popular Topics</DIV>
<DIV class=search-trends>
<UL id=trend_footer_list>
<LI><A href="http://mobile.twitter.com/searches?q=RIP+Jackie+Chan">RIP Jackie Chan</A> </LI>
<LI><A href="http://mobile.twitter.com/searches?q=Dear+NYC">Dear NYC</A> </LI>
<LI><A href="http://mobile.twitter.com/searches?q=%E2%9D%92Single+%E2%9D%92Taken">?Single ?Taken</A> </LI>
<LI><A href="http://mobile.twitter.com/searches?q=Amazon+Cloud+Player">Amazon Cloud Player</A> </LI>
<LI><A href="http://mobile.twitter.com/searches?q=Murali">Murali</A> </LI></UL></DIV></DIV>
<DIV class=footer><STRONG><A href="/deftones2011/followers">Refresh now</A></STRONG> <BR><BR>
<DIV class=geo-status></DIV><STRONG><A href="http://mobile.twitter.com/search/users">Find people</A></STRONG> - <STRONG><A href="http://support.twitter.com/groups/34-mobile">Help</A></STRONG> - <STRONG><A href="http://mobile.twitter.com/session/new?return_to=%2Fdeftones2011%2Ffollowers">Sign in</A></STRONG> <BR><BR>View twitter in: <BR><STRONG><A href="http://mobile.twitter.com/settings/change_ui">Standard</A></STRONG> - Mobile <BR><BR>© 2011 Twitter </DIV><!-- production -->
<script type=text/javascript>?var twitter_filter_urls = new Array("twitpic.com","twitterfeed.com","twitter.peoplebrowsr.com");
var shortened_urls = new Array("tinyurl.com","3.ly","bit.ly","tiny.cc","short.to","is.gd","tr.im");

var border_colors = new Array( "#00A120;", "#EAA500;", "#F57301;", "#D20003;" );
var background_colors = new Array( "#C3E5CA;", "#FEEFAE;", "#FFD3B0;", "#F5D4C1;" );
var images = new Array ( "linkscanner://safe12.png", "linkscanner://caution12.png", "linkscanner://warning12.png", "linkscanner://blocked12.png" );

var showCleanVerdicts = true;
var showLowRiskVerdicts = true;
var showMedRiskVerdicts = true;

var site_links = null;

// function to find a url in a filter list
function avg_ls_filter_url(url, filter)
{
    var strUrl = new String(url);
    var parts = strUrl.split("/");

    if ((parts == null) || (parts.length < 3))
        return false;

    var domain = parts[2];

    for (var i = 0; i < filter.length; i++)
    {
        if (domain.indexOf(filter[i]) != -1)
        {
            return true;
        }
    }
    return false;
}

// used to save the current hostname
var gHostName = "";

function avg_ls_does_url_contain(url, contain)
{
    if ((url == null) || (url.length < 1))
    {
        return false;
    }

    var strUrl = new String(url);

    // breakup the url to check
    var parts = strUrl.split("/");
    if (parts.length < 3)
    {
        return false;
    }

    var domain= parts[2].toLowerCase();

    if (domain.indexOf(contain) > -1)
    {
        return true;
    }

    return false;
}

///// TWITTER FUNCTIONS /////
function avg_ls_valid_twitter_search(url)
{
    if ((url == null) || (url.length < 1))
        return false;

    var hostMatch = false;

    // split the url based on '/'
    var strUrl = new String(url);
    var parts = strUrl.split("/");

    // need domain and path
    if ((parts == null) || (parts.length < 3))
        return false;

    var domain= parts[2];

    if (domain.indexOf("twitter.com") != -1)
    {
        // save the hostname to use getting links
        gHostName = "twitter.com";
        return true;
    }

    return false;
}

function avg_ls_get_twitter_links(doc)
{
    var links = new Array();
    var allTags = avg_ls_get_anchors(doc);
    var element = null;
    var elemClass = "";
    
    // loop through all 
    for (var i = 0; i < allTags.length; i++)
    {
        element = allTags[i];
        elemClass = element.className;
        
        // initial checks
        
        if ( element.innerHTML.indexOf("%{user}") == 0 )
            continue;
        
        if ((element.href == null) || (element.href.length < 1))
            continue;

        if (avg_ls_does_url_contain(element.href, gHostName))
            continue;
            
        if ( elemClass.length < 1 )
            continue;
            
        // no verdicts on source of twit for example "from TweetDeck"
        if ( elemClass.indexOf("tweet-url web") == 0 &&
             elemClass.indexOf("url") == 0 )
             continue;
             
        if ( !avg_ls_filter_url(element.href, twitter_filter_urls))            
        {
            avg_ls_add_link(links, element, element.href);
        }          
    }

    return links;
}
///// TWITTER FUNCTIONS /////

///// SLASHDOT FUNCTIONS /////

function avg_ls_valid_slashdot_search(url)
{
    if ((url == null) || (url.length < 1))
        return false;

    var hostMatch = false;

    // split the url based on '/'
    var strUrl = new String(url);
    var parts = strUrl.split("/");

    // need domain and path
    if ((parts == null) || (parts.length < 3))
        return false;

    var domain = parts[2];

    if (domain.indexOf("slashdot.org") != -1)
    {
        // save the hostname to use getting links
        gHostName = "slashdot.org";
        return true;
    }
    return false;
}

function avg_ls_get_slashdot_links(doc)
{
    var links = new Array();
    
    var allTags = avg_ls_get_anchors(doc);
    var element = null;
    
    // loop through all 
    for (var i = 0; i < allTags.length; i++)
    {
        element = allTags[i];
        
        // initial checks
        if ((element.href == null) || (element.href.length < 1))
            continue;

        if (avg_ls_does_url_contain(element.href, gHostName))
            continue;
            

        if ( element.href.indexOf("mailto:") != -1 )
            continue;
            
        if ( element.href.indexOf("slashdot.org") != -1 )
            continue;
            
        var parentNode = allTags[i].parentNode;
        if ( parentNode )
        {
            if (parentNode.tagName.toLowerCase() == "div")
            {
                if ( parentNode.id.indexOf("text-") != -1 )
                {
                    avg_ls_add_link(links, element, element.href);
                    continue;
                }
            }
            else 
            {
               var gParent = parentNode.parentNode;
               if ( gParent && gParent.tagName.toLowerCase() == "div" )
               {
                    if ( gParent.id.indexOf("text-") != -1 )
                    {
                        avg_ls_add_link(links, element, element.href);
                        continue;
                    }
               }     
            }
        }    
    }

    return links;
}
///// SLASHDOT FUNCTIONS /////


// add an element an href to the links array
function avg_ls_add_link(links, element, href)
{
    var index = 0;
    if (links != null)
        index = links.length;

    // add the link object
    links[index]            = new Object();
    links[index].element    = element;
    links[index].href       = href;
}

function avg_ls_add_image(doc, element, image)
{
    if ((element == null) || (element.parentNode == null))
    {
        return null;
    }

    // get the proper insertion point for the image
    var insertNode = element.nextSibling;
    while ((insertNode          != null) && 
           (insertNode.tagName  != null) && 
           (insertNode.tagName  == "SPAN"))
    {
        insertNode= insertNode.nextSibling;
    }

    // see if we already have an image
    if ((insertNode     != null) && 
        (insertNode.id  != null) && 
        (insertNode.id.indexOf("avg_ls_image") > -1))
    {
        return null;
    }

    // create a new image
    var img = new Image();
    img.src = image;
    img.border=0;
    img.hspace=5;
    img.id = "avg_ls_image";

    // create the link element 
    var anchor = doc.createElement("A");
    anchor.setAttribute("id", "avg_ls_anch");

    // append the image to the link
    anchor.appendChild(img);

    // insert the node as either a sibling or a child
    if (insertNode != null)
        element.parentNode.insertBefore(anchor, insertNode);
    else
        element.parentNode.appendChild(anchor); 

    return anchor;
}

function avg_ls_reload(e)
{
    avg_ls_process_links(document);
}

function avg_ls_process_links(doc)
{
    if (avg_ls_valid_twitter_search(doc.location.href))
    {
        // returns links but we don't need them
        avg_ls_init_ratings(doc);
        showCleanVerdicts = false;
        site_links = avg_ls_get_twitter_links(doc);
        avg_ls_show_inline_ratings(doc, site_links);
    }
    else if (avg_ls_valid_slashdot_search(doc.location.href))
    {
        avg_ls_init_ratings(doc);
        showCleanVerdicts = false;
        site_links = avg_ls_get_slashdot_links(doc);
        avg_ls_show_inline_ratings(doc, site_links);
    }
}

function avg_ls_onload(e)
{
    var doc = document;

    // process links for the document
    avg_ls_process_links(doc);

    // set the event handler for the data element to listen for load/reloads
    var data_element = doc.getElementById("avglsdata");
    if (data_element)
    {
        // rowexit event used to notify javascript of a page data load
        avg_ls_add_event(data_element, "rowexit", avg_ls_reload, false);
    }
}

function avg_ls_get_anchors(doc)
{
    return doc.getElementsByTagName("a");
}

function avg_ls_show_inline_ratings(doc, site_links)
{
    var flyover = true;
    
    // check each href in site_links
    for (var i = 0; i < site_links.length; i++)
    {
        var href = site_links[i].href;
        var anchor = site_links[i].element;
        
        if ((href == null) || (href.length < 1))
            continue;
            
        if ( avg_ls_has_image(anchor))
        {
            continue;
        }
        else
        {   // get verdict 
            avg_ls_display_image(doc,anchor, avg_ls_call_func("MalsiteCheck", href),false);
            continue;
        }               
    }
}

function avg_ls_call_func(name, param1, param2, param3, param4, param5)
{
    // get the data element
    var avg_ls_data = document.getElementById("avglsdata");
    if ((avg_ls_data == null) || (name == null))
    {
        // data element does not exist
        return;
    }

    // set the attributes
    avg_ls_data.setAttribute("function", name);
    
    if (param1)
        avg_ls_data.setAttribute("param1", param1);
    if (param2)
        avg_ls_data.setAttribute("param2", param2);
    if (param3)
        avg_ls_data.setAttribute("param3", param3);
    if (param4)
        avg_ls_data.setAttribute("param4", param4);
    if (param5)
        avg_ls_data.setAttribute("param5", param5);

    avg_ls_data.fireEvent("onrowenter");

    // get the result
    return avg_ls_data.getAttribute("result");  
}

function avg_ls_display_image(doc, element, result, update)
{
    var strResult = new String(result);
    var parts = strResult.split("::");
    
    if ( parts.length < 3 )
        return;
        
    var nSeverity = parseInt(parts[0]); 
    var riskCategory = parts[1];
    var riskName = parts[2];

    if ( nSeverity == 0 )
    {   // safe shortened urls will get checked at mouse over time
        if ( avg_ls_filter_url(element.href, shortened_urls))
        {
            // add onmouseover for anchors with shortened url
            avg_ls_add_event(element, "mouseover", avg_ls_mouse_over);
            return;
        }
    }

    var image_elem = null;
    var html = "";
    var image = null;
    switch(nSeverity)
    {
        case 0:
            if (showCleanVerdicts)
                image = images[nSeverity];
            break;
        case 1:
            if (showLowRiskVerdicts)
                image = images[nSeverity];
            break;
        case 2:
            if (showMedRiskVerdicts)
                image = images[nSeverity];
            break;
        case 3:
            image = images[nSeverity];
            break;
    }
    
    if ( image == null)
    {
        if (!update )
        {
            return;
        }
        else
        {
            avg_ls_inline_hide_verdict(element);
            return;
        }
    }       
    
    // build the inline html
    var bgColor = background_colors[nSeverity];
    var borderColor = border_colors[nSeverity];
    html += "<div style=background-color:" + bgColor;
    html += "border-color:" + borderColor + ";";
    html += "border-style:solid;";
    html += "border-width:3px;";
    html += "padding:3px;";
    html += "padding-left:8px;";
    html += "padding-right:8px;";
    html += "-moz-border-radius:5px;>";
    html += "<img src=linkscanner://LS_Logo_Results.gif/><br />";
    html += riskCategory + "<br />";
    html += riskName + "<br /></div>";
    
    if ( update )
    {
        // update the image
        if (element && element.firstChild)
        {
            image_elem = element.firstChild;
            element.firstChild.src = image;
        }
    }
    else
    {
         var anchor = avg_ls_add_image(document, element, image);
         if (anchor && anchor.firstChild)
         {
            image_elem = anchor.firstChild; 
         }
    }
    
    if ( image_elem )
    {
        image_elem.setAttribute("title", "");
        image_elem.attachEvent("onmouseover", function() {avg_ls_showinline(image_elem, html)}); 
        image_elem.attachEvent("onmouseout", function() {avg_ls_hideinline()});
    }
}

function avg_ls_inline_hide_verdict(anchor)
{
    var image = avg_ls_get_inline_image(anchor);
    if ( image )
    {
        image.style.visibility = "hidden";
    }
}

function avg_ls_check_and_update(doc, element, new_element)
{
    var result = avg_ls_call_func("GetFinalUrl", element.href);
    if (result)
    {
        avg_ls_display_image(doc,new_element, avg_ls_call_func("MalsiteCheck", result),true);

        // remove the mouseover for this element, no need to fire again
        avg_ls_remove_event(element, "mouseover", avg_ls_mouse_over);
    }
}

function avg_ls_get_inline_image(anchor)
{
    if (anchor)
    {
        var imageElem = null;
        var images = anchor.getElementsByTagName("IMG");
        if (images == null)
            return imageElem;

        for (var i = 0; i < images.length; i++)
        {
            if (images[i].id == "avg_ls_image")
            {
                imageElem = images[i];
                break;  
            }               
        }
        return imageElem;
    }  
}

function avg_ls_has_image(element)
{
    // check next siblings children
    var sibling = element.nextSibling;
    if ((sibling == null) || (sibling.getElementsByTagName == null))
        return false;

    var images = sibling.getElementsByTagName("IMG");
    if (images == null)
        return false;

    for (var i = 0; i < images.length; i++)
    {
        if (images[i].id == "avg_ls_image")
            return true;
    }

    return false;
}

function avg_ls_init_ratings(doc)
{
    // get configuration for verdict displays
    var result = avg_ls_call_func("GetRatingsConfig");
    
    var strResult = new String(result);
    var parts = strResult.split("::");

    if (parts != null && parts.length >= 4)
    {
        showCleanVerdicts   =  (parseInt(parts[0]) == 1) ?  true : false;
        showLowRiskVerdicts =  (parseInt(parts[1]) == 1) ?  true : false;
        showMedRiskVerdicts =  (parseInt(parts[2]) == 1) ?  true : false;
    }
    // setup for displaying the inline popup
    if ( !doc.getElementById("avg_ls_inline_popup") )
    {
        var box = doc.createElement("DIV");
        doc.body.appendChild(box);
        
        box.id = "avg_ls_inline_popup";
        box.style.position = "absolute";
        box.style.zIndex = "9999";
        box.style.padding = "0px 0px";
        box.style.marginLeft = "0px";
        box.style.marginTop = "0px";
        box.style.overflow = "hidden";
        box.style.wordWrap = "break-word";
        box.style.color = "black";
        box.style.fontSize = "10px";
        box.style.textAlign = "left";
        box.style.lineHeight = "130%";
     } 
}    

function avg_ls_mouse_over(e)
{
    if (e && e.srcElement && e.srcElement.href)
    {
        var element = e.srcElement;

        // check if it has an image already
        if (avg_ls_has_image(element))
        {
            return;
        }

        // add the image, returns the anchor not the image
        var new_element = avg_ls_add_image(document, element, "linkscanner://clock12.png");

        // do the check and update in the background
        setTimeout(function() {avg_ls_check_and_update(document, element, new_element);}, 1);
    }
}

function avg_ls_add_event(obj, name, func)
{
    if (obj.addEventListener)
    {
        obj.addEventListener(name, func, false);
        return true;
    }
    else if (obj.attachEvent)
    {
        return obj.attachEvent("on"+name, func);
    }
    else
    {
        return false;
    }
}

function avg_ls_remove_event(obj, name, func)
{
    if (obj.removeEventListener)
    {
        obj.removeEventListener(name, func, false);
        return true;
    }
    else if (obj.detachEvent)
    {
        return obj.detachEvent("on"+name, func); 
    }
    else
    {
        return false;
    }
}

avg_ls_add_event(window, "load", avg_ls_onload);
</SCRIPT>

<script>?/*  
    --------------------------------------------------------------------------
    avg linkscanner inline verdict info popup
    --------------------------------------------------------------------------
*/

// write verdict info and display the inline popup
function avg_ls_showinline(imageElem, msg)
{
    //set verdict info
    var flyover = document.getElementById('avg_ls_inline_popup');
    if (flyover == null)
        return;
    
    flyover.innerHTML = msg;
    flyover.style.width = "auto";  //reset width
    flyover.style.position = "absolute";

    avg_ls_positioninline(imageElem);
}

function avg_ls_positioninline(imageElem)
{
    var flyover = document.getElementById('avg_ls_inline_popup');
    if (flyover == null)
        return;
        
    // relative position of flyover in relation to icon
    var locateX = 0;  // 0=left, 1=right
    var locateY = 0;  // 0=above, 1=below, 2=beside icon
    
    var scrollXWidth = 19;  // approx
    
    // Must know if there is a horizontal scroll bar for Firefox
    // for proper flyover positioning near bottom edge
    var scrollBarX = false; //default for Microsoft IE
    var scrollYWidth = 18;  //normally 17 (+1 top border)
    if (window.innerHeight)
    {   // not MSIE
        try
        {
            scrollYWidth = Math.floor(Math.abs(window.innerHeight - document.documentElement.clientHeight)) + 1;
            scrollBarX = (document.documentElement.clientWidth < document.documentElement.scrollWidth);
        }
        catch(err){}
    }
    
    // get window sizes
    if (window.innerHeight == undefined)    // Microsoft IE
    {
        var windowX = (document.documentElement.clientWidth || document.body.clientWidth) - scrollXWidth;
        var windowY = document.documentElement.clientHeight || document.body.clientHeight;
    }
    else
    {
        var windowX = window.innerWidth - scrollXWidth;
        var windowY = window.innerHeight;
        if (scrollBarX)
            windowY -= scrollYWidth;
    }
    
    // get the flyover dimensions
    if (window.getComputedStyle == undefined)   // Microsoft IE
    {
        var flyoverX = parseInt(flyover.offsetWidth);
        var flyoverY = parseInt(flyover.offsetHeight);
    }
    else
    {
        var style = document.defaultView.getComputedStyle(flyover, null);
        var flyoverX = parseInt(style.width);
        var flyoverY = parseInt(style.height);
    }
    
    flyover.style.width = flyoverX + "px";
    
    // get the bounding rect for image(s)
    var imgRect = imageElem.getBoundingClientRect();

    // half width/height (center) of element bounding rect
    var halfX = (imgRect.right - imgRect.left) / 2;
    var halfY = (imgRect.bottom- imgRect.top) / 2;

    // element the mouse is over, get the center position
    var posX = offsetLeft(imageElem) + halfX;
    var posY = offsetTop(imageElem) + halfY;
    
    var pageOffsetX = 0;
    var pageOffsetY = 0;

    // normalize pos to 0  -- get amount of scrolling in browser window
    var hasParentFrame = false;
    if (window.pageXOffset == undefined)    // Microsoft IE
    {
        pageOffsetX = document.documentElement.scrollLeft || document.body.scrollLeft;
        pageOffsetY = document.documentElement.scrollTop || document.body.scrollLeft;
        var frames = document.frames;
        if (frames)
        {
            for (var i=0; i < frames.length; i++)
            {
                if (frames[i].document.getElementById(imageElem.id))
                {
                    pageOffsetX = frames[i].document.documentElement.scrollLeft;
                    pageOffsetY = frames[i].document.documentElement.scrollTop;
                    hasParentFrame = true;
                    break;
                }
            }
        }
    }
    else
    {
        pageOffsetX = window.pageXOffset;
        pageOffsetY = window.pageYOffset;
    }
    
    posX -= pageOffsetX;
    posY -= pageOffsetY;

    //compensate for Firefox 3
    if (posX < imgRect.left)
        posX = imgRect.left+halfX;

    // setup the offsets
    var offsetX = posX;
    var offsetY = posY;

    // calc where to display on page
    if ((windowX - posX) > posX)
    {
        // right
        offsetX += halfX;
        locateX = 1;
    }
    else
    {
        //left
        offsetX -= (flyoverX + halfX);
    }
    if ((windowY - posY) > posY)
    {
        // below
        if (posY < (windowY/4))
        {
            offsetY -= halfY;
            locateY = 1;
        }
        else
        {
            offsetY -= (flyoverY / 2) - halfY;
            locateY = 2;
        }
    }
    else
    {
        // above
        if ((windowY - posY) < (windowY/4))
        {
            offsetY -= (flyoverY - halfY);
        }
        else
        {
            offsetY -= (flyoverY / 2) + halfY;
            locateY = 2;
        }
    }
    // make sure we aren't off the screen
    if (offsetY < 0)
        offsetY = 0;

    if ((offsetY + flyoverY) > windowY)
        offsetY = windowY - flyoverY;

    // add page offsets back - if not in frame
    if (!hasParentFrame)
    {
        offsetX += pageOffsetX;
        offsetY += pageOffsetY;
    }
    posX += pageOffsetX;
    posY += pageOffsetY;

    var paddedOffsetX = 0; //provide space between icon and flyover
    var padX = 3;
    if (locateX == 0)
        paddedOffsetX = offsetX - padX;
    else
        paddedOffsetX = offsetX + padX;


    // set where to put the flyover
    flyover.style.top = offsetY + "px";
    flyover.style.left = paddedOffsetX + "px";

    avg_ls_displayinline();
}

function avg_ls_displayinline()
{
    var flyover = document.getElementById('avg_ls_inline_popup');
    if (flyover == null)
        return;
    
    // show the flyover
    flyover.style.visibility = "visible";

}

function avg_ls_hideinline()
{
    var flyover = document.getElementById('avg_ls_inline_popup');
    if (flyover == null)
        return;
        
    flyover.visibility = "hidden";  //invisible
    flyover.style.left = "-5000px";
}

function offsetTop(element)
{
    var offset = 0;
    while (element)
    {
        offset += element.offsetTop;
        element = element.offsetParent;
    }

    return offset;
}

function offsetLeft(element)
{
    var offset = 0;
    while (element)
    {
        offset += element.offsetLeft;
        element = element.offsetParent;
    }
    
    return offset;
}</SCRIPT>

<DIV style="Z-INDEX: 9999; POSITION: absolute; TEXT-ALIGN: left; PADDING-BOTTOM: 0px; LINE-HEIGHT: 130%; MARGIN-TOP: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; WORD-WRAP: break-word; COLOR: black; MARGIN-LEFT: 0px; FONT-SIZE: 10px; OVERFLOW: hidden; PADDING-TOP: 0px" id=avg_ls_inline_popup></DIV></BODY></HTML>
.

No 'follower-actions' in there at all that I can find. :)

So I suggest that you now go through all that and see what the SRE is actually supposed to match - because I am getting tired of producing SREs to match non-existent patterns. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

This is weird Melba, this is the html code I got from the link I used, and I did find the "<button class="follower-actions-btn" id=""

I don't understand why we have different html code though. I'm using CHROME btw.

<html> 
<head> 
<script type="text/javascript"> 
//<![CDATA[
if (window.top !== window.self) {document.write = "";window.top.location = window.self.location; setTimeout(function(){document.body.innerHTML='';},1);window.self.onload=function(evt){document.body.innerHTML='';};}
 
//]]>
</script><script type="text/javascript"> 
//<![CDATA[
var CJS=CJS||{};CJS.start=function(){CJS.init();CJS.findScripts();CJS.downloadScripts();CJS.defer?"undefined"!=typeof document.readyState&&"complete"===document.readyState?CJS.processScripts():CJS.addHandler(window,"load",CJS.processScripts):(alert("Immediate processing is not currently supported."),CJS.processScripts())};
CJS.findScripts=function(){for(var a=document.getElementsByTagName("script"),b=a.length,c=0;c<b;c++){var d=a[c];if("text/cjs"===CJS.getAttribute(d,"type")&&"undefined"===typeof d.cjsfound)CJS.aScripts[CJS.aScripts.length]=d,d.cjsfound=!0}};CJS.downloadScripts=function(){for(var a=CJS.aScripts.length,b=0;b<a;b++){var c=CJS.aScripts[b];(c=CJS.getAttribute(c,"data-cjssrc")||CJS.getAttribute(c,"cjssrc"))&&CJS.downloadScript(c)}};
CJS.downloadScript=function(a){CJS.bIE||CJS.bOpera?CJS.downloadScriptImage(a):CJS.downloadScriptObject(a)};CJS.downloadScriptImage=function(a){var b=new Image;b.onload=function(){CJS.onloadCallback(a)};b.onerror=function(){CJS.onloadCallback(a)};b.src=a};
CJS.downloadScriptObject=function(a){if("undefined"===typeof document.body||!document.body)setTimeout("CJS.downloadScriptObject('"+a+"')",50);else{var b=document.createElement("object");b.data=a;b.width=0;b.height=0;b.onload=function(){CJS.onloadCallback(a)};b.onerror=function(){CJS.onloadCallback(a)};document.body.appendChild(B)}};CJS.onloadCallback=function(a){CJS.hLoaded[a]=!0};
CJS.execCallback=function(a){0!==CJS.aExecs.length&&(a==CJS.aExecs[0][0]?CJS.aExecs.splice(0,1):CJS.dprint("ERROR: We finished executing a script that wasn't on the queue: "+a),CJS.aExecs.length&&CJS.execScript(CJS.aExecs[0][0],CJS.aExecs[0][1]))};CJS.processScripts=function(){CJS.processNextScript()};
CJS.processNextScript=function(){if(CJS.aScripts.length){var a=CJS.aScripts[0];CJS.curScript=a;var b=CJS.getAttribute(a,"data-cjssrc")||CJS.getAttribute(a,"cjssrc"),c=CJS.getAttribute(a,"data-cjsexec")||CJS.getAttribute(a,"cjsexec");if(b)if("false"===c)CJS.aScripts.splice(0,1),setTimeout(CJS.processNextScript,0);else if(CJS.hLoaded[b])CJS.processExternalScript(a,CJS.processNextScript),CJS.aScripts.splice(0,1);else{if("undefined"===typeof a.startwait)a.startwait=Number(new Date);Number(new Date)-a.startwait<
CJS.maxWait?setTimeout(CJS.processNextScript,CJS.waitival):alert("There was an error loading script: "+B)}else CJS.processInlineScript(a),CJS.aScripts.splice(0,1),setTimeout(CJS.processNextScript,0)}else CJS.findScripts(),CJS.aScripts.length&&(CJS.downloadScripts(),setTimeout(CJS.processNextScript,0))};CJS.processInlineScript=function(a){CJS.curScript=a;CJS.eval(a.text)};
CJS.processExternalScript=function(a,B){var c=CJS.getAttribute(a,"data-cjssrc")||CJS.getAttribute(a,"cjssrc");CJS.execScript(c,B)};
CJS.execScript=function(a,B){if(0===CJS.aExecs.length)CJS.aExecs[CJS.aExecs.length]=[a,b];else if(a!=CJS.aExecs[0][0]){CJS.aExecs[CJS.aExecs.length]=[a,b];return}var c=function(a){switch(typeof a){case "string":a=new Function(a);break;case "function":break;default:a=new Function}return a}(B),d=document.createElement("script");d.onload=d.onreadystatechange=function(){if(!this.readyState||!(this.readyState!="complete"&&this.readyState!="loaded"))CJS.execCallback(a),this.onload=this.onreadystatechange=
null,c()};d.src=a;var e=document.getElementsByTagName("script")[0];e.parentNode.insertBefore(d,e)};CJS.eval=function(a){window.execScript?window.execScript(a):window.eval.call(window,a)};
CJS.init=function(){CJS.bInited=!0;CJS.defer="undefined"===typeof CJS.defer?!0:CJS.defer;CJS.aScripts=[];CJS.hLoaded={};CJS.aExecs=[];CJS.bIE=-1!=navigator.userAgent.indexOf("MSIE");CJS.bChrome=-1!=navigator.userAgent.indexOf("Chrome/");CJS.bOpera=-1!=navigator.userAgent.indexOf("Opera");CJS.curScript=null;CJS.maxWait=1E4;CJS.waitival=200};CJS.getAttribute=function(a,B){for(var c=a.attributes,d=c.length,e=0;e<d;e++){var f=c[e];if(b===f.nodeName)return f.nodeValue}};
CJS.addHandler=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d?!0:!1):a.attachEvent?a.attachEvent("on"+b,c):a["on"+b]||(a["on"+b]=c)};CJS.dprint="undefined"!=typeof console&&"undefined"!=typeof console.log?function(a){console.log("CJS "+Number(new Date)+": "+a)}:function(){};CJS.start();
 
//]]>
</script> 
<link href="http://a1.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/assets/base.css" media="screen" rel="stylesheet" type="text/css" /> 
<link href='http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/apple-touch-icon-114.png' rel='apple-touch-icon-precomposed' /> 
<link href='http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/ic_fav_alpha_32.png' rel='icon' type='image/png' /> 
<link href='http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/startup.png' rel='apple-touch-startup-image' /> 
<title> 
Twitter
</title> 
<meta content='True' name='HandheldFriendly' /> 
<meta content='width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;' name='viewport' /> 
 
</head> 
<body class='  '> 
<div class='timeline-head'> 
<div></div> 
<a href="http://mobile.twitter.com/"><img alt="Twitter" class="logo" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/logo.gif" /></a> 
</div> 
<br clear='all' id='begin-warning' /> 
<div class='tweetbox'> 
<form action="http://mobile.twitter.com/" class="new_tweet" id="new_tweet" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<div class='tweetbox-head'>What's happening?</div> 
<div class='tweetbox-counter' id='tweetbox_counter'>140</div> 
<textarea class="tweet_input" cols="44" id="tweet_text" name="tweet[text]" rows="2"></textarea> 
<button class="tweet-btns" id="tweet_submit" type="submit">Tweet</button> 
<br /> 
<input id="tweet_in_reply_to_status_id" name="tweet[in_reply_to_status_id]" type="hidden" /> 
<input id="tweet_lat" name="tweet[lat]" type="hidden" /> 
<input id="tweet_long" name="tweet[long]" type="hidden" /> 
<input id="tweet_place_id" name="tweet[place_id]" type="hidden" /> 
<input id="tweet_display_coordinates" name="tweet[display_coordinates]" type="hidden" /> 
<div class='tweetbox-status'> 
<div id='geo-status'></div> 
&nbsp;
<div class='strong' id='geo-promo'></div> 
</div> 
</form> 
</div> 
 
<div class='timeline-header' style='text-align: left'> 
<a href="http://mobile.twitter.com/" accesskey="1" class="">Home</a> 
&nbsp;
<a href="http://mobile.twitter.com/replies" accesskey="6" class="">Mentions</a> 
&nbsp;
<a href="http://mobile.twitter.com/favorites" accesskey="4" class="">Favs</a> 
&nbsp;
<a href="http://mobile.twitter.com/inbox" accesskey="3" class="">Msgs</a> 
</div> 
 
<div class='timeline-friend followers'> 
<div class='list-tweet-head'> 
2,101 people follow you:
<div class='span' style='float:right;'><a href="http://mobile.twitter.com/search/users">Find people</a></div> 
</div> 
<a name='sw751001'></a> 
<div class='list-tweet' id='user_sw751001'> 
<a href="http://mobile.twitter.com/sw751001"><img alt="이수욱" class="list-tweet-img" src="http://a0.twimg.com/profile_images/763853534/1_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/sw751001/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/sw751001/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/sw751001">sw751001</a></strong> 
<br /> 
이수욱
</div> 
<div class='list-inner-tweet'> 
<span class="status">아이폰5 한국에서 언제 출시 될까요 ? 설문에 투표하셨습니다 <a href="http://bit.ly/hiNpaH" target="twitter_external_link">http://bit.ly/hiNpaH</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/sw751001/status/52636899126427648" class="status_link">about 4 hours ago</a> 
</div> 
</div> 
</div> 
<a name='mango825'></a> 
<div class='list-tweet' id='user_mango825'> 
<a href="http://mobile.twitter.com/mango825"><img alt="Mango" class="list-tweet-img" src="http://a2.twimg.com/profile_images/1236558034/mango_icon2_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/mango825/follow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="mango825" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_follow" class="button_icon" src="http://a1.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_follow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/mango825/block" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_block" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_block.gif" /><span>Block</span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/mango825">mango825</a></strong> 
<br /> 
Mango
</div> 
<div class='list-inner-tweet'> 
<span class="status">すげー!ありがタイ! 「タイの発電所、日本に丸ごと貸し出しへ」 News i - TBSの動画ニュースサイト <a href="http://t.co/QsCYy1s" target="twitter_external_link">http://t.co/QsCYy1s</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/mango825/status/52687483611250689" class="status_link">10 minutes ago</a> 
</div> 
</div> 
</div> 
<a name='StraightSimon'></a> 
<div class='list-tweet' id='user_StraightSimon'> 
<a href="http://mobile.twitter.com/straightsimon"><img alt="Str8 Simon Cowell" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1227829247/straightsimon_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/straightsimon/follow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="StraightSimon" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_follow" class="button_icon" src="http://a1.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_follow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/straightsimon/block" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_block" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_block.gif" /><span>Block</span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/straightsimon">StraightSimon</a></strong> 
<br /> 
Str8 Simon Cowell
</div> 
<div class='list-inner-tweet'> 
<span class="status">Phew! ..leaving Cipriani's on saturday night, we ALMOST got dragged into the London demos - Paul thought 'UK Uncut' was a gay mag! ;)</span> 
</div> 
<div class='list-tweet-status'> 
<a href="/straightsimon/status/52525688070209536" class="status_link">about 11 hours ago</a> 
</div> 
</div> 
</div> 
<a name='Kimi_Macdonnell'></a> 
<div class='list-tweet' id='user_Kimi_Macdonnell'> 
<a href="http://mobile.twitter.com/kimi_macdonnell"><img alt="Kimi _Macdonnell" class="list-tweet-img" src="http://a3.twimg.com/profile_images/1189653238/31677919727_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/kimi_macdonnell/follow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="Kimi_Macdonnell" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_follow" class="button_icon" src="http://a1.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_follow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/kimi_macdonnell/block" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_block" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_block.gif" /><span>Block</span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/kimi_macdonnell">Kimi_Macdonnell</a></strong> 
<br /> 
Kimi _Macdonnell
</div> 
<div class='list-inner-tweet'> 
<span class="status">Always the beautiful answer who asks a more beautiful question. -E E Cummings</span> 
</div> 
<div class='list-tweet-status'> 
<a href="/kimi_macdonnell/status/52664184365793280" class="status_link">about 2 hours ago</a> 
</div> 
</div> 
</div> 
<a name='Stidgetwit'></a> 
<div class='list-tweet' id='user_Stidgetwit'> 
<a href="http://mobile.twitter.com/stidgetwit"><img alt="WebHosting" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1280114052/Holland_tattoo_pic_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/stidgetwit/follow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="Stidgetwit" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_follow" class="button_icon" src="http://a1.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_follow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/stidgetwit/block" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_block" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_block.gif" /><span>Block</span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/stidgetwit">Stidgetwit</a></strong> 
<br /> 
WebHosting
</div> 
<div class='list-inner-tweet'> 
<span class="status">Adding the most interactive tweeps and unfollowing inactives using Tweepi's geeky Twitter tools. <a href="http://tweepi.com/?0" target="twitter_external_link">http://tweepi.com/?0</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/stidgetwit/status/52672975052345344" class="status_link">about 1 hour ago</a> 
</div> 
</div> 
</div> 
<a name='skapd'></a> 
<div class='list-tweet' id='user_skapd'> 
<a href="http://mobile.twitter.com/skapd"><img alt="skapd" class="list-tweet-img" src="http://a2.twimg.com/profile_images/1290170089/phpYUtZ5L_normal" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/skapd/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/skapd/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/skapd">skapd</a></strong> 
<br /> 
skapd
</div> 
<div class='list-inner-tweet'> 
<span class="status">날은화창한데실내는엄청서늘하네요ㅡㅡ춥당;</span> 
</div> 
<div class='list-tweet-status'> 
<a href="/skapd/status/52615327124688896" class="status_link">about 5 hours ago</a> 
</div> 
</div> 
</div> 
<a name='SnailCharm'></a> 
<div class='list-tweet' id='user_SnailCharm'> 
<a href="http://mobile.twitter.com/snailcharm"><img alt="Snail Charm" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1082317730/Snail-Anatomy-1_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/snailcharm/follow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="SnailCharm" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_follow" class="button_icon" src="http://a1.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_follow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/snailcharm/block" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_block" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_block.gif" /><span>Block</span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/snailcharm">SnailCharm</a></strong> 
<br /> 
Snail Charm
</div> 
<div class='list-inner-tweet'> 
<span class="status">경제적 효과는 생각지도 않고 무작정 건설해서 유령공항 만들면 적자는 무엇으로 메꾸나?</span> 
</div> 
<div class='list-tweet-status'> 
<a href="/snailcharm/status/52665650002411520" class="status_link">about 2 hours ago</a> 
</div> 
</div> 
</div> 
<a name='mlmhighes'></a> 
<div class='list-tweet' id='user_mlmhighes'> 
<a href="http://mobile.twitter.com/mlmhighes"><img alt="MLM Highes" class="list-tweet-img" src="http://a1.twimg.com/profile_images/1144270991/MLM_Logo1_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/mlmhighes/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/mlmhighes/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/mlmhighes">mlmhighes</a></strong> 
<br /> 
MLM Highes
</div> 
<div class='list-inner-tweet'> 
<span class="status">Monday almost over!</span> 
</div> 
<div class='list-tweet-status'> 
<a href="/mlmhighes/status/52570477360726016" class="status_link">about 8 hours ago</a> 
</div> 
</div> 
</div> 
<a name='Deraugustinus'></a> 
<div class='list-tweet' id='user_Deraugustinus'> 
<a href="http://mobile.twitter.com/deraugustinus"><img alt="Hahm, See Young" class="list-tweet-img" src="http://a2.twimg.com/profile_images/1133786169/_ED_95_9C_EA_B5_AD_ED_83_9C_EA_B7_B9_EA_B8_B0092_5B1_5D_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/deraugustinus/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/deraugustinus/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/deraugustinus">Deraugustinus</a></strong> 
<br /> 
Hahm, See Young
</div> 
<div class='list-inner-tweet'> 
<span class="status">@<a href="/Yongtae1">Yongtae1</a>  @<a href="/veronica2k">veronica2k</a> @<a href="/0337650369">0337650369</a>  @<a href="/sfh99q">sfh99q</a>  @<a href="/smartari">smartari</a>  @<a href="/CuvinQuv">CuvinQuv</a> @<a href="/alroba57">alroba57</a> @<a href="/miiw44">miiw44</a>   @<a href="/piff01">piff01</a>  @<a href="/MK6553">MK6553</a>  (cont) <a href="http://tl.gd/9hu8h6" target="twitter_external_link">http://tl.gd/9hu8h6</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/deraugustinus/status/52682246443896832" class="status_link">31 minutes ago</a> 
</div> 
</div> 
</div> 
<a name='Dresspage'></a> 
<div class='list-tweet' id='user_Dresspage'> 
<a href="http://mobile.twitter.com/dresspage"><img alt="Dresspage" class="list-tweet-img" src="http://a1.twimg.com/profile_images/1265529895/dress_page_logo_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/dresspage/follow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="Dresspage" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_follow" class="button_icon" src="http://a1.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_follow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/dresspage/block" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_block" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_block.gif" /><span>Block</span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/dresspage">Dresspage</a></strong> 
<br /> 
Dresspage
</div> 
<div class='list-inner-tweet'> 
<span class="status">Emma Rea and Amberjules clothing online. have a look..<br /><a href="http://www.dresspage.com" target="twitter_external_link">http://www.dresspage.com</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/dresspage/status/51958576800997376" class="status_link">2 days ago</a> 
</div> 
</div> 
</div> 
<a name='AllYapp'></a> 
<div class='list-tweet' id='user_AllYapp'> 
<a href="http://mobile.twitter.com/allyapp"><img alt="AllYapp" class="list-tweet-img" src="http://a0.twimg.com/profile_images/684367726/letter_A_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/allyapp/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/allyapp/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/allyapp">AllYapp</a></strong> 
<br /> 
AllYapp
</div> 
<div class='list-inner-tweet'> 
<span class="status">Where do they get the seeds to plant seedless watermelons? <a href="/searches?q=%23quote">#quote</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/allyapp/status/51386148420988929" class="status_link">4 days ago</a> 
</div> 
</div> 
</div> 
<a name='elladobi'></a> 
<div class='list-tweet' id='user_elladobi'> 
<a href="http://mobile.twitter.com/elladobi"><img alt="Ella" class="list-tweet-img" src="http://a3.twimg.com/profile_images/1224111256/30_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/elladobi/follow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="elladobi" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_follow" class="button_icon" src="http://a1.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_follow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/elladobi/block" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_block" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_block.gif" /><span>Block</span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/elladobi">elladobi</a></strong> 
<br /> 
Ella
</div> 
<div class='list-inner-tweet'> 
<span class="status">Remember Some Important Things Before You Buy a Condo: In terms of getting a condo, one must realize that this i... <a href="http://bit.ly/eeybVa" target="twitter_external_link">http://bit.ly/eeybVa</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/elladobi/status/52683038177497088" class="status_link">27 minutes ago</a> 
</div> 
</div> 
</div> 
<a name='mightyiampower'></a> 
<div class='list-tweet' id='user_mightyiampower'> 
<a href="http://mobile.twitter.com/mightyiampower"><img alt="I Am That I Am" class="list-tweet-img" src="http://a0.twimg.com/profile_images/473650512/butterfly_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/mightyiampower/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/mightyiampower/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/mightyiampower">mightyiampower</a></strong> 
<br /> 
I Am That I Am
</div> 
<div class='list-inner-tweet'> 
<span class="status">I AM a circle of light surrounding my body sending energy of vibrant health, wealth, joy to all and all that I AM returns</span> 
</div> 
<div class='list-tweet-status'> 
<a href="/mightyiampower/status/52678180368162816" class="status_link">about 1 hour ago</a> 
</div> 
</div> 
</div> 
<a name='Luanebentes'></a> 
<div class='list-tweet' id='user_Luanebentes'> 
<a href="http://mobile.twitter.com/luanebentes"><img alt="Luane Bentes" class="list-tweet-img" src="http://a3.twimg.com/sticky/default_profile_images/default_profile_6_normal.png" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/luanebentes/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/luanebentes/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/luanebentes">Luanebentes</a></strong> 
<br /> 
Luane Bentes
</div> 
<div class='list-inner-tweet'> 
<span class="status">Quem foi o louko que inventou a escola ? Me digam quero matar ele !</span> 
</div> 
<div class='list-tweet-status'> 
<a href="/luanebentes/status/52682206551879680" class="status_link">31 minutes ago</a> 
</div> 
</div> 
</div> 
<a name='scenery_h'></a> 
<div class='list-tweet' id='user_scenery_h'> 
<a href="http://mobile.twitter.com/scenery_h"><img alt="JungHo" class="list-tweet-img" src="http://a1.twimg.com/profile_images/1290784313/_________normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/scenery_h/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/scenery_h/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/scenery_h">scenery_h</a></strong> 
<br /> 
JungHo
</div> 
<div class='list-inner-tweet'> 
<span class="status">할껀많은데 식곤증때문에 피곤ㅜ</span> 
</div> 
<div class='list-tweet-status'> 
<a href="/scenery_h/status/52689257822822400" class="status_link">3 minutes ago</a> 
</div> 
</div> 
</div> 
<a name='mapa70'></a> 
<div class='list-tweet' id='user_mapa70'> 
<a href="http://mobile.twitter.com/mapa70"><img alt="maparam" class="list-tweet-img" src="http://a1.twimg.com/profile_images/755822574/_____1_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/mapa70/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/mapa70/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/mapa70">mapa70</a></strong> 
<br /> 
maparam
</div> 
<div class='list-inner-tweet'> 
<span class="status">‘미군기지 이전 16조’ 한국이 낸다 <a href="http://j.mp/gWYNDt" target="twitter_external_link">http://j.mp/gWYNDt</a> <a href="http://twitpic.com/4ekcu6" target="twitter_external_link">http://twitpic.com/4ekcu6</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/mapa70/status/52664383440035840" class="status_link">about 2 hours ago</a> 
</div> 
</div> 
</div> 
<a name='air_cooling'></a> 
<div class='list-tweet' id='user_air_cooling'> 
<a href="http://mobile.twitter.com/air_cooling"><img alt="Doro Kline" class="list-tweet-img" src="http://a3.twimg.com/profile_images/842669733/air_cooling_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/air_cooling/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/air_cooling/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/air_cooling">air_cooling</a></strong> 
<br /> 
Doro Kline
</div> 
<div class='list-inner-tweet'> 
<span class="status">home air conditioning installation Take A Look  
<a href="http://www.gulfshorecooling.com/las-vacantes-actuales/" target="twitter_external_link">http://www.gulfshorecooling.com/las-vacantes-actuales/</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/air_cooling/status/52689397761581056" class="status_link">2 minutes ago</a> 
</div> 
</div> 
</div> 
<a name='BraveBeeJ'></a> 
<div class='list-tweet' id='user_BraveBeeJ'> 
<a href="http://mobile.twitter.com/bravebeej"><img alt="렛잇비" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1290834364/myProfileImage_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/bravebeej/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/bravebeej/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/bravebeej">BraveBeeJ</a></strong> 
<br /> 
렛잇비
</div> 
<div class='list-inner-tweet'> 
<span class="status">트윗에게 좋은별 다섯개, 나쁜별 다섯개로 팔로어들이 평가하게 하면 좋을 텐데. 적어도 좋은말 나쁜말 제로썸(zero sum)은 되야하지 않겠나 싶습니다. 세상의 이치가 그러니까요.</span> 
</div> 
<div class='list-tweet-status'> 
<a href="/bravebeej/status/52669885981016064" class="status_link">about 1 hour ago</a> 
</div> 
</div> 
</div> 
<a name='hopeyougetthis'></a> 
<div class='list-tweet' id='user_hopeyougetthis'> 
<a href="http://mobile.twitter.com/hopeyougetthis"><img alt="Hopeyougetthis.com" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1266198268/Hope_copy_normal.png" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/hopeyougetthis/follow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="hopeyougetthis" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_follow" class="button_icon" src="http://a1.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_follow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/hopeyougetthis/block" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_block" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_block.gif" /><span>Block</span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/hopeyougetthis">hopeyougetthis</a></strong> 
<br /> 
Hopeyougetthis.com
</div> 
<div class='list-inner-tweet'> 
<span class="status">To Chris<br /><a href="http://ping.fm/6pU8f" target="twitter_external_link">http://ping.fm/6pU8f</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/hopeyougetthis/status/52469603552604160" class="status_link">about 15 hours ago</a> 
</div> 
</div> 
</div> 
<a name='captain_ned'></a> 
<div class='list-tweet' id='user_captain_ned'> 
<a href="http://mobile.twitter.com/captain_ned"><img alt="Ned's Dread" class="list-tweet-img" src="http://a0.twimg.com/profile_images/1280539841/Captain_Ned_Dread_2_normal.jpg" /></a> 
<div class='inner-w-img'> 
<form action="http://mobile.twitter.com/captain_ned/unfollow" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="_method" type="hidden" value="delete" /><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_unfollow" class="button_icon" src="http://a2.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_unfollow.gif" /><span></span></div></button> 
</form> 
 
<div class='btn-spacer'></div> 
<form action="http://mobile.twitter.com/captain_ned/notifications" class="user_button" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<input id="last_url" name="last_url" type="hidden" value="/deftones2011/followers" /> 
<button class="follower-actions-btn" id="" type="submit"><div class="friend-actions-btn-inner"><img alt="Ic_smsoff" class="button_icon" src="http://a3.twimg.com/twitter-mobile/e22907fe94cf55760462cffd0603bfbc29b963f1/images/sprites/ic_smsoff.gif" /><span></span></div></button> 
</form> 
 
 
<div> 
<strong><a href="http://mobile.twitter.com/captain_ned">captain_ned</a></strong> 
<br /> 
Ned's Dread
</div> 
<div class='list-inner-tweet'> 
<span class="status">likes Anything That Way by Buffalo Tom on Ping <a href="http://t.co/hnwUVfY" target="twitter_external_link">http://t.co/hnwUVfY</a> <a href="/searches?q=%23iTunes">#iTunes</a></span> 
</div> 
<div class='list-tweet-status'> 
<a href="/captain_ned/status/52684545509691392" class="status_link">21 minutes ago</a> 
</div> 
</div> 
</div> 
 
<div align='center'> 
<div class='list-more'><a href="/deftones2011/followers?cursor=-1&amp;offset=20">more</a></div> 
</div> 
</div> 
<div class='timeline-user'> 
<a href="http://mobile.twitter.com/deftones2011"><img alt="Deftones' Fan" class="list-tweet-img" src="http://a1.twimg.com/profile_images/1273622665/images_1__normal" /></a> 
<div class='inner-w-img'> 
<div> 
<b>DefToNeS2011</b> 
</div> 
<div> 
<a href="http://mobile.twitter.com/deftones2011/following">Following&nbsp;<strong>35</strong></a>,
<a href="http://mobile.twitter.com/deftones2011/followers">Followers
<strong>2</strong> 
</a></div> 
<div class='timeline-user-status'> 
<b>Last update:</b> 
<span class="status">@<a href="/AndoyGomez" class="twitter-atreply">AndoyGomez</a> :)</span> 
</div> 
</div> 
</div> 
 
<div id='search_footer'> 
<form action="http://mobile.twitter.com/searches" class="search" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
Search Twitter
<br /> 
<input class="search-form" id="search_query" name="search[query]" size="20" type="text" value="" /> 
<button class="search-btns" id="" type="submit">Search</button> 
</form> 
<div class='search-middle'>Popular Topics</div> 
<div class='search-trends'> 
<ul id='trend_footer_list'> 
<li><a href="http://mobile.twitter.com/searches?q=RIP+Jackie+Chan">RIP Jackie Chan</a></li> 
<li><a href="http://mobile.twitter.com/searches?q=Dear+NYC">Dear NYC</a></li> 
<li><a href="http://mobile.twitter.com/searches?q=%E2%9D%92Single+%E2%9D%92Taken">❒Single ❒Taken</a></li> 
<li><a href="http://mobile.twitter.com/searches?q=Amazon+Cloud+Player">Amazon Cloud Player</a></li> 
<li><a href="http://mobile.twitter.com/searches?q=Malinga">Malinga</a></li> 
</ul> 
</div> 
</div> 
 
 
<div class='footer'> 
<div class='geo-status'></div> 
<strong><a href="http://mobile.twitter.com/search/users">Find people</a></strong> 
-
<strong><a href="http://support.twitter.com/groups/34-mobile">Help</a></strong> 
-
<strong><a href="http://mobile.twitter.com/session/destroy">Sign out</a></strong> 
-
  <form action="http://mobile.twitter.com/settings/profile_images" class="profile_image" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6c05fe14de304697c088" /></div> 
<button class="link-button link-color" id="" type="submit">Images off</button> 
  </form> 
<br /> 
<br /> 
View twitter in:
<br /> 
<strong><a href="http://mobile.twitter.com/settings/change_ui">Standard</a></strong> 
-
Mobile
<br /> 
<br /> 
&copy; 2011 Twitter
</div> 
</body> 
<!-- production --> 
</html>
Edited by AndoyGomez
Link to comment
Share on other sites

  • Moderators

AndoyGomez,

If you get that HTML then the code you posted earlier should find the names - it does for me when I use it on the HTML you posted. :)

And I have no idea why we get differnt HTML - perhaps because you are logged it? :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Hi Melba,

Somehow, consolewrite is returning value 1, meaning array is invalid or no matches. I don't understand why... :)

EDIT:

This is really weird. Html is changing. But you're right, the script is actually correct.

Thank you again so much Melba! :)

Edited by AndoyGomez
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...