<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/11080" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2008-02-11T21:39:38-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/11080</id>

		<entry>
		<author><name><![CDATA[thecoollamer]]></name></author>
		<updated>2008-02-11T21:39:38-04:00</updated>

		<published>2008-02-11T21:39:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=80816#p80816</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=80816#p80816"/>
		<title type="html"><![CDATA[googlescore.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=80816#p80816"><![CDATA[
In case this wasn't clear from the script description <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><br><br>This script runs a link:URL search on Google.com and displays the number of pages that link to the URL in the query.<br><br>For example, Google search "link:<a href="http://www.vedetta.com" class="postlink">www.vedetta.com</a>" (without the quotes)<br><a href="http://www.google.com/search?q=link%3Awww.vedetta.com" class="postlink">http://www.google.com/search?q=link%3Awww.vedetta.com</a> <br><br>It is important because it affects the Google Page Rank of the URL, thus its position in Google search results.<br><br>How Google Score works is not the point of this post ( although i would be happy to discuss it if you catch me in <a href="irc://irc.undernet.org/webmaster" class="postlink">irc://irc.undernet.org/webmaster</a> ).<br><br>On the other hand, how googlescore.tcl works is the point. There is a modification that needs to be made in order for the script to work with the new Google.com page.<br><br>Replace this code:<div class="codebox"><p>Code: </p><pre><code>  foreach line [split $buffer \n] {    if {[string match "*Results*of about*.*" $line]} {      regexp {of about &lt;b&gt;([^&lt;]*)&lt;/b&gt;} $line garb score      break    }  }</code></pre></div>With this:<div class="codebox"><p>Code: </p><pre><code>  foreach line [split $buffer \n] {    if {[string match "*Results*of about*.*" $line]} {      regexp {of about &lt;b&gt;(.*?)&lt;/b&gt;} $line garb score          break    }    if {[string match "*Results*of*.*" $line]} {            regexp {of &lt;b&gt;(.*?)&lt;/b&gt;} $line garb score            break    }  }</code></pre></div>The Google Score also varies by country. You would have to replace the Google URL and the string match to reflect the language of the desired country.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9705">thecoollamer</a> — Mon Feb 11, 2008 9:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2006-01-01T05:27:17-04:00</updated>

		<published>2006-01-01T05:27:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58909#p58909</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58909#p58909"/>
		<title type="html"><![CDATA[googlescore]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58909#p58909"><![CDATA[
so that so-called "googlescore" is simply the total number of pages Google has referring to the command argument<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Sun Jan 01, 2006 5:27 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-12-31T23:11:48-04:00</updated>

		<published>2005-12-31T23:11:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58906#p58906</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58906#p58906"/>
		<title type="html"><![CDATA[googlescore]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58906#p58906"><![CDATA[
<blockquote class="uncited"><div>what's googlescore?</div></blockquote><blockquote class="uncited"><div>Script: googlescore.tcl v1.0<br>Author: strikelight ([sL] @ EFNet)<br>Requires: eggdrop1.1.5-eggdrop1.6.x<br><br>Description: retrieves the google 'score' google has<br>             for a specified site.</div></blockquote>BTW, 'they' = StrikeLight<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Sat Dec 31, 2005 11:11 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-12-31T17:40:02-04:00</updated>

		<published>2005-12-31T17:40:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58892#p58892</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58892#p58892"/>
		<title type="html"><![CDATA[googlescore]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58892#p58892"><![CDATA[
what's googlescore?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Sat Dec 31, 2005 5:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2005-12-31T05:52:56-04:00</updated>

		<published>2005-12-31T05:52:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58848#p58848</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58848#p58848"/>
		<title type="html"><![CDATA[googlescore]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58848#p58848"><![CDATA[
Is not 'they' because is just one guy. The 'last modified' date of that script is 03/16/03, when did google released the googlescore?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sat Dec 31, 2005 5:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-12-31T00:22:56-04:00</updated>

		<published>2005-12-31T00:22:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58841#p58841</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58841#p58841"/>
		<title type="html"><![CDATA[googlescore]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58841#p58841"><![CDATA[
this thing must be pretty ancient, requiring 1.1.5 and egghttp... I wonder how did they know about Google, it emerged later <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Sat Dec 31, 2005 12:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-12-30T19:24:21-04:00</updated>

		<published>2005-12-30T19:24:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58822#p58822</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58822#p58822"/>
		<title type="html"><![CDATA[googlescore]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58822#p58822"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>#### Requirements:## 1) Eggdrop1.1.5-Eggdrop1.6.x# 2) egghttp.tcl v1.0.0 or higher (loaded before this script,#                                  can be downloaded from www.TCLScript.com)##### Installation:## Place script in your scripts directory# Edit the Configuration options below# Add the line: source scripts/googlescore.tcl to your eggdrop config# (after the source line containing egghttp.tcl)# Done.###</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Fri Dec 30, 2005 7:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Thunderdome]]></name></author>
		<updated>2005-12-30T11:19:07-04:00</updated>

		<published>2005-12-30T11:19:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58808#p58808</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58808#p58808"/>
		<title type="html"><![CDATA[googlescore]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58808#p58808"><![CDATA[
In the tcl archive I downloaded googlescore.tcl and tried to use it...<br>It does not give any error, it simply does not display a thing...<br><br>Does anybody know if it still works?<br>Happy New Year<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6079">Thunderdome</a> — Fri Dec 30, 2005 11:19 am</p><hr />
]]></content>
	</entry>
	</feed>
