|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#76
|
||||
|
||||
|
Quote:
__________________
|
|
#77
|
||||
|
||||
|
yes RF, and in no time ........ he'll go pass through u
![]() |
|
#78
|
||||
|
||||
|
Quote:
ho hum!! Still at least it is all for a good cause !! ![]() |
|
#79
|
||||
|
||||
|
rightly said RF
![]() |
|
#80
|
||||
|
||||
|
Thanx Paul
![]() |
|
#81
|
||||
|
||||
|
it's ok Paul, same here and it's working as fast as it can. you can activate another
F@H process and reach 100% CPU if you copy the FAH502-Console.exe file into different folder and execute it from there. it would give you more points, but as far as I've heard, it won't really fold much more. my 3GB comp at home fold in average 100-120 points per day i.e. 240 points WU takes little more than 2 days to complete - sounds very reasonable to me. ![]() |
|
#82
|
||||
|
||||
|
don't know if anyone else has seen these, but the folks over at overclockers - the stat site - has added signature bars with your/your team's folding stats.
http://folding.extremeoverclocking....bablaze&t=12912 i, however, am signature challenged. how do i get this to show up as an image in my signature, instead of just a link?
__________________
Was I able to help you? Please show your appreciation by clicking on the 'scales' icon in the upper right corner of the post... "I know a lot of things, but I don't know a lot of other things..." "If my answers frighten you then you should cease asking scary questions"
|
|
#83
|
||||
|
||||
|
you can't, because that's dynamic image. you'll have to build page with such name for
example: http://www.yourdomain.com/bubbablze_sig.asp that will have such code: Code:
<% Response.Redirect("http://folding.extremeoverclocking.com/sigs/sigimage.php?un=bubbablaze&t=12912") %>
then display it with IMG tags as you display any picture. if you can't host ASP files maybe I'll make something of my own and let others use it, it's really cool to have in the signature. ![]() |
|
#84
|
|||
|
|||
|
Quote:
Wow, that would be fantastic if we all could get that in our sig, I think it's a brilliant idea. |
|
#85
|
||||
|
||||
|
done. go here to create your signature file: http://www.amitbb.co.il/Downloads/t...enerate_Sig.asp just put your folding user name (not your aspfree nick!) and submit, you will see the required IMG code you need to put in the signature. here is the code for Generate_Sig.asp, just in case: Code:
<% Option Explicit %>
<%
Const BASE_URL="http://folding.extremeoverclocking.com/sigs/sigimage.php?un=%user&t=12912"
Sub CheckUsername
Dim strUsername, objFSO, objFile
Dim strFileName, strFilePath
strUsername = Request("username")
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
strFileName = "sig_" & strUsername & ".asp"
strFilePath = Server.MapPath(strFileName)
If objFSO.FileExists(strFilePath) Then
Response.Write("file already exists.<br />")
Else
Set objFile = objFSO.CreateTextFile(strFilePath)
objFile.WriteLine("<" & "%" & " Response.Redirect(""" & Replace(BASE_URL, "%user", strUsername) & """) " & "%" & ">")
objFile.Close
Set objFile=Nothing
Response.Write("file created successfully!<br />")
End If
Set objFSO=Nothing
Response.Write("[IMG]" & GetProtocol & "://" & GetServerName & GetCurrentDir & strFileName & "[/IMG]<br />")
End Sub
Function GetProtocol
Dim strFullProt, arrTemp
strFullProt = Request.ServerVariables("SERVER_PROTOCOL")
arrTemp = Split(strFullProt, "/")
GetProtocol = arrTemp(0)
Erase arrTemp
End Function
Function GetServerName
GetServerName = Request.ServerVariables("SERVER_NAME")
End Function
Function GetCurrentDir
Dim strScriptName, arrTemp, x
Dim result
strScriptName = Request.ServerVariables("SCRIPT_NAME")
arrTemp = Split(strScriptName, "/")
result = "/"
For x=0 To UBound(arrTemp)-1
result = result & arrTemp(x) & "/"
Next
GetC |