I dont remember the name brand ,It was out of one I got from wal-mart,I did get a igloo cooler to replace the one I dismantled,is was 20$ half the price of the one I tore up :P,Good thing about em,at least they come with a heatsink/fan combo
Yes,all it is basically is a transistor,one side cold one side hot,Actually the cooler you cant get the hot side the colder the cold side will be.. I took this peltier off of a 6 pack cooler,was in doubt that it would even cool my gpu,I was hopeing it would get it colder than it does,But thats not the case Currently I can run this one off of my computers PS,it runs on 12volts and pulls about 3 amps,Not a problem for a 550 power supply..
I was going to attach a water block to the hot side,But didnt want to go through the trouble of all that :P water that condesates is not as harmful as say tap water,Condensation does not contain all the minerals/impurities that tap water does,and is there for not as conductive,I have some good cork tape/sealant stuff,thats what I used all around my cpu cause it sweats some,and was dripping on my video card,the video card the way it is mounted,if the peltier creates a little water,it should just fall to the bottom of the case I did put cork insulator on top of the card though,on the back of the gpu basically..
Just wish this thing would cool more:irked: Think I may have to get on ebay,and get one of those peltier/thermostat setups... These things are really neat to play with,The one I am useing would make ice,but not with a load on it
For video cards,or cpu's? If so,I would like to see what you have,I attached one to my video card,and used a old heatsink/fan combo to displace the heat the peltier makes,gpu runs anywhere from 80 to 84F (26~28c) and about 100f say in live for speed (38c),My cpu cooling thats a whole nother story,chilled water cooling via phase change system,But I wont get into that now,Heres the video card
Well it just plain amaze's me that they can put all those parts in that tiny thing... Maybe I'll go smack one of my old intels to see what I can see :P
in the early demo days,I got so irritated with the idiots,that I would log ip's,Then when a dumb*** came in,and I baned him/kicked w/e,I would take his ip,do a whois on it,and block his whole ip's ip range from my firewall,Just incase he didnt have a dynamic ip,Guess that meant that his whole city coldnt connect to my server,but it sure as hell cut down on idiots,and the server would still fill up... Dont just ban,block ip blocks
Must be nice not to have code enforcement up your A** :P,Of course theres not always a need to call code out on all jobs here,Just if you can get away with it or not .. I do electrical heating and air,plumbing,and it seems as if thet are real strict about codes here,I hate it...Nit pickers :P,
Copper colored plastic,wow lol,wonder if I could use that to cheat the code guys,lol...
Would this be right? Cause its not showing my online status?
foreach ($LfsUsers as $LfsUser => $LfsHost) { switch (strtolower($LfsUser)) { case "[M.B]Budman Pootie": case "team member LFS Name": case "team member elecc": case "team member LFS Name": case "team member LFS Name": case "team member LFS Name": $LfsUser = remove_colour_codes($LfsUser); $LfsHost = remove_colour_codes($LfsHost); echo "<tr bgcolor='#FFFFFF'>"; echo "<td>$LfsUser</td>"; echo"<td>$LfsHost</td></tr>"; $TeamMembers + 1;
Full not much changed,just so that someone with knowledge can have a look see
<? // function to safely trim null-terminated strings // could just use trim () in this example though function trim_c_string ($string) { $new = ""; $len = strlen ($string); for ($x=0; $x<$len; $x++) { if ($string[$x] != "\0") $new .= $string[$x]; else break; } return $new; }
/* Function to remove the colour code data from a string */ function remove_colour_codes($String){ $ColCodes = array("^0","^1","^2","^3","^4","^5","^6","^7","^8","^9"); $NewString = str_replace($ColCodes, "",$String); return $NewString; }
// init some vars $LfsUsers = array (); $x = 0; $LfsHostList = "";
// get the hostlist $LfsHostList = file_get_contents ("http://lfsworld.net/pubstat/get_stat2.php?action=hosts"); $len = strlen ($LfsHostList); if ($len < 52) exit ("Couldn't get hostlist. Quitting...");
// parse the data while ($x < $len) { $LfsHostName = ""; $nr_racers = 0;
$nr_racers = ord ($LfsHostList[$x++]); for ($w=0; $w<$nr_racers; $w++) { $LfsUserName = ""; for ($y=0; $y<24; $y++) $LfsUserName .= $LfsHostList[$x++]; $LfsUsers[trim_c_string ($LfsUserName)] = $LfsHostName; } }
/* Set the variable to count the members online */ $TeamMembers = 0;
/* Create table to hold data */ echo "<center><br>"; echo "<table border='1' bordercolor='C0C0C0' cellpadding='4' cellspacing='0' style='border-collapse: collapse' style='font-family: Verdana; font-size: 10pt'>"; echo "<tr bgcolor='#CCCCCC' align='center'><th>Team Racer</th><th>On Server</th></tr>";
/* search through the file for Team Members and add a row to the */ /* table showing the name and server they are on */ foreach ($LfsUsers as $LfsUser => $LfsHost) { switch (strtolower($LfsUser)) { case "[M.B]Budman Pootie": case "team member LFS Name": case "team member LFS Name": case "team member LFS Name": case "team member LFS Name": case "team member LFS Name": $LfsUser = remove_colour_codes($LfsUser); $LfsHost = remove_colour_codes($LfsHost); echo "<tr bgcolor='#FFFFFF'>"; echo "<td>$LfsUser</td>"; echo"<td>$LfsHost</td></tr>"; $TeamMembers + 1; break; } } /* Display this row only if no members are online */ if($TeamMembers == 0){ echo "<tr bgcolor='#FFFFFF' align='center'><td>No Members</td><td>Are Online</td></tr>"; } /* Close the table */ echo "</table></center><br>"; ?>