Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-

Bin fishing

Name: Anonymous 2012-10-21 23:35

1. Go to http://pastebin.com/
2. Click a random public paste on the right.
3. Post results.

Name: Anonymous 2012-10-21 23:38

    Hornyblog org ktr wtbc e130 isabel download
    
    
    
    File name:      Hornyblog.org ktr.wtbc.e130.isabel.wmv
    Size:           705.50 MB
    Type:           .wmv
    Source:         http://www.redbitch.org/5746935-post1.html
    
    Download links
    --------------
    http://www.fileserve.com/file/cb6dzd4/hornyblog.org_ktr.wtbc.e130.isabel.wmv

Name: Anonymous 2012-10-21 23:39

    facebook piratage EHV1Z
    
    cr/ack your friends or family fac3b00k acc0unt
    visit this site to crack it
              goo . gl/ 9FpHq
    
         R E M I N D E R  -  ( remove   the   space   in  the  link )

Name: Anonymous 2012-10-21 23:40

var myNum = someFunctionReturningAnInteger();
var str = "";

str += String.charCodeFrom((myNum >>> 24) & 0xff);
str += String.charCodeFrom((myNum >>> 16) & 0xff);
str += String.charCodeFrom((myNum >>> 8) & 0xff);
str += String.charCodeFrom(myNum & 0xff);

Name: Anonymous 2012-10-21 23:43

/le backseat bop/
haxx :--D anii!

Name: Anonymous 2012-10-21 23:43


var lockObj = new object();

Parallel.Foreach(files, file =>
{
    // Processing file
    lock(lockObj)
    {
        // Generate report.
    }
});
   
//Collection to hold the data the processed files generated
var proccesedDataItems = new new BlockingCollection<ResultData>();

//A thread that processes the files
var processReports = new Task(() =>
{
    //Removes items from the collection, if the collection is empty it blocks
    // or if "CompletedAdded" has been called it will reach the "end" of the
    // collection
    foreach(var processedData in proccesedDataItems.GetConsumingEnumerable())
    {
        BuildReport(processedData);
    }
});
processReports.Start();   

//Generating the data
Parallel.Foreach(files, file =>
{
   var proccesedData = ProcessFile(file)
   proccesedDataItems.Add(processedData);
});

//Let anyone consuming the collection that you can stop waiting for new items.
proccesedDataItems.CompleteAdding();
   
var processFileBlock = new TransformBlock<File, Result>(
    file => ProcessFile(file),
    new ExecutionDataflowBlockOptions
    {
        MaxDegreeOfParallelism = DataflowBlockOptions.Unbounded
    });

var generateReportBlock = new ActionBlock<Result>(
    result => GenerateReport(result));

processFileBlock.LinkTo(generateReportBlock);

foreach (var file in files)
    processFileBlock.Post(file);

Name: Anonymous 2012-10-21 23:49


var lockObj = new object();

Parallel.Foreach(files, file =>
{
    // Processing file
    lock(lockObj)


IHBT

Name: Anonymous 2012-10-21 23:58

MI6 TOP SECRET DO NOT CLICK

The eagle flies slowly over the blue house;
A chime in an empty field;
Three men approach;
No leaves on the red car at dawn.
Initiate final solution.

Name: Anonymous 2012-10-22 0:01


           ∧_∧   / ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄
         ( ´∀`) < THIS IS
        /  |    \  /jp/ QUALITY
       /    |       ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄
       / "⌒ヽ |.イ |
   __ |   .ノ | || |__
  .    ノく__つ∪∪   \
   _((_________\

Name: Anonymous 2012-10-22 6:40

import java.util.*;

public class PC {
    public static Vector<Integer> buffer;
    static boolean  cWait;
    static int cnt;
   
    public PC () {
        buffer = new Vector<Integer>();
        cWait = true;
        cnt = 0;
    }
   
    private static class Consumer extends Thread {
       
        public void run() {
       
            while (true) {
               
                    synchronized(buffer) {
                        if (cnt == 10) {
                        cnt = 0;   
                        buffer.notify();
                        }
                    }
                   
                    synchronized(buffer) {
                        if (buffer.isEmpty()) {
                            try {
                                System.out.println("cons\n");
                                cWait = true;
                               
                                buffer.wait();
                            } catch (InterruptedException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                            }
                        }
                   
                    else {
                        System.out.println(buffer.firstElement());
                        buffer.remove(buffer.firstElement());
                    }
                    }
                   
                    try {
                        sleep(100);
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
               
            }
        }
    }
   
    private static class Producer extends Thread {
       
        public void run() {
       
            while (true) {
                synchronized(buffer) {
                    if (cWait) {
                        buffer.add(cnt++);
                        buffer.notify();
                        cWait = false;
                        System.out.println("prod\n");
                    }
                }
                synchronized(buffer) {
                    if (cnt == 10) {
                        try {
                            cnt = 0;
                            buffer.wait();
                        } catch (InterruptedException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                        }
                    }
                }
                   
                    try {
                        sleep(100);
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
               
            }
        }
    }
   
    public static void main(String[] args) {
        // TODO Auto-generated method stub
       
        new PC();
        Consumer cons = new Consumer();
        Producer prod = new Producer();
   
        prod.start();
        cons.start();
    }
}

Name: Anonymous 2012-10-22 8:38

Anyone know what language this is? Looks like Croatian to me.


#include <stdio.h>
#include <stdlib.h>
#define BROJ_ELEMENATA 5
int nizA[BROJ_ELEMENATA], nizB[BROJ_ELEMENATA], nizC[BROJ_ELEMENATA];


void unos_nizova()
{
    int i, j; // brojaci
    for(i=0;i<BROJ_ELEMENATA;i++)
    {
        printf("Unesite %i. clan niza A. ", i+1);
        scanf("%i", &nizA[i]);
    }
    printf("\n");
    for(j=0;j<BROJ_ELEMENATA;j++)
    {
        printf("Unesite %i. clan niza B. ", j+1);
        scanf("%i", &nizB[j]);
    }
}


int main()
{
    int f,g, h, k;
    unos_nizova();
   for(k=0;k<=BROJ_ELEMENATA;k++);
    nizC[k] = nizA[k] + nizB[k];

    printf("Niz A = {");   // printa niz A
    for(f=0;f<BROJ_ELEMENATA;f++)
    {
        printf("%i ", nizA[f]);
    }
    printf("} \n");

    printf("Niz B = {"); // printa niz B
    for(g=0;g<BROJ_ELEMENATA;g++)
    {
        printf("%i ", nizB[g]);
    }
    printf("} \n");

    printf("Niz C = {");
    for(h=0;h<BROJ_ELEMENATA;h++)
    printf("%i ", nizC[h]);
    printf("}");
return 0;
}

Name: Anonymous 2012-10-22 9:04

>>11
Yeah serbo/croat.

Name: Anonymous 2012-10-22 9:15

>>11
The 'a' suffixes remind me of Romance languages. Maybe Romanian?

Name: Anonymous 2012-10-22 9:17

    Sd eautiful Young Pussy Melinda 1st Fuck On Cam download
    
    
    
    File name:      Sd eautiful.Young.Pussy.Melinda.1st.Fuck.On.Cam.avi
    Size:           233.60 MB
    Type:           .avi
    Source:         http://www.exbii.com/showpost.php?p=33064782&postcount=1
    
    Download links
    --------------
    http://www.filesonic.com/file/1756014454/sd_eautiful.Young.Pussy.Melinda.1st.Fuck.On.Cam.avi

I think this might be CP, guys.

Name: Anonymous 2012-10-22 9:17

>>11
"GRUNNUR"
;

Name: nizA[BROJ_ELEMENATA] 2012-10-22 9:19

>>11
nizA[BROJ_ELEMENATA]

Name: Anonymous 2012-10-22 9:20

    #include <stdio.h>
    #include <conio.h>
    #include <stdlib.h>
    #include <windows.h>
    
    
    
    
    int main()
    
    
    {
            int vklad, vyber, menu, ucet, i, poc_ucet;
            int pole[100];
          
            for(i=0; i<99; i++)
                    pole[i]=0;
                  
            do
                    {
                    printf ("Dobry den\n");
                    printf ("Zadajte pocet uctov, ktore chcete vytvorit (od 1 do 99) :\n");
                    scanf_s ("%d", &poc_ucet);
                    system ("PAUSE");
                    system ("CLS");
                    }
                    while (poc_ucet>99);
                  
            do
                    {
                            if(poc_ucet!=1)
                                    {
                                            do
                                            {
                                            printf ("Zadajte cislo uctu od 0 do %d s ktorym chcete pracovat :\n", poc_ucet-1);
                                            scanf_s ("%d", &ucet);
                                            system ("PAUSE");
                                            system ("CLS");
                                            }
                                            while(ucet>poc_ucet-1);
                                    }
                                    ucet=0;
                                  
                          
                  
    
                    printf("Vyberte si prosim druh transakcie\n");
                    printf("\n"); 
                    printf("1 Stav :\n"); 
                    printf("2 Vklad :\n"); 
                    printf("3 Vyber :\n");
                    printf("4 EXIT :\n"); 
    
                    scanf_s(" %d", &menu);
          
          
                            switch(menu)
    
                            {
                            case 1:
                                    {
                                            printf("Vas pociatocny stav je %d\n", pole[ucet]);
                                            system ("PAUSE");
                                            system ("CLS");
                                            break;
                                    }
    
                            case 2:
                                    {
                                            printf("Zadajte sumu ktoru chcete vlozit\n");
                                            scanf_s ("%d", &vklad);
                                            pole[ucet]= pole[ucet] + vklad;
                                            printf("Vklad povoleny, zostatok je %d\n",pole[ucet]);
                                            system ("PAUSE");
                                            system ("CLS");
                                            break;
                                    }
    
                            case 3:
                                    {
                                            printf("Zadajte sumu ktoru chcete vybrat\n");
                                            scanf_s ("%d", &vyber);
                                            if (pole[ucet]>=vyber)
                                            {
                                                    pole[ucet]= pole[ucet] - vyber;
                                                    printf("Vyber povoleny, zostatok je %d\n",pole[ucet]);
                                                    system ("PAUSE");
                                                    system ("CLS");
                                            }
                                            else
                                            {
                                                    printf("Nemate dostatok penazi na ucte\n");
                                                    system ("PAUSE");
                                                    system ("CLS");
                                            }
                                            break;
                                    }
                            }
                    }
                    while (menu!=4);
    }

Name: Anonymous 2012-10-22 17:00

function display_day( $day, $monthView ) {
    global $post;
    $output = '';
    $posts_per_page = tribe_get_option( 'postsPerPage', 10 );
    $postsPerCell = 3;
   
    for ( $i = 0; $i < $postsPerCell; $i++ ) {
        $post = $monthView[$day][$i];
        setup_postdata( $post );
        $eventId    = $post->ID.'-'.$day;
        $start        = tribe_get_start_date( $post->ID, false, 'U' );
        $end        = tribe_get_end_date( $post->ID, false, 'U' );
        $cost        = tribe_get_cost( $post->ID );
        ?>
        <div id='event_<?php echo $eventId; ?>' <?php post_class('tribe-events-event tribe-events-real-event') ?>>
            <a href="<?php tribe_event_link(); ?>"><?php the_title(); ?></a>
            <div id='tooltip_<?php echo $eventId; ?>' class="tribe-events-tooltip" style="display:none;">
                <h5 class="tribe-events-event-title"><?php the_title();?></h5>
                <div class="tribe-events-event-body">
                    <div class="tribe-events-event-date">
                        <?php if ( !empty( $start ) )    echo date_i18n( get_option('date_format', 'F j, Y'), $start);
                        if ( !tribe_get_event_meta($post->ID, '_EventAllDay', true) )
                            echo ' ' . date_i18n( get_option('time_format', 'g:i a'), $start); ?>
                        <?php if ( !empty( $end )  && $start !== $end ) {
                            if ( date_i18n( 'Y-m-d', $start ) == date_i18n( 'Y-m-d', $end ) ) {
                                $time_format = get_option( 'time_format', 'g:i a' );
                                if ( !tribe_get_event_meta($post->ID, '_EventAllDay', true) )
                                    echo " – " . date_i18n( $time_format, $end );
                            } else {
                                echo " – " . date_i18n( get_option('date_format', 'F j, Y'), $end);
                                if ( !tribe_get_event_meta($post->ID, '_EventAllDay', true) )
                                     echo ' ' . date_i18n( get_option('time_format', 'g:i a'), $end) . '<br />';
                            }
                        } ?>
                    </div>
                    <?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) { ?>
                        <div class="tribe-events-event-thumb"><?php the_post_thumbnail( array(75,75));?></div>
                    <?php } ?>
                    <?php echo has_excerpt() ? TribeEvents::truncate($post->post_excerpt) : TribeEvents::truncate(get_the_content(), 30); ?>

                </div>
                <span class="tribe-events-arrow"></span>
            </div>
        </div>
        <?php
        if( $i < count( $monthView[$day] ) - 1 ) {
            echo "<hr />";
        }
    }
}

Don't change these.
Name: Email:
Entire Thread Thread List