Page 2 of 2 FirstFirst 12
Results 31 to 49 of 49
  1. Collapse Details
     
    #31
    Lisa Claus
    king steveyos
    thread ruined 941456
    Reply With Quote
     

  2. Collapse Details
     
    #32
    Lisa Claus
    king steveyos
    thread ruined 233688
    Reply With Quote
     

  3. Collapse Details
     
    #33
    Lisa Claus
    king steveyos
    thread ruined 76804
    Reply With Quote
     

  4. Collapse Details
     
    #34
    Lisa Claus
    king steveyos
    thread ruined 691372
    Reply With Quote
     

  5. Collapse Details
     
    #35
    Lisa Claus
    king steveyos
    thread ruined 369954
    Reply With Quote
     

  6. Collapse Details
     
    #36
    Lisa Claus
    king steveyos
    thread ruined 568111
    Reply With Quote
     

  7. Collapse Details
     
    #37
    Lisa Claus
    king steveyos
    thread ruined 991383
    Reply With Quote
     

  8. Collapse Details
     
    #38
    Lisa Claus
    king steveyos
    thread ruined 935375
    Reply With Quote
     

  9. Collapse Details
     
    #39
    Lisa Claus
    king steveyos
    thread ruined 15426
    Reply With Quote
     

  10. Collapse Details
     
    #40
    Lisa Claus
    king steveyos
    thread ruined 129715
    Reply With Quote
     

  11. Collapse Details
     
    #41
    Lisa Claus
    king steveyos
    thread ruined 582802
    Reply With Quote
     

  12. Collapse Details
     
    #42
    Lisa Claus
    king steveyos
    thread ruined 235533
    Reply With Quote
     

  13. Collapse Details
     
    #43
    Lisa Claus
    king steveyos
    thread ruined 767447
    Reply With Quote
     

  14. Collapse Details
     
    #44
    Lisa Claus
    king steveyos
    thread ruined 196243
    Reply With Quote
     

  15. Collapse Details
     
    #45
    Pariah :Care:y Plug Drugs's Avatar
    Join Date
    Dec 2011
    Location
    an edgecastle for edgelords
    Posts
    11,801
    wow that gay attempt at "thread is dead" really worked, you made the thread go to page 2 how did you do that
    also, i now know to never fucking use postimg again
    Reply With Quote
     

  16. Collapse Details
     
    #46
    my weapons turn me into a m0nde's Avatar
    Join Date
    Dec 2011
    Location
    every once in a while
    Posts
    29,860
    disgu.st/~jon/tidk-0.3.phps

    Code:
     <?php
    /**
    * thread-is-dead killer 0.3
    * @author jonatfuckdotorg
    * @since august 02 2007
    */
    define('TIDK_G_MAGIC_SZ', 6);
    define('TIDK_G_MAX_WIDTH', 1024);
    define('TIDK_G_MAX_PRODUCT', 1280*1024);
    define('TIDK_I_UNK', 0);
    define('TIDK_I_JPG', 1);
    define('TIDK_I_GIF', 2);
    define('TIDK_I_PCX', 3);
    define('TIDK_I_DCX', 4);
    define('TIDK_I_PNG', 5);
    define('TIDK_I_TIF', 6);
    define('TIDK_I_TGA', 7);
    define('TIDK_I_BMP', 8);
    
    
    function tidk_read_min_bytes($fh, $min)
    {
    $buf = null;
    while (!feof($fh) and (strlen($buf) < $min))
    {
    $tmp = @fread($fh, $min - strlen($buf));
    if ($tmp === false) break;
    $buf .= $tmp;
    }
    return $buf;
    }
    
    
    function tidk_reader($url)
    {
    $magic = array(
    chr(0xff).chr(0xd8).chr(0xff).chr(0xfe).chr(0x00) => TIDK_I_JPG,
    chr(0xff).chr(0xd8).chr(0xff).chr(0xe0).chr(0x00) => TIDK_I_JPG,
    chr(0x47).chr(0x49).chr(0x46).chr(0x38).chr(0x39).chr(0x61) => TIDK_I_GIF,
    chr(0x47).chr(0x49).chr(0x46).chr(0x38).chr(0x37).chr(0x61) => TIDK_I_GIF,
    chr(0x89).chr(0x50).chr(0x4e).chr(0x47).chr(0x0d).chr(0x0a) => TIDK_I_PNG,
    chr(0x0a).chr(0x05).chr(0x01).chr(0x08) => TIDK_I_PCX, /* v5 */
    chr(0x3a).chr(0xde).chr(0x68).chr(0xb1) => TIDK_I_DCX,
    chr(0x49).chr(0x49).chr(0x2a) => TIDK_I_TIF,
    chr(0x4d).chr(0x4d).chr(0x2a) => TIDK_I_TIF,
    );
    
    
    $fh = @fopen($url, 'rb');
    if ($fh === false) return array(null,TIDK_I_UNK);
    
    $buf = tidk_read_min_bytes($fh, TIDK_G_MAGIC_SZ);
    
    foreach($magic as $mstr => $ftyp)
    if ((strlen($buf) >= strlen($mstr)) and
    (0 === strcmp(substr($buf,0,strlen($mstr)), $mstr)))
    {
    switch($ftyp)
    {
    case TIDK_I_JPG: return tidk_jpg_scanner($fh, $buf);
    case TIDK_I_GIF: return tidk_gif_scanner($fh, $buf);
    case TIDK_I_PNG: return tidk_png_scanner($fh, $buf);
    case TIDK_I_PCX: return tidk_pcx_scanner($fh, $buf);
    case TIDK_I_DCX: return tidk_dcx_scanner($fh, $buf);
    case TIDK_I_TIF: return tidk_tif_scanner($fh, $buf);
    case TIDK_I_TGA: return tidk_tga_scanner($fh, $buf);
    case TIDK_I_BMP: return tidk_bmp_scanner($fh, $buf);
    }
    break;
    }
    
    switch(strtolower(substr($url,strrpos($url,'.')+1)))
    {
    case 'jpeg':
    case 'jpe':
    case 'jpg': return tidk_jpg_scanner($fh, $buf);
    case 'gif': return tidk_gif_scanner($fh, $buf);
    case 'png': return tidk_png_scanner($fh, $buf);
    case 'pcx': return tidk_pcx_scanner($fh, $buf);
    case 'dcx': return tidk_dcx_scanner($fh, $buf);
    case 'tif':
    case 'tiff': return tidk_tif_scanner($fh, $buf);
    case 'tga': return tidk_tga_scanner($fh, $buf);
    case 'bmp': return tidk_bmp_scanner($fh, $buf);
    }
    
    fclose($fh);
    return array(0, 0);
    }
    
    
    function tidk_jpg_scanner($fh, $pre)
    {
    $w = $h = $d = $e = 0;
    $a = 1;
    $i = 0;
    
    if ($i < strlen($pre)) $c = $pre[$i++];
    else if (false === ($c = fgetc($fh))) $a = 0;
    if (ord($c) !== 0xff) $a = 0;
    
    if ($i < strlen($pre)) $c = $pre[$i++];
    else if (false === ($c = fgetc($fh))) $a = 0;
    if (ord($c) !== 0xd8) $a = 0;
    
    while ($a)
    {
    if ($i < strlen($pre)) $c = $pre[$i++];
    else if (false === ($c = fgetc($fh))) {$a=0; break;}
    $c = ord($c);
    //echo dechex($c).' ';
    
    while ($c != 0xff)
    {
    if ($i < strlen($pre)) $c = $pre[$i++];
    else if (false === ($c = fgetc($fh))) {$a=0; break;}
    $c = ord($c);
    //echo dechex($c).' ';
    }
    
    if ($i < strlen($pre)) $c = $pre[$i++];
    else if (false === ($c = fgetc($fh))) {$a=0; break;}
    $c = ord($c);
    //echo dechex($c).' ';
    
    while ($c == 0xff)
    {
    if ($i < strlen($pre)) $c = $pre[$i++];
    else if (false === ($c = fgetc($fh))) {$a=0; break;}
    $c = ord($c);
    //echo dechex($c).' ';
    }
    //echo ",\n";
    
    if ($a == 0) break;
    
    switch($c)
    {
    case 0xC0: case 0xC1: case 0xC2:
    case 0xC3: case 0xC5: case 0xC6:
    case 0xC7: case 0xC9: case 0xCA:
    case 0xCB: case 0xCD: case 0xCE:
    case 0xCF:
    //echo "!\n";
    if ($i < strlen($pre)) $d = $pre[$i++];
    else if (false === ($d = fgetc($fh))) {$a=0; break;}
    if ($i < strlen($pre)) $d = $pre[$i++];
    else if (false === ($d = fgetc($fh))) {$a=0; break;}
    if ($i < strlen($pre)) $d = $pre[$i++];
    else if (false === ($d = fgetc($fh))) {$a=0; break;}
    
    if ($i < strlen($pre)) $d = $pre[$i++];
    else if (false === ($d = fgetc($fh))) {$a=0; break;}
    if ($i < strlen($pre)) $e = $pre[$i++];
    else if (false === ($e = fgetc($fh))) {$a=0; break;}
    $h = (ord($d) << 8) + ord($e);
    
    if ($i < strlen($pre)) $d = $pre[$i++];
    else if (false === ($d = fgetc($fh))) {$a=0; break;}
    if ($i < strlen($pre)) $e = $pre[$i++];
    else if (false === ($e = fgetc($fh))) {$a=0; break;}
    $w = (ord($d) << 8) + ord($e);
    
    return array($w, $h);
    
    case 0xDA: case 0xD9:
    return array(0, 0);
    
    default:
    if ($i < strlen($pre)) $d = $pre[$i++];
    else if (false === ($d = fgetc($fh))) {$a=0; break;}
    if ($i < strlen($pre)) $e = $pre[$i++];
    else if (false === ($e = fgetc($fh))) {$a=0; break;}
    $d = ord($d);
    $e = ord($e);
    $l = ($d << 8) + $e;
    //echo dechex($d) . ' ' . dechex($e) . " ($l).\n";
    if ($l < 2) return array(0, 0);
    $l -= 2;
    while($l > 0)
    {
    if ($i < strlen($pre)) $d = $pre[$i++];
    else if (false === ($d = fgetc($fh))) {$a=0; break;}
    $l--;
    }
    }
    }
    
    fclose($fh);
    return array(0, 0);
    }
    
    
    function tidk_gif_scanner($fh, $pre)
    {
    $hdr = $pre . tidk_read_min_bytes($fh, 10 - strlen($pre));
    fclose($fh);
    
    return array(ord($hdr[6]) + (ord($hdr[7]) << 8),
    ord($hdr[8]) + (ord($hdr[9]) << 8));
    }
    
    
    function tidk_png_scanner($fh,$pre)
    {
    $hdr = $pre . tidk_read_min_bytes($fh, 24-strlen($pre));
    fclose($fh);
    $w = (ord($hdr[16]) << 24) + (ord($hdr[17]) << 16)
    + (ord($hdr[18]) << 8) + ord($hdr[19]);
    $h = (ord($hdr[20]) << 24) + (ord($hdr[21]) << 16)
    + (ord($hdr[22]) << 8) + ord($hdr[23]);
    return array($w, $h);
    }
    
    
    function tidk_pcx_scanner($fh, $pre)
    {
    $hdr = $pre . tidk_read_min_bytes($fh, 12 - strlen($pre));
    fclose($fh);
    
    $w = (ord($hdr[8]) + (ord($hdr[9]) << 8))
    - (ord($hdr[4]) + (ord($hdr[5]) << 8))
    + 1;
    $h = (ord($hdr[10]) + (ord($hdr[11]) << 8))
    - (ord($hdr[6]) + (ord($hdr[7]) << 8))
    + 1;
    return array($w, $h);
    }
    
    
    function tidk_dcx_scanner($fh)
    {
    fclose($fh);
    return array(0,0);
    }
    
    
    function tidk_tif_scanner($fh, $pre)
    {
    $hdr = $pre . tidk_read_min_bytes($fh, 10 - strlen($pre));
    $pre = (strlen($pre) > 10) ? substr($pre, 10) : null;
    $tags = ord($hdr[8]) + (ord($hdr[9]) << 8);
    $w = $h = $i = 0;
    
    for($i = 0; $i < $tags; $i++)
    {
    $tag = $pre . tidk_read_min_bytes($fh, 12 - strlen($pre));
    $pre = (strlen($pre) > 12) ? substr($pre, 12) : null;
    
    $code = ord($tag[0]) + (ord($tag[1]) << 8);
    switch($code)
    {
    case 0x100:
    $w = ord($tag[8]) + (ord($tag[9]) << 8)
    + (ord($tag[10]) << 16) + (ord($tag[11]) << 24);
    break;
    case 0x101:
    $h = ord($tag[8]) + (ord($tag[9]) << 8)
    + (ord($tag[10]) << 16) + (ord($tag[11]) << 24);
    break;
    }
    if (($w > 0) and ($h > 0)) break;
    }
    fclose($fh);
    return array($w,$h);
    }
    
    
    function tidk_tga_scanner($fh, $pre)
    {
    $hdr = $pre . tidk_read_min_bytes($fh, 16 - strlen($pre));
    fclose($fh);
    return array(ord($hdr[12]) + (ord($hdr[13]) << 8),
    ord($hdr[14]) + (ord($hdr[15]) << 8));
    }
    
    
    function tidk_bmp_scanner($fh)
    {
    fclose($fh);
    return array(0,0);
    }
    
    
    function tidk_run($msg)
    {
    if (0 < preg_match_all('#\[img\]http://(.*?)\[/img\]#i',$msg,$m))
    foreach($m[1] as $uri)
    {
    list($w, $h) = tidk_reader('http://'.$uri);
    //echo $uri . ' = ' . $w . 'x' . $h . "\n";
    if (($w > TIDK_G_MAX_WIDTH) or
    (($w * $h) > TIDK_G_MAX_PRODUCT)) return false;
    }
    return true;
    }
    
    
    if (!tidk_run($post['message']))
    {
    header('location: /');
    exit;
    }
    ?>

    Reply With Quote
     

  17. Collapse Details
     
    #47
    Shen 㓠 긼 Dai ͻ slotted roxtoyz666's Avatar
    Join Date
    Feb 2014
    Location
    Moe frequency ㋸ Zhuo Qiang, deputy 밉 䴦 쐮 ♌ drive 갩 &#58941
    Posts
    650
    Quote Originally Posted by Autistic Spectrum View Post


    ahahahahah 4chan classic prank and fuckin skrimy together at laslt fuycuk hya battletoalsds
    woah thats fucking crazy.
    List of things to do ITT:

    KILL OOBLEGLORK.





    Remember what max goldberg taught me in 2004...

    Quote Originally Posted by roxtoyz666 View Post
    That was a lie and you know it.
    • Shell
    • Wall
    • Protect
    • Blizzard

    Reply With Quote
     

  18. Collapse Details
     
    #48
    my weapons turn me into a m0nde's Avatar
    Join Date
    Dec 2011
    Location
    every once in a while
    Posts
    29,860
    Quote Originally Posted by plugdrug via the rant generator
    somewhere it is best to leave your abuse alone

    you can call me a fag it doesnt stop me from being cattle; you're all part of a role doctors' incompetence has to be a few years for lead poisoning, maybe I'm expecting pain relievers and she can do what she wants and doesn't owe me for making me drive 4 hours just to laugh at me, but i dont forgive teknorat talking right. what i just said pertains to you when you consider another statistic: the number of deaths resulting from illegal drugs, as well as an absolute love for foreign culture and difference; can you offer something les painful than that?

    you talking to me.. it physically hurts =( it just got mangled in a car accident of things and let that part of the business being conducted end up completely a gross burden on that?

    put me in just "more drugs" follow program procedure and carry out normal the state.....

    Do we really?, do we end up concluding that unless you are just counting the ones in hospitals -- according to this article, tens of thousands more of me will end up like this
    ok, this is only a test

    Reply With Quote
     

  19. Collapse Details
     
    #49
    my weapons turn me into a m0nde's Avatar
    Join Date
    Dec 2011
    Location
    every once in a while
    Posts
    29,860
    skyrim fanfare mod


    Reply With Quote
     

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •