Posted by HHH on 07/06/2009
0 Comments
x64 Curl
Curl is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, proxy tunneling and a busload of other useful tricks.

2r2q3vp.png

Download
1.
http://rapidshare.com/files/252625748/curl.exe 

Read more...
Posted by HHH on 06/30/2009
0 Comments
Windows 7 7264 ISO

Setup.png

x86:
CRC32: 0B916606
MD5: 44F04E9E5762714C3D75A3C9C88DE251
SHA1: 59BA011913B00A820A1E002B9BEDEF139AE15B07
Read more...
Posted by HHH on 06/20/2009
0 Comments
Chat privately with visitors on your social network profiles, blog, or website through Yahoo! Messenger.

prmpbxzoomus3.jpg

Seem like a very cool feature for yahoo users. Has anyone use it yet?
Interested? go here and check it out. http://messenger.yahoo.com/pingbox/
Posted by HHH on 06/17/2009
0 Comments
MICROSOFT.WINDOWS.7.BUILD.7260.WIN7 RTM.X86.VHD.ENGLISH-WZT

BUILD: 6.1.7260.0.win7_rtm.090612-2110
File: 7260.0.x86fre.win7_rtm.090612-2110.client_en-us.ultimate.vhd
Size: 5 185 507 840 bytes
MD5: 0703C259676D7E4C58E0EF2184369663
SHA1: 7540399601506675CF1B329CB3507875F64C555B
CRC32: 67C23FE0
Read more...
Posted by HHH on 06/15/2009
0 Comments
MICROSOFT.WINDOWS.7.BUILD.7232.WINMAIN.X64.VHD.ENGLISH-WZT(the original VHD)
File: 7232.0.amd64fre.winmain.090610-1900.client_en-us.ultimate.vhd
Size: 7 409 031 680 bytes
MD5: F47C13D2FD1D94F5A2E9A0A85BA0B5D0
SHA1: 8BB2AB688698AE503794F02C29C629131FF0160C
CRC32: 5723B24B
Read more...
Posted by HHH on 06/13/2009
0 Comments
Note: This guide is for server running WHM (Web Host Manager).

This guide has been tested and working fine on Fedora & Centos machines.
First login as root then run the following command in the Terminal:
1.
/scripts/ftpup 


Look at the current version of Pure-ftpd on your OS.
Then go to this site http://diff.cpanel.net/ftpinstall/pure-ftpd/src/ and download the corresponding version that you current have.
When finish downloading, run this command to rebuild your Pure-ftpd:
1.
rpmbuild --rebuild --define 'with_mysql 1' pure-ftpd-1.0.21-9.tls.src.rpm 

Read more...
Posted by HHH on 06/13/2009
0 Comments
This video will show you how to unlock and jailbreak your iPhone 3g.

Posted by HHH on 06/13/2009
0 Comments
save as: dbcon.php
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
<?php
class db {
    var 
$query_count    0;
    var 
$connection_id    "";
    var 
$query_id        "";
    var 
$record_row        = array();
    var 
$cf   = array();
    var 
$obj  = array (
        
'sql_host'      => '',
        
'sql_user'      => '',
        
'sql_pass'      => '',
        
'sql_database'  => ''
    
);

    function 
connect()
    {
        
$this->connection_id = @mysql_connect($this->obj['sql_host'], $this->obj['sql_user'], $this->obj['sql_pass']);
        @
mysql_select_db($this->obj['sql_database'],$this->connection_id) or $this->err(mysql_error());
    }

    function 
query($query)
    {
        
$this->query_count++;
        
$this->query_id mysql_query($query$this->connection_id) or $this->err(mysql_error());
        return 
$this->query_id;
    }

    function 
fetch_array($query)
    {
        
$this->record_row mysql_fetch_array($queryMYSQL_ASSOC);
        return 
$this->record_row;
    }

    function 
get_num_rows($query) {
        return 
mysql_num_rows($query);
    }

    function 
get_query_cnt()
    {
        return 
$this->query_count;
    }
    function 
close()
    {
        if ( 
$this->connection_id )
        {
            return @
mysql_close$this->connection_id );
        }
    }
    function 
err($error)
    {
        echo 
"Database Error: $error";
    }
}
?>

Read more...