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

Pages: 1-4041-8081-120121-160161-200201-240241-280281-320321-360361-400401-

Fibonacci Butt Sort

Name: Anonymous 2009-08-16 23:08

Let us discuss the various implementations of theFIBONACCI BUTT SORT.

Name: Anonymous 2009-08-16 23:09

Name: Anonymous 2009-08-16 23:11

Name: Anonymous 2009-08-16 23:14

>>1
U MENA BINARY DICKS TREE?

Name: Anonymous 2009-08-16 23:18

>>4
Dijkstra?

Name: Anonymous 2009-08-16 23:39

<3

Name: Anonymous 2009-08-16 23:42

What does (binary_dicks_tree)<(fibonacci_butt_sort) evaluate to?

Name: Anonymous 2009-08-17 0:15

>>7
Sorted Anuses.

Name: Anonymous 2009-08-17 2:33


a,b = 0,1
while 1:
    print b,
    a,b = b,a+b

Name: Anonymous 2009-08-17 11:03

>>8
In what order?

Name: Anonymous 2009-08-17 15:26

>>10
ANUSES[10] = {ANUS, ANUS, ANUS, ANUS, ANUS, ANUS, ANUS, ANUS, ANUS, ANUS, } ;

Name: Anonymous 2009-08-17 15:42

From this point forward, if anyone on /prog/ asks about data structures, I'm going to reply FIBONACCI BUTT SORT

Name: Anonymous 2009-08-17 15:43

>>1,12
Will you GPL your BBCode?

Name: Anonymous 2009-08-17 15:43

>>12
Don't you mean Haskell?

Name: Anonymous 2009-08-17 15:44

[b][i][u]F[/u][o]I[/o][u]B[/u][o]O[/o][u]N[/u][o]A[/o][u]C[/u][o]C[/o][u]I[/u] [o]B[/o][u]U[/u][o]T[/o][u]T[/u] [o]S[/o][u]O[/u][o]R[/o][u]T[/u][/i][/b]

Name: Anonymous 2009-08-17 15:48

Im writing a 'butt sorter' in JAVA to output the FBSorted BBCode for any text.

Name: Anonymous 2009-08-17 15:50

>>16
BUTT SORT FAILURE

JAVA

Name: Anonymous 2009-08-17 15:52

>>16
I hope you are going to use Fibonacci tail recursion to do it...

Name: Anonymous 2009-08-17 16:14



    FIBONACCI BUTT SORT

Name: Anonymous 2009-08-17 16:25

>>15
Thank you.

Name: Anonymous 2009-08-17 16:47

>>15
Did you mean: FIBONACCIBUTTSORT

Hint: BBCode tags don't work inside the [code] tag.

Name: Anonymous 2009-08-17 16:49

>>21
Your implementation needs work. Try skipping spaces

Name: Anonymous 2009-08-17 16:57

>>21
Did you mean to read the fucking thread?

Name: Anonymous 2009-08-17 17:05

>>21
lol no, that was just the source code.

Name: Anonymous 2009-08-17 17:11

>>1
WTF is this shit? And how do I implement it to my advantage?

Name: Anonymous 2009-08-17 17:32



(defun write-tag (tag string)
(if (null tag)
""
(format nil "[~a]~a[/~a]" tag string tag)))
(defun bb-buttsort (s)
"FIBONACCI BUTTSORT"
(write-tag "i"
(write-tag "b"
(apply #'concatenate 'string
    (loop for c across s
    and parity = nil then (not parity)
    collect (write-tag (if parity "o" "u") c))))))




(defun write-tag (tag string)
  (if (null tag)
      ""
      (format nil "[~a]~a[/~a]" tag string tag)))
(defun bb-buttsort (s)
  (write-tag "i"
   (write-tag "b"
    (apply #'concatenate 'string
       (loop for c across s
          and parity = nil then (not parity)
          collect (write-tag (if parity "o" "u") c))))))

Name: Anonymous 2009-08-17 17:33

FIBONACCI BUTT SORT

Name: >>26 2009-08-17 17:34

>>26
Seems it needs some more work :( But at least FIBONACCI BUTTSORT works

Name: Anonymous 2009-08-17 17:58

Here's my implementation:

buttSort = b . i . unwords . map concat $ map xmap fbf `xmap` fbs
  where fbf = cycle [u, o] : cycle [cycle [o, u]]
        fbs = map tacnoc . words $ "FIBONACCI BUTT SORT"

xmap = zipWith ($)
tacnoc = map (:[])

A bit of a kludge, to be honest. What I ought to have done is written a custom iterator function instead of juggling map and xmap, so it would be intrinsically aware of the space-skipping requirement and I wouldn't have to fuck with fbf.

FIBONACCI BUTT SORT

Name: Anonymous 2009-08-17 18:16

>>29
Like this?

buttSort = b . i . go (cycle [u, o])
  where go fs (' ':xs) = " " ++ go fs xs
        go (f:fs) (x:xs) = f [x] ++ go fs xs
        go _ [] = []

Name: Anonymous 2009-08-17 18:18

>>30
I THINK THE OUTPUT OF THIS VERSION IS ABSOLUTELY PERFECT

Name: Anonymous 2009-08-17 18:37

>>30
buttSort = b . i . go (cycle [u, o])  where go fs (' ':xs) = " " ++ go fs xs        go (f:fs) (x:xs) = f [x] ++ go fs xs        go _ [] = []

Name: Anonymous 2009-08-17 19:00

Testing my kludgy scheme buttsort

Name: Anonymous 2009-08-17 19:01

>>33
Whoops, used [sup]/[sub] instead of [o]/[u]
Testing my kludgy scheme buttsort

Name: Anonymous 2009-08-17 19:06

This works in PLT scheme. It's not the best solution, but I wanted to use unfold.
[code](require srfi/1)
(define (make-cycle x)
  (let ((clist (apply circular-list x)))
    (lambda ()
      (begin0
        (car clist)
        (set! clist (cdr clist))))))
(define bbcode-select
  (let ((c (make-cycle (list o u))))
    (lambda (x)
      (if (string=? x " ")
          " "
          ((c) x)))))
(define (buttsort x)
    (b (i (apply string-append (unfold null? (lambda (y) (bbcode-select (car y))) cdr (regexp-split #rx"" x))))))[code]

Name: Anonymous 2009-08-17 19:16

>>35
EXPERT BBCODE FAILURE

Name: Anonymous 2009-08-17 19:20

>>36
AmIforgiven?AmIforgiven?
AmIforgiven?AmIforgiven?
How about now?

Name: Anonymous 2009-08-17 19:29

>>37
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;No.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

Name: Anonymous 2009-08-17 19:30

>>38
EXPERT HTML FAILURE

Name: Anonymous 2009-08-17 19:53


                dicks
               /     \
              /       \
           dicks     dicks
           /   \     /   \
          /     *   /     \
       dicks      dicks  dicks
       /   \     /    \  /   \
      *   dicks *     * *    dicks

Name: Anonymous 2009-08-17 19:55

>>40
DICK TOWER is superior

Name: Anonymous 2009-08-17 20:21

>>41
NO ITS NOT!

A Dick Tower has a growth complexity of N, whereas a Binary Dicks Tree has an average growth complexity of only log(N).

Name: Anonymous 2009-08-17 20:23

Hello, /prog/, How are you this fine, fine evening? I'll just leave this here...



import java.io.IOException;
import java.util.*;

class Tag
{
    private static Random generator = new Random(new Date().getTime());
    private static Tag[] tags = new Tag[]
    {
        new Tag("b"), new Tag("i"), new Tag("u"), new Tag("o"),
    };

    private String name;

    static Tag getRandomTag()
    {
        return tags[generator.nextInt(tags.length)];
    }

    private Tag(String name)
    {
        this.name = name;
    }

    public String getOpenForm()
    {
        return "[" + name + "]";
    }

    public String getClosedForm()
    {
        return "[/" + name + "]";
    }
}

public class Progifier
{
    public static void main(String[] args) throws IOException
    {
        Stack<Tag> tags = new Stack<Tag>();
        Random generator = new Random(new Date().getTime());

        while(System.in.available() > 0)
        {
            int b = System.in.read();

            if(generator.nextInt(10) == 0)
                System.out.print(tags.push(Tag.getRandomTag()).getOpenForm());

            System.out.write(b);

            if(generator.nextInt(50) == 0 && !tags.empty())
                System.out.print(tags.pop().getClosedForm());
        }

        while(!tags.empty())
            System.out.print(tags.pop().getClosedForm());
    }
}

Name: Anonymous 2009-08-17 20:29

>>43
Finally, something useful written in Java It's still too verbose

Name: Xarn 2009-08-17 20:29

>>42
If I enter 100 into my ENTERPRISE DICKS MACHINE I want 100 delicious dicks to come out, not 2.

Name: Anonymous 2009-08-17 20:32

>>43
Ne[i]w and imp[u]roved[o] [code]wit[o]h more[spoiler] tags![m]
[/m][/spoiler][/o][/code][/o][/u][/i]

diff
[m]
9a10
        new Tag("spoiler"), new Tag("m"), new Tag("code")
[/m]

Name: Anonymous 2009-08-17 21:15

Gentlemen, have you heard of the magical spirit conjuring technology called a METACIRCULAR BOOBULATOR ?

Name: Anonymous 2009-08-17 22:07

>>47
The Pleasure of being Metacircularly Boobulated inside.

Name: Anonymous 2009-08-18 0:11

>>48
i came

Name: Anonymous 2009-08-18 0:11

>>48
i came

Name: Anonymous 2009-08-18 4:34

Ne[i]w and imp[u]roved[o] [code]wit[o]h more[spoiler] tags![m]
[/m][/spoiler][/o][/code][/o][/u][/i]

Name: Anonymous 2009-08-18 4:51

GENTLEMEN

Name: Anonymous 2009-08-18 13:01

>>1
Is it Butt Sort or Buttsort?

Name: Anonymous 2009-08-18 13:04

BUTTSORT

Name: Anonymous 2009-08-18 15:31

FIBONACCI BUTT SORT

Name: Anonymous 2009-08-18 17:24

>>53
You're confusing it with a buttburst.

Name: Anonymous 2009-08-19 3:56

?>>56

Name: Anonymous 2009-08-19 4:32

>>56
You're confusing sage with age.

Name: Anonymous 2009-08-19 4:47

>>58
Fuck you, dipshit.

Name: Anonymous 2009-08-23 22:23

jjjj

Name: Anonymous 2009-08-24 12:12

Anybody have the source code for a buttsorter yet?

Name: Anonymous 2009-08-24 12:32

Name: /prog/ announcer 2009-08-24 12:46

>>61
Please read the threads before contributing, thank you.

Name: Anonymous 2009-08-24 14:24

>>63
Sorry about that, I finally found the "Read entire thread" link. I thought the old posts were gone or something.

Name: Haxus the Buttsorter 2009-08-24 14:37

Haxus the Buttsorter

Name: Anonymous 2009-08-24 18:30

>>65
i approve

Name: Anonymous 2009-08-25 3:48

Guize I have written an implementation in C with UNICODE support.
[m][b][i]#include <stdio.h>
#include <wchar.h>
#include <string.h>
#include <locale.h>
#include <errno.h>

FILE* fffffffibonacci_butt_sort(FILE *s, size_t n)
{
    size_t i = 0;
    wint_t tags[] = {L'u', L'o'};
    wint_t c = WEOF;
   
    for(i = 0; i < n; ++i)
    {
        if((c = fgetwc(s)) == L'[u][/u]n')
        {
            fputwc(L'[u][/u]n', stdout);
            return s;
        }
        else if(iswspace(c))
        {
            fputwc(c, stdout);
        }
        else if(c != WEOF)
        {
            wprintf(L"[%lc]%lc[/%lc]", tags[(i%2)], c, tags[(i%2)]);
        }
        else
        {
            return NULL;
        }
    }
    return s;
}

int main()
{
    if(!setlocale(LC_CTYPE, NULL))
    {
        fwprintf(stderr, L"Warning: Locale not specified.[o][/o]n");
    }

    const size_t BUFFA_SIZE = 4096;
    wint_t c = WEOF;

    fputws(L"[b][i]", stdout);

    while((c = fgetwc(stdin)) != WEOF)
    {
        if(ungetwc(c, stdin) == WEOF)
        {
            fputws(L"Failed to ungetwc<span class="o">.[u][/u]n", stderr);
            break;
        }

        if(!fffffffibonacci_butt_sort(stdin, BUFFA_SIZE))
        {
            break;
        }
    }

    fputws(L"[/i][/b<span class="o">][u][/u]n", stdout);

    if(ferror(stdin))
    {
        perror(strerror(errno));
        fputws(L"Input error occured. Output probably corrupted."
                "Shit fucking sucks.[u][/u]n", stderr);
    }

    return 0;
}
[/i][/b][/m]


[code]#include <stdio.h>
#include <wchar.h>
#include <string.h>
#include <locale.h>
#include <errno.h>

FILE* fffffffibonacci_butt_sort(FILE *s, size_t n)
{
    size_t i = 0;
    wint_t tags[] = {L'u', L'o'};
    wint_t c = WEOF;
   
    for(i = 0; i < n; ++i)
    {
        if((c = fgetwc(s)) == L'\n')
        {
            fputwc(L'\n', stdout);
            return s;
        }
        else if(iswspace(c))
        {
            fputwc(c, stdout);
        }
        else if(c != WEOF)
        {
            wprintf(L"[%lc]%lc[/%lc]", tags[(i%2)], c, tags[(i%2)]);
        }
        else
        {
            return NULL;
        }
    }
    return s;
}

int main()
{
    if(!setlocale(LC_CTYPE, NULL))
    {
        fwprintf(stderr, L"Warning: Locale not specified.\n");
    }

    const size_t BUFFA_SIZE = 4096;
    wint_t c = WEOF;

    fputws(L"[b][i]", stdout);

    while((c = fgetwc(stdin)) != WEOF)
    {
        if(ungetwc(c, stdin) == WEOF)
        {
            fputws(L"Failed to ungetwc.\n", stderr);
            break;
        }

        if(!fffffffibonacci_butt_sort(stdin, BUFFA_SIZE))
        {
            break;
        }
    }

    fputws(L"[/i][/b]\n", stdout);

    if(ferror(stdin))
    {
        perror(strerror(errno));
        fputws(L"Input error occured. Output probably corrupted."
                "Shit fucking sucks.\n", stderr);
    }

    return 0;
}[/code]

Here's an example for UTF-8 input:
[spoiler]Invalid or incomplete multibyte or wide character: Invalid or incomplete multibyte or wide character[/spoiler]

Name: Anonymous 2009-08-25 3:52

>>67
buttsort win

Name: Anonymous 2009-08-25 4:15

>>67
BBCode corruption? Lesse why did it fail.

FIBONACCI BUTT SORT

Name: Anonymous 2009-08-25 4:17

>>69
Looks like Shii-chan doesn't like Standard See in BBCode as in >>67 . :(

Name: Anonymous 2009-08-30 2:59

Bootstrapping my Directed Acyclic Buttsorter.

Here we go!

[b][i] import java.util.StringTokenizer; import javax.swing.JOptionPane; public class starter { public static void main(String args[]) { StringTokenizer st = new StringTokenizer(" "); String input = ""; String output = [u]"[b][i]";[/u] String next; int i = 1; input = JOptionPane.showInputDialog("Enter Text"); try { st = new StringTokenizer(input); } catch(Exception e) { } while(st.hasMoreTokens()) { i = i * -1; next = st.nextToken(); if(i > 0) { next = "" + next + ""; } else { next = [u]"[o]"[/u] + next + "[/o]"; } output = output + " " + next; } output = output + "[/i][/b]"; System.out.println(output); JOptionPane.showInputDialog( null, "Enjoy your buttsort", "Buttsorter", JOptionPane.PLAIN_MESSAGE, null, null, output); } }[/i][/b]

Name: Anonymous 2009-08-30 3:12

What would the Sussman think about FBS?

Name: Anonymous 2009-08-30 4:57

Sometimes I wonder if The Sussman is actually tsundere for /prog/ and whenever I read a weird thread, I imagine him reading it and wincing and wondering what the fuck is this.

Name: Anonymous 2009-08-30 6:27

I am 12 Sussmans old and what is this

Name: Anonymous 2009-08-30 6:42

>>74

[u][o][i]Back to /b/, please.[/i][/o][/u]

Name: Anonymous 2009-08-30 10:10



    FIBONACCI BUTT SORT

Name: Anonymous 2009-08-30 12:10

>>76
My FIBONACCI BUTT hurts :(

Name: Anonymous 2009-08-30 13:15

>>77
FIBONACCI BUTTHERTZ

Name: Anonymous 2009-08-30 13:50

>>78
The official SI unit for FIBONACCI BUTTSORT

Name: Anonymous 2009-08-30 14:44

>>79

The background level is 50Hz. This value must be subtracted from all readings to estimate the real one.

Name: Anonymous 2009-08-30 14:54

>>80
So that means that I am being buttsorted at a minimum of 50Hz right now at this very moment?

Name: Anonymous 2009-08-30 15:07

>>81
Without a shadow of a doubt yes. Don't worry it's entirely normal.

Name: Anonymous 2009-08-30 17:02

>>82
Unless of course, a second buttsort was being propagated in his proximity at 50Hz with an identical amplitude and 90 degree phase offset from the backround nose. Thus canceling out all active buttsorting.

Name: Anonymous 2009-08-30 17:04

>>83
EE major detected.

Name: Anonymous 2009-08-30 17:10

>>84
Wave polarisation was a high school physics topic

Name: Anonymous 2009-08-30 18:21

>>85
I just realised that I misread >>83, he is talking about interference not polarisation I'm a retard :(

Name: Anonymous 2009-08-30 21:48

>>85
Interference was also a high school physics topic.

Name: Anonymous 2009-08-31 4:37

>>86
Don't be too hard on yourself. Buttsort is hard at first.

Name: Anonymous 2009-09-02 22:53

I AM AFRAID THAT I ACCIDENTLY MADE A BUTTSORTER

Name: Anonymous 2009-09-02 22:56

>>89
OH MY, OH MY
void buttsort(char* out,char* in){
    strcpy(out,"[b][i]");
    out += 6;
    int i,c=0;
    for(i=0;i<strlen(in);++i){
        if(c%2){
            strcpy(out,"[u]?[/u]");
        }else{
            strcpy(out,"[o]?[/o]");
        }
        out[3] = toupper(in[i]);
        out += 8;
        if(!isspace(in[i])) ++c;
    }
    strcpy(out,"[/i][/b]");
}

Name: Anonymous 2009-09-03 1:32

>>90
Now rewrite it in OCaml

Name: Anonymous 2009-09-03 1:38

>>91
Why not HASKELL ?

Name: Anonymous 2009-09-03 1:50

I thought we already had HASKAL and Common Lisp implementations?

Name: Anonymous 2009-09-03 1:56

>>90
BUTT-UGLY

Testing: testing buttsort

Name: Anonymous 2009-09-03 2:01

>>94
Providing a mIRC implementation.
Usage: /bs testing buttsort
Can be used as an identifier, e.g. $buttsort(testing buttsort)
Caveat: Will not function well at all if the output ends up being > 900 characters. This means that you can only do roughly 90 characters worth of input text.

alias bs { say $buttsort($$1-) }
alias bbcode { return $+($chr(91), $1, $chr(93)) }
alias endbbcode { return $bbcode($+($chr(47), $1)) }
alias buttsort {
  var %text = $$1-
  var %output = $bbcode(b) $+ $bbcode(i)
  var %i = 1
  var %ctr = 1
  var %t = $len(%text)
  while (%i <= %t) {
    var %g = $mid(%text, %i, 1)
    var %spacequantity = 0
    while (%i <= %t && %g == $chr(32)) {
      inc %i
      inc %spacequantity
      var %g = $mid(%text, %i, 1)
    }
    if (%i > %t && %spacequantity > 0) { break }
    if (%ctr == 1) {
      var %output = %output $+ $str($chr(32), %spacequantity) $+ $bbcode(u) $+ %g $+ $endbbcode(u)
      var %ctr = 0
    }
    else {
      var %output = %output $+ $str($chr(32), %spacequantity) $+ $bbcode(o) $+ %g $+ $endbbcode(o)
      var %ctr = 1
    }
    inc %i
  }
  var %output = %output $+ $endbbcode(i) $+ $endbbcode(b)
  return %output
}

Name: Anonymous 2009-09-03 2:23

>>95
Thank you sir.  I will be using this often.

Name: Anonymous 2009-09-03 2:26

Testing three words

Name: Anonymous 2009-09-03 2:39

Testing Polynomial Buttsort

Name: Anonymous 2009-09-03 2:42

PBS = Polynomial Buttsort (TEST 2)

Name: Anonymous 2009-09-03 2:44

Now featuring SPOILERS!

Name: Anonymous 2009-09-03 2:48

>>98
Kinda cool
>>99
Getting retarded
>>100
Diarrhea Buttsort

Name: Anonymous 2009-09-03 2:51

>>101
Fuck your shit

Name: Anonymous 2009-09-03 2:58

lol I fucked it up... heres my output no matter what I put in:

null

Name: Anonymous 2009-09-03 3:03

>>98
I wish to acquire your software, good sir

Name: Anonymous 2009-09-03 3:32

>>104
I attempted to reverse-engineer his ButtSort as it appeared kind of random, and it turned out it was just that, split letters, wrap each letter in a random tag, and wrap it with b/i tags.

Polynomial Buttsort

Quick hack over my older implementation:


(asdf:oos 'asdf:load-op '#:split-sequence)

(defun wrap-tag (string tag)
  (if (null tag)
      ""
      (format nil "[~a]~a[/~a]" tag string tag)))

(defun wrap-tags (string &rest tags)
  (labels ((rec (string tags)
         (if tags
         (rec (wrap-tag string (car tags)) (cdr tags))
         string)))
    (rec string (reverse tags))))

(defun split-string (s)
  (map 'list #'identity s))

(defun pick-random (&rest args)
  (nth (random (length args)) args))

(defun bbsort-random (s &optional acyclic)
  (let ((seqs (if acyclic
          (mapcan #'(lambda (x) (list x #\Space)) (split-sequence:split-sequence #\Space s))
          (split-string s))))
    (wrap-tags
      (apply #'concatenate 'string
         (mapcar #'(lambda (x)            
             (if (member x '(#\  "" " ") :test #'equal)
                 " "
                 (progn                  
                   (wrap-tag x (pick-random 'b 'u 'i 'o 'sup 'sub 'code)))))
             seqs)) "i" "b")))


Maybe I'll integrate various buttsorts into it and make it more customizable(add lots of keyword args which can specify all kinds of characteristics of your desired buttsort) another day.

Name: Anonymous 2009-09-03 3:36

Damn, forgot to remove that PROGN which was left over from the previous version(it's harmless, but useless).

Name: Anonymous 2009-09-03 10:04

>>98-chan here Heres my ENTERPRIZE source.


import java.util.Random;
import java.util.StringTokenizer;

import javax.swing.JOptionPane;


public class buttSorter
{
    public static void main(String args[])
    {
        StringTokenizer st = new StringTokenizer(" ");
        String tempChar = "";
        String input = "";
        String output = "[b][i]";
        String next;
        int i = 1;
        String tags[] = new String[]{"b", "i", "o", "u", "code", "sup", "sub"};
        Random gen = new Random();
       
        input = "" + JOptionPane.showInputDialog(
                  null,
                  "What do you wish to Buttsort?",
                  "Buttsorter",
                  JOptionPane.PLAIN_MESSAGE,
                  null,
                  null,
                  "");
           
        try
        {
            st = new StringTokenizer(input);
        }
        catch(Exception e)
        {
            System.out.println("Tokenizer fucked up");
            System.exit(1);
        }
       
            while(st.hasMoreTokens())
            {
               
                next = st.nextToken();
               
                while(next != "")
                {
                    i = Math.abs(gen.nextInt()) % 7;
                    if(next.length() > 1)
                    {
                        tempChar = next.substring(0, 1);
                        next = next.substring(1);
                    }
                    else
                    {
                        tempChar = next;
                        next = "";
                    }
                   
                        output = output + "[" + tags[i] + "]" + tempChar + "[/" + tags[i] + "]";
                   
                }
                if(st.hasMoreTokens())
                    output = output + " ";
            }
            output = output + "[/i][/b]";
           
            System.out.println(output);
        JOptionPane.showInputDialog(
              null,
              "Enjoy your buttsort",
              "Buttsorter",
              JOptionPane.PLAIN_MESSAGE,
              null,
              null,
              output);
       
    }
}

Name: Anonymous 2009-09-03 10:41

DERP DERP DERP DERP DERP DERP

Name: Anonymous 2009-09-03 10:43

Testing kopipe'd polynomial source

Name: Anonymous 2009-09-03 10:47

Sometimes this one looks cool, but sometimes it just looks retarded.

Name: Anonymous 2009-09-03 15:14

>>#
I LOVE YOU! I LOVE YOUR POST! I READ IT null TIMES! KEEP POSTING!

Name: Anonymous 2009-09-03 15:24

Your face!

Name: Anonymous 2009-09-03 15:26

Test cycleing

Name: Anonymous 2009-09-03 15:30

Waveform Buttsort test go!

Name: Anonymous 2009-09-03 15:32

Test two. This one should be good to go.

Name: Anonymous 2009-09-03 15:50

Here is my implementation null null null null

Name: Anonymous 2009-09-03 15:52

The overline makes it look wierd. i took it out

Name: Anonymous 2009-09-03 19:28

testy frgg

Name: Anonymous 2009-09-03 19:30

GOOD OLD FASIONED FIBONACCI BUTTSORT

Name: Anonymous 2009-09-03 19:31

OOPS LETS TRY THAT ONE ONE MORE TIME

Name: Anonymous 2009-09-03 19:33

SAGE IF YOU"RE JUST TESTING YOUR BUTTSORT PLEASE

Also, >>119
Buttsort fail.

Name: Anonymous 2009-09-03 19:40

>>120
Your buttsort is out of proper phase.

Name: Anonymous 2009-09-03 20:03

I feel that I am not capable of programing buttsorts. Should I quit programming now or just try a lot harder?

Name: Anonymous 2009-09-03 20:06

>>123
Dont feel too bad about it. Buttsorts requires advanced knowledge of parsing and string manipulation. They are a good exercise for an expert programmer, but for a beginner like yourself you shouldn't try and tackle them until you've learned enough about the aforementioned subjects.

Name: Anonymous 2009-09-03 20:15

Name: Anonymous 2009-09-03 20:15

>>124-chan here. Disregard that, I suck cocks! Buttsorting might be advanced material for Prague, but in the grand Scheme of things it's a fairly elementary exercise for anyone with a few weeks of experience. Also, ignore my next post, since I'll just be trolling you with it anyway. Have a nice anus !!

Name: /prog/snake 2009-09-03 20:19

>>125 My Twitter is 2nd ;_;

Name: Anonymous 2009-09-03 20:22

>>125
A Fibonacci Buttsort is an operation that can be performed on a string which outputs the string with alternating underline and overline tags.
THIS IS A FIBONACCI BUTTSORT

Name: Anonymous 2009-09-03 20:55

>>128
oh great master enlighten us in the ways of the
FIBONACCI BUTTSORT

Name: Anonymous 2009-09-03 20:58

YOU FORGOT YOUR BOLD AND ITALIC TAGS

Name: sage 2009-09-03 21:05

>>130
Why do you think that I asked for help?
You forgot to sage, FTFY

Name: Anonymous 2009-09-03 22:19

>>111
WTF IS super(THIS); SHIT?

Name: Anonymous 2009-09-04 4:53

>>123
Uh. It's really simple string manipulation. You may want to consider your skill in various other problem domains before reaching a decision.

Name: Anonymous 2009-09-04 6:19

HELLO CHRYZZY

Name: Anonymous 2009-09-06 13:46

LOL SORTING STEPHANIE'S BUTT!

Name: Anonymous 2009-09-06 14:08

stuff = map(int,raw_input('Enter your numbers:').split(' '))
stuff.sort()
for num in stuff:
    print num,

Name: Anonymous 2009-09-07 7:22

############_________###_____________________________________###_________############
#############_______###____######_____________________________###_______#############
___________###______###___##____##____________________________###______###___________
___________###_____###____##____##_______________########______###_____###___________
____________###___###______######_______________##______##______###___###____________
____________###___###__________________________##________##_____###___###____________
_____________###__###__________________________##________##_____###__###_____________
_____________###__###___________________________##______##______###__###_____________
______________###__###___________________________########______###__###______________
______________###___###_______________________________________###___###______________
_______________###__###_______#################_______________###__###_______________
_____________________###______#################______________###_____________________

Name: Anonymous 2009-09-07 12:29

just testing
expert programmer

Name: Anonymous 2009-09-07 12:38

-- buttsort.hs - an implementation of the Fibonacci Buttsort
import Data.Char (isSpace)
import Control.Monad.State

data Tag = Tag String
           deriving (Show, Eq)

class Text a where
    value :: a -> String

instance Text Char where
    value = (:[])

instance (Text a) => Text [a] where
    value = concatMap value

(<<) :: (Text a) => Tag -> a -> String
infixr <<
(Tag t) << x = "[" ++ t ++ "]" ++ value x ++ "[/" ++ t ++ "]"

[b, i, o, u, m] = map Tag ["b", "i", "o", "u", "m"]

buttsortW, buttsortC :: String -> String
buttsortW = (b <<) . (i <<) . unwords . zipWith (<<) (cycle [u, o]) . words
buttsortC = (b <<) . (i <<) . concat . flip evalState (cycle [u, o]) . mapM f
  where f c = if isSpace c then return [c]
                else do t <- get
                        modify tail
                        return $ head t << c


EXPERT HASKELL PROGRAMMING

Name: Anonymous 2009-09-07 17:24

>>139
That looks remarkably like the one I posted in the other thread — whereëver it went — in the control flow and use of cycle, anyway.

________
tag t str = "[" ++ t ++ "]" ++ str ++ "[/" ++ t ++ "]"
[b,i,o,u] = tag `map` words "b i o u"

dabs = b . i . unwords . zipWith id (cycle [o,u]) . words
fbs = b . i . concat . flip evalState (cycle [o,u]) . mapM f where
    f ' ' = return " "
    f c = (liftM . concatMap) ($ [c]) (State $ splitAt 1)

Name: Anonymous 2009-09-07 18:44

>>140
Great minds think alike, I guess.

Name: Anonymous 2009-09-07 19:47

TESTING MY TOUPPERCASE BUTTSORT (*83

Name: Anonymous 2009-09-07 19:48

>>142
FORGOT MY SAGE

Name: Anonymous 2009-09-07 19:50

>>142
>>143
Too little, too late.

Name: Anonymous 2009-09-09 8:56

Name: Anonymous 2009-09-09 15:29

>>145
What is the meening of this poast?

Name: Anonymous 2009-09-09 15:40

>>146
( ≖‿≖)

Name: Anonymous 2009-09-09 15:45

>>146
RedCream Detected

Forgot your poohippo@hotmail.com, bro

Name: Anonymous 2009-09-09 22:52

[tt]test[/tt]

Name: Anonymous 2009-09-11 0:05

>>149
fail

Name: Anonymous 2009-09-15 22:55

fibonaccci butt sort

Name: Anonymous 2009-09-17 4:42

FIBONACCI BUTT SORT

Name: Anonymous 2009-11-14 15:06

[u]fi[]/ubo[]/un[]/u[]/uacci[]/u []/u[]/ubu[]/u[]/uttsor[]/u[]/u

Name: Anonymous 2009-11-14 15:09

>>153
LOLLING

^^^^ HAY EVERYONE LOOK AT THIS INTENSE FAILURE ^^^^^^

Name: Anonymous 2009-11-14 15:12

>>153
ahahhahhahahahha!

Name: Anonymous 2009-11-14 15:47

SCUURMPSRHIOSTE

Name: Anonymous 2009-11-14 15:51

>>156
Now that's just mean.

Name: Anonymous 2009-11-14 20:11

PBAANMTPSUU

Name: ¬¬ 2009-11-14 20:23

>>156
I wasn't surprised at all

Name: Anonymous 2009-11-14 20:32

ithinkit'stimetokillyourself

Name: Anonymous 2009-11-14 23:31

That's good, I was kind of missing the buttsort.

Name: Anonymous 2009-11-14 23:33

i wouldn't mind /b/ share some foolproof an hero methods.

p.s. i don't have an ipod.

Name: Anonymous 2009-11-15 17:17

Hey /prog/.

Name: Anonymous 2009-11-23 23:56

>>153


^^^^ HAY EVERYONE LOOK AT THIS INTENSE FAILURE ^^^^^^[/b][/b][/b][/b][/b][/b]

Name: Anonymous 2009-11-24 5:21

BUTTSORT MY ANUS

Name: Anonymous 2009-11-24 5:25

>>165
That's kinda the point.

Name: Anonymous 2009-11-24 5:32

>>165
ANUSSORT MY BUTT

Name: Anonymous 2009-11-24 5:36

Anyone noticed this thread is not threadstopped? Because the same faggot that posted >>1 makes the spam!

Name: Anonymous 2009-11-24 5:36

>>168
wat. email: sage. where's that?

Name: Anonymous 2009-11-24 5:37

lol 4chan disabled email

Name: Anonymous 2009-11-24 5:41

test

Name: Anonymous 2009-11-24 5:41

>>168
Precisely.

Name: Anonymous 2009-11-24 5:42

Well, buttsorting an anus is a bit like sorting an AVL tree.

Name: Anonymous 2009-11-24 5:43

HAXUS THE EMAIL

Name: Anonymous 2009-11-24 5:44

FUCK the Haxus meme just got haxed.

Name: Anonymous 2009-11-24 6:33

h

Name: Anonymous 2009-11-24 6:59

>>173
Don't you hate the kind of trolls that troll a board simply by putting technical terms together? also every idiot that'll jump in and say "but I know how to sort AVL trees!" AVL trees do NOT get sorted. They are self balanced you you!

Name: Anonymous 2009-11-24 8:13

>>177
lol lol i trol u

Name: Anonymous 2009-11-24 8:20

>>177
How old are you 12? Its either that or you're clearly retarded either way. I'd rather be 5ft 6 than be as retarded as you.

Name: Anonymous 2009-11-24 10:13

>>177
Balancing involves sorting... they are just refering to being able to properly implement an AVL tree including the balancing (or sorting) aspects.

It's obvious to me, you must just have assburgers.

Name: Anonymous 2009-11-24 10:16

yea!

Name: Anonymous 2009-11-24 10:17

[newlineInjection]\n[/newlineInjection]

Name: Anonymous 2009-11-24 10:20

Name: Anonymous 2009-11-24 10:20

%0A%3C/span%3E%3Cspan%20class=

Name: Anonymous 2009-11-24 10:25

‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂
‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂
‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂
‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂
‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂

Name: Anonymous 2009-11-24 10:28

◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂
‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂
‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂
‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂
‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂‬◙◙◙◙◙◙◙◙◙◙◙‍╩╩╩╩⌐∂

Name: Anonymous 2009-11-24 10:29

Name: Anonymous 2009-11-24 10:35

TRUE TRUTH EXPERT

Name: Anonymous 2009-11-24 10:37

>>30
GHCi, version 6.10.4: http://www.haskell.org/ghc/  :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer ... linking ... done.
Loading package base ... linking ... done.
[1 of 1] Compiling Main             ( fibs.hs, interpreted )

fibs.hs:1:11: Not in scope: `b'

fibs.hs:1:15: Not in scope: `i'

fibs.hs:1:30: Not in scope: `u'

fibs.hs:1:33: Not in scope: `o'
Failed, modules loaded: none.
Prelude>


WHAT?

Name: Anonymous 2009-11-24 11:08

YET ANOTHER HASKELL FAILUER

Name: Anonymous 2009-11-25 1:01

>>177
AVL trees do NOT get sorted. They are self balanced you you!

   joke
  _____
 /     \
/  you  \

Anii do not need buttsorting, they are self buttsorted

Name: Anonymous 2009-11-25 1:06

>>191
win

Name: Anonymous 2009-11-25 12:29

There is always a cheek to the left, one anus, and a cheek to the right, so I guess butttrees are naturally quite well-balanced.

Name: Anonymous 2009-11-25 16:08

Left cheek anus right cheek, arranged in an infinite set of Penrose tiles.

Name: Anonymous 2009-11-26 5:32


(defun compose (&rest fns)
  (if fns
      (let ((fn1 (car (last fns)))
        (fns (butlast fns)))
    #'(lambda (&rest args)
        (reduce #'funcall fns
            :from-end t
            :initial-value (apply fn1 args))))
    #'identity))

(defun cycle-fns (&rest functions)
       (let* ((n (length functions))
          (p 0)
          (array (loop
                with a = (make-array (list n)
                         :element-type 'function
                         :initial-element #'identity)
                for function in functions
                for i from 0 to (1- n)
                do (setf (aref a i) function)
                finally (return a))))
         (lambda (&rest args)
           (prog1
           (apply (aref array p) args)
         (setf p (mod (1+ p) n))))))

(defun bbcode (tag)
  (lambda (i)
    (format nil "[~A]~A[/~A]" tag i tag)))

(defun fibonacci-buttsort (string)
   (funcall (compose (bbcode "b") (bbcode "i"))
        (with-output-to-string (s)
          (mapc (lambda (x) (princ x s))
            (map 'list (cycle-fns (bbcode "o") (bbcode "u"))
             string)))))


EXPERT ARTIST

Name: Anonymous 2009-11-26 5:40

>>195
Come to think of it, i could get rid of (map 'list ...) by composing (princ ... s) with (cycle-fns ...)

Name: Anonymous 2009-11-26 5:52

>>195
Your cycle-fns function seems unnecessarily complicated, why not just use a circular list + pop or something like:

(let ((ht (make-hash-table :test #'equal)))
  (defun cycle (&rest args)
    (symbol-macrolet ((h (gethash args ht)))
      (unless h (setf h args))
      (pop h))))

Name: Anonymous 2009-11-26 9:05

>>197
stop using symbol-macrolet like a C preprocessor.

Name: 197 2009-11-26 9:26

>>198
AFAIK, the way I'm using it is perfectly valid, and is one of the intended usages of the SYMBOL-MACROLET special operator. In that example, h represents the place of the arguments list in the hashtable, when used directly, you use the accessor to obtain the value, when used during SETF, you write to that place, so the symbol h represents a place within the hashtable. CL has things like WITH-SLOTS, which does the exact same thing - abstracts a place which points to a location within some object, and treats it like a symbol, which is perfectly fine usage. What is your argument against this?

Name: Anonymous 2009-11-26 13:57

buttsorted binary dicks tree

Name: Anonymous 2009-11-27 3:45

>>197
It's because I'm an EXPERT ARTIST, not an EXPERT PROGRAMMER

But, thanks for tips.

Name: Anonymous 2009-11-27 22:25

[b]te st ing[/b]

Name: Anonymous 2009-11-27 22:26

TURNKEY

Name: Anonymous 2009-11-28 7:17

bbcode test
for(;;) {
    int x;
}

Name: Anonymous 2010-01-21 8:43

BAMPU PANTSU

Name: sage 2010-01-23 13:48

no bampu 4 u

Name: Anonymous 2010-01-23 13:49

>>206
u sure?

Name: Anonymous 2010-03-11 19:31

VALID BF CODE

++++++++++[->++++++++++<]>[->+>+>+>+>+>+>+<<<<<<<]<+++++++++
+[->+++++<]>[->>>>>>-<<<<<<]>--------->-->+++++>+++++++++++>
+++++++++++++++++>--->------->>++++[-<++++++++>]<<<<<<<<.>>.
>>>>.<<<<<<.>.>>>>>.[<]<,[--------------------------------[>
]>[.>>>>.>>.<<<<<<<<++++++++++++++++++++++++++++++++.>>.>>>>
>.<.[->>>>>+<<<<<]<[->>>>>+<<<<<]>>>>>[-<<<<+>>>>]>[-<<<<<<+
>>>>>>]<<[<]<[-]]>>>>>>>>.[<]<,]>>.>>>>>.<<<<.>>>>>.<<<<<<.>
>>>>.<<<.>>>>.

Name: Anonymous 2010-03-11 19:54

>>208
Valid BF code

Name: Anonymous 2010-03-11 22:34

>>208
You know I very nearly implemented a butt sort in befunge. Keeping track of state in befunge kinda blows, unless you're doing something like this:

v>>31g> ::51gg:2v++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9p BXY|-+<v3*89<%+ *                                                      *   +
21 >98 *7^>+\-0|<+ *                                                     *    +
*5 ^:+ 1pg15\,:< + *                                                     ***  +
10^  <>$25*,51g1v+                                                            +
-^ p<| -*46p15:+<+                                                            +
31^> 151p>92*4v+                                                            +
 ^_ ".",   ^ vp1<+                                                            +
>v >41p      >0 v+                                                            +
:5! vg-1g15-1g14<+                                                            +
+1-+>+41g1-51gg+v+                                                            +
1p-1vg+1g15-1g14<+                                                            +
g61g>+41g51g1-g+v+                                                            +
14*1v4+g+1g15g14<+                           * *                              +
5>^4>1g1+51g1-g+v+                           * *                              +
^ _^v4+gg15+1g14<+                           ***                              +
>v! >1g1+51g1+g+v+                                                            +
g8-v14/*25-*4*88<+                                                            +
19+>g51gg" "- v  +                                                            +
4*5  v<   v-2:_3v+                                                            +
 >^   |!-3_$  v<-+                                                            +
^    < <      <|<+                                                         ***+
>g51gp ^ >51gp^>v+                                                            +
^14"+"<  ^g14"!"<++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

... which is kind of awesome.

Name: Anonymous 2010-03-12 0:13

>>210
I've occasionally thought about implementing a macro language for befunge, perhaps similar to brainfuck's Pebble. It could be useful since befunge offers very little in the way of abstraction.

I haven't really thought about this in any great detail, however, so I'm not sure how it would work. I'm not even sure what the exact goals would be. I'd be interested to see what thoughts other people have on this matter.

The main downside to this is, that I can foresee, is that it then becomes harder to write self-modifying code: you don't know where things are going to be or their precise layout.

Name: Anonymous 2010-03-12 9:03

>>211
I seem to recall some sort of support for modules or something similar in Funge-98. I could be mistaken, or it might have been considered and left unpsec'd or something. (I didn't see it in the spec just now, but I didn't look very hard either.)

Name: Anonymous 2010-03-12 13:17

>>212
There's the "fingerprint" extension mechanism, and some interpreters support mechanisms of writing fingerprints in befunge itself, but I'm not sure it really achieves what I want.

Name: Anonymous 2010-03-12 13:46

Oh is that what that was about? I did pay attention enough to notice the fingerprint registry is down.

Name: Anonymous 2010-04-04 0:41

What!?!

Name: Anonymous 2010-04-04 0:41

WHAT!?!

Name: Anonymous 2010-04-04 0:45

>>215,216
[O],[/U]!

Name: Anonymous 2010-04-04 1:05

[/O]

Name: Anonymous 2010-04-04 3:34

FBYBTSRE

Name: av !AEboxxyE2Q 2010-04-04 4:24

dv

Name: Anonymous 2010-04-04 17:43

Fibonacci Butt Sort

Name: Anonymous 2010-04-04 17:45

Woohoo I did it!

Name: Anonymous 2010-04-04 18:20

I_I_I_I_I_I_I Testing Buttosrt I_I_I_I_I_I_I

Name: Anonymous 2010-04-05 21:56

FIBONACCI BUTT SORT

Name: Anonymous 2010-04-05 21:56

FIBONACCI BUTT SORT

Name: Anonymous 2010-04-05 21:57

FIBONACCI BUTT SORT[

Name: ‏ 2010-04-08 2:28

Name: Anonymous 2010-04-26 15:28

Threar Necromancy PART III

Name: Anonymous 2010-04-26 15:34

>>228
Wow, FBS is almost at nostalgia level now.

Name: Anonymous 2010-04-26 16:20

>>229
UMENA"NOSTALGICBUTT SORT"

Name: Anonymous 2010-04-26 16:52

>>228-230
No. Go away.

Name: Anonymous 2010-07-23 3:47

buttsort my bampu pantsu

Name: Anonymous 2010-07-23 4:24

FIOC:
butt = raw_input('Sting to butt sort: ')

sortedbutt = '[b][i]'
tag = 'u'
for char in butt:
    if char == ' ': # space does not use tag
        sortedbutt += ' '
    else:
        sortedbutt += '[' + tag + ']' + char + '[/' + tag + ']'
        tag = {'u': 'o',
               'o': 'u'}[tag] # switch tag

sortedbutt += '[/i][/b]'
print sortedbutt


Befunge:
vu                   >:" "`!#v_ "[",10g,"]",,"[","/",10g,"]",v
>"]i[]b[">:#,_>~:01-`|       ,             vp01"u"< <
       >:#,_@ ^              <             <p01"o"<_^#`"t"g01<
       ^  "[/i][/b]"$<

Name: Anonymous 2010-07-23 5:02

The best way to increase cum load size is to be very hydrated, ... these essentially unhealthy foods will increase your fitness level and as ...
www.lpsg.org › Main › Penis Enlargement - Cached - Similar
Cum Load Increase - Page 4‎ - 15 posts - Apr 19, 2006
Cum Load Increase‎ - 15 posts - Jan 6, 2006
Any of you take supplements to increase your load?‎ - 4 posts - Feb 21, 2005

More results from lpsg.org »

Name: Anonymous 2010-07-23 11:33

bampu pantsu

Name: Anonymous 2010-07-23 11:56

>>234
That doesn't handle newlines very well.

Name: Anonymous 2010-07-23 14:51

Sequence do (
        tag := method(t, "[" .. t .. "]" .. self .. "[/" .. t .. "]")
        forward := method(self tag(call message name))

        fibs := method(
                fibo(list(), self) join b i
        )

        fibo := method(l, s,
                s at(0) ifNil(return l)

                q := s splitAt(1)
                l append(q at(0) o)
                fibu(l, q at(1))
        )
        fibu := method(l, s,
                s at(0) ifNil(return l)

                q := s splitAt(1)
                l append(q at(0) u)
                fibo(l, q at(1))
        )
)


Not very expert, I know.

ugly too

Name: Anonymous 2010-07-23 17:22

>>237 Fixed:

import sys

if len(sys.argv) == 1:
    filename = raw_input("File to buttsort: ")
elif len(sys.argv) == 2:
    filename = sys.argv[1]
else:
    exit("Wrong number of arguments.")

butt = file(filename).read()

sortedbutt = ''
tag = 'u'
for char in butt:
    if char in ' \t\n\r': # space does not use tag
        sortedbutt += char
    else:
        sortedbutt += '[' + tag + ']' + char + '[/' + tag + ']'
        tag = {'u': 'o',
               'o': 'u'}[tag] # switch tag

sortedbutt += '
'
print sortedbutt

Name: >>239 2010-07-23 17:23

Whoops, pig disgustingly forgot code tags:

import sys

if len(sys.argv) == 1:
    filename = raw_input("File to buttsort: ")
elif len(sys.argv) == 2:
    filename = sys.argv[1]
else:
    exit("Wrong number of arguments.")

butt = file(filename).read()

sortedbutt = '[b][i]'
tag = 'u'
for char in butt:
    if char in ' \t\n\r': # space does not use tag
        sortedbutt += char
    else:
        sortedbutt += '[' + tag + ']' + char + '[/' + tag + ']'
        tag = {'u': 'o',
               'o': 'u'}[tag] # switch tag

sortedbutt += '[/i][/b]'
print sortedbutt

Name: Anonymous 2010-07-23 17:54

New challenge.
ACNOUCSKTSAOIRLT

new = ""
s1 = raw_input("Top line: ")
s2 = raw_input("Bottom line: ")
s1 = s1.center(max([len(s1), len(s2)]))
s2 = s2.center(max([len(s1), len(s2)]))

for i in zip(list(s1), list(s2)):
    new += "[sup][code]" + i[0] + "
[/sup]" \
        +  "" + i[1] + ""
print new[/code]

Name: Anonymous 2010-07-23 18:14

Offtopic, back to /retard/, please.

Name: Anonymous 2010-09-14 22:20

FIBONACCI BUTTSORT

Name: Anonymous 2010-11-16 17:29

>>73
Imagining it right now.

Name: Anonymous 2010-11-16 19:13

>>244
Hi, please take your shit elsewhere, kthxbye.

Name: Fuck off, !Ep8pui8Vw2 2010-12-07 11:00

>>75,242
Fuck off, ``faggot''.

Name: Anonymous 2010-12-07 11:58

This is just one of those threads that never seems to die.
It brings back such good memories of a time less complicated.
The real world of college is quite painful.

Name: Anonymous 2010-12-07 12:15

>>247
You think that having a life of no responsibilities is painful? You better recognize.
Sage your shit posts too, faggot.

Name: Anonymous 2010-12-07 12:16

>>247
This is just one of those threads that never seems to die.
Not if that autistic kid sagetanks it.

Name: Anonymous 2010-12-07 13:02

>>249
It's not spam/stupid, I have no reason to do it.

Name: Anonymous 2010-12-07 13:25

TESTINGMYBUTTSORTER
TESTINGMYBUTTSORTER
WITHDIFFERENTPRELUDE

Name: Anonymous 2010-12-07 13:33

FIXED THE WHITESPACES

Name: Anonymous 2010-12-07 18:31

[spoiler]
[m][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub][sub]
Well look at this now!
[/m]
[/spoiler]

Name: Anonymous 2010-12-07 18:43

>>253
Fuck off, you flaming ``faggot''

Name: Anonymous 2010-12-07 18:43

>>253
I'm looking, but I don't see it.

Name: Anonymous 2010-12-07 19:44

[sup]S[sup]h[sup]u[sup]t[sup] [sup]u[sup]p[sup] [sup]y[sup]o[sup]u[sup] [sup]f[/sup]u[/sup]c[/sup]k[/sup]i[/sup]n[/sup]g[/sup] [/sup]f[/sup]a[/sup]g[/sup]g[/sup]o[/sup]t

Name: Anonymous 2010-12-07 19:44

Shut up you fucking faggot

Name: Anonymous 2010-12-07 19:45

Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus Hax my anus

Name: Anonymous 2010-12-07 20:45

(require 4chan)

(define s "Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. ")
(string-append
 (bb:foldl bb:sup s)
 (bb:foldr bb:sup s)
 (bb:foldr bb:sub s)
 (bb:foldl bb:sub s)
 ((bb:default-buttsorter (bb:compose bb:u bb:sup)
                         (bb:compose bb:o bb:sub)) s))

Name: Anonymous 2010-12-07 20:45

Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please. Go back to /b/, please.

Name: Anonymous 2010-12-07 20:50

>>255

[spoiler]
[sup][sup][sup][sup][sup][sup][sup][sup][sup][sup][sup][sup][sup][sup][sup][sup]
[sub]because I suck at bbcode
[/spoiler]


[/sup][/sup][/sup][/sup][/sup][/sup][/sup][/sup][/sup][/sup][/sup][/sup][/sup][/sup][/sup][/sup]

Name: Anonymous 2010-12-07 20:55

>>216
I hereby express my amusement at this post.

Name: Anonymous 2010-12-07 21:03

>>260
What key is that in?

Name: Fuck off, !Ep8pui8Vw2 2010-12-07 21:23

>>260
Fuck off you shit-eating ``faggot''.

Name: 262 2010-12-07 21:25

Not that post you nonce, I mena >>261

Name: Anonymous 2010-12-08 4:25

Lets to a gay version

Name: Anonymous 2010-12-17 1:28

Xarn is a bad boyfriend

Name: Anonymous 2010-12-20 16:45

Name: Anonymous 2011-02-03 4:14

Name: Anonymous 2011-03-01 6:00

bump for the survival of prauge

Name: Anonymous 2011-03-01 8:30

FIBONACCI BUTTSORT

Name: Anonymous 2011-03-01 8:39

sort numbers everyday

Name: Anonymous 2011-03-01 9:16

.------------------------------.--.--.--...--.---.-.--...---.---..------..----.-.-..--..-.-.........
-------------------------------------------------------------------------------------.--------..----
---------------------------------------:://++++++ooo++/:----------------------------------------.---
----------------------------------/oydNNNNMMNNNNNNmmdhhhyyso+//:-.------.----.-...----..----------..
-----------------------------/+sdNNNmNMNmNmmhysssyhyso++oooooo+++//----.....--.---....-----...-...--
-------------------------:ohmmNNNmNNmNmmmmdyyhdmmdyo:///////////+///::---.--------.--------.......--
---------------------:+ohddddhhyyyyysysssssyhdmmmdyo++++++oo++////////+/:--.-----------.---.....-...
.------------...-:shhddmmNmhyyso+///++++ososssyyddddddhhdmmmhh////////++//-.........--..............
.----------..-/ohdmmmmmdhys+//+syhdddhdyhyoo++++++///+//+ooooso++/+++++++o+:....-.......-...........
----------:+shmdmNmNhyso///+oyNMMNmhdyysso++//::::::::-----::://+o/:/+oo+++o/-.---..................
--.-------odddmdmmdhyo/://+ymNNNmdhyysso////:::::::::::--------::+s+-://+osoo+----....--............
.-.-----..-:oshhhyo+/::::+dNMNmmhhysysoo++++////:::::-------------os---::-/osy+-......-.............
...--........-:+hs/::::/hNMMNNdddhysso+//+//////::::::------------+y+--:::--+o+:....................
.-----------..+dMNs://sdMMNmdhysyyssooo++o/++++o++sooo+/:-:------:+hy:--::--::::-...................
.-----------:oNMNMmo+dmNNmhhhysoo++/:---........-.--:/sysso/:---:/ohd+--::--:/::--.-.-..............
--.---.--.-/dNMMNmhyNMmmhhhyo/:::------...............-//+syho:::/ydms---:---+/::-..-...............
.-.-----./dNMMNNNNMMNmhhhyo+/::::------------.........--:::/sddy/:+ymh:--:---++:-:-.................
--------omMMMMNMMMMMmhdhso+//:::-----:::-------.......---:::/sdmNh//hh:--/:--/o:-:-.................
--------yNMMNmNMMMMMhhmyo+/::-------::::::::::::----...---::+syhNNmyhh/--//--:o/::/-................
--------:shdmmmmmNMNddNhssssoo+/:---::///oyhdmddhyoo/:----://shydNMMNd/--:+:-:++::/-................
------------:/shdmmNdNNdyyhdNNNms/:::::/oydNmmdmdyoo+//::--:/yhsyNMMMm+--:o+-:/+::::................
.--------------:+sdmMMNhsyhyhhdmmy/:::/+sdNNNmhyyyhhs+//::::/ymdhmNMMm+:-:o+::-:-://................
----------------.-+hNMMdhdyyhhsshy/---/+shmmdhyhdhsssyo+//::/smNNNMMMm+/::+o:-:::///-...............
-------------------/mMMNhs+hNNhooo:---:-:/oss++hmms++++/::/::+dmMMMMMm+//:+y+::+++:/-...............
--------------------+NMMmhsoooooo:-.-:----:/oo++++/::------::/ydNMMMMN+/::/dy/:/++::-.....---.......
--------------------+hMMdhhhhyym+---::------/+oo/::::-------:/osmNMMMNo///+hm+::+/:/:------.........
---------::---------:+mNyo+++sNd/---------------------------:/+smMMMMNo:/:/yNy/:/+++:.--............
----------------------smyo+++hNs:-------------------..----::://+hmMMNNs////yMmo:://+/...............
----------:-----------:ydho+sNd+--------::---------------::://:/+shhshy+//+hMNy+:/+//-..............
-----------------------+mNdydNmo::/++ooo/:-::::--------:::::/:::::++ymdo//+hNMdo://+/-..............
-----------::-:---------hNMNNmNmddddy+++:--::::::::-::::::::::::/oooNMd+//+mddds///++-.-.---........
------------:--------:--+dMNmNmdsyys:--::::-::::::--:::::::::::/:/+odMmo//+dyomdo////:..............
.----------:::-----:-:---oNMmNNho+/::-::::::::-:::----::-:::::/:::::dNms/:+hy+yhs////:..............
----------:-:--::--:-::---yNNNNmhmdy+ooo+/+ohy+::::-----:::::::----:oNNhs+/sdsodho:/+:.....-..-.....
---:::-:::::::::::::::----:hmdyohddyssooso+/::::::----:-::--::---.--+hNmhs//o++hds//+-.--...........
----::::::://:+/::---------:hdddhhyyo+/:-----:-::----------:::-....--+mNmh+:///shy///-.-..........-.
--::::::://////::::::---:----+hdhhhddhyo/::::--::--------://:--..----:hNMNh+::/+hyo/+--...........--
---:::/://////////:::::::----.-+hho/:----------------::://----..---::sdNNMMNs::/sys++-.......-------
---::://////////+//::::::-------/syo:------------:::/+o+:----------/hmNNMNNMNh+/syyo+-.--..---------
---:::::::////////:///:::::-------sys+/::-:::://+ohdyo/-----..---:sdmMNNNNNNNNh+syso+-....-.--------
------:::://://::/::::::::::-------:/+++ssosyymmmd++:-:--------:oydmNNNmmmmmmNNNhyyo+-----------:::-
------:://////////:///::::::::------::-:hmmmNmdy/:--:-------:+symmNmmmhhhdmNNmmNmNmho---------:-::::
-----:://+o+oo+oo+//////::::::-:--::---:sdddyo/:----::--:+oshdmNNNmmdhhhhhdmNmdmmmNNmds+:-:-:-:-::/:
--::://++osooooooo++//////:/:::::::-/+yddddhs+/:::::/+oyyhmmNNNMNmdhdhyyhhddddmddddmNMNNdy+/::-:::::
:/++++osoossooo+oo++++//////:::::+shmNMMNmdmhsooosyhdmmNmNNMNNNNmhhhddhhhhhhydhdhhdmNNNNNNNdy+:::///
:/+++++oooooooo++o++++++//////oydNMNMMMMNNNNmNNmNmmNNNMMMMNNmmNmhhhdhhdhyhhhyhhhhyddNmNmNNNNMNhs+/+/
:///+/+ooooooooo+o+++/++++osdmNMMMMMMMMNMNNNNNMMMNNNNNNNMNmmdmmdhhhdhhhhhhhyyyyyyyhhddmmNNNNNMNNmyo+
:::///++oooooo+++++++/++shmNMMMMMMMMMMNNNNmmMNMMNNMMNNNNMNdhdddyhhhhhhhhyyhyyyyyyyhhhddmNNNNNNNMMNmh
::://++++ooo+ooo+ooosydmNMMMMMMMMMmNMNmNNddmMMNmNNNMNmmmmdhhyhhhdhdhyhyyyyyyyyhyyyyhhhdmmmmmNNMMNNMN
-:://///+++ooooo+oyhmMMNNNNNNNNNNNdmmdNNdydmNMNNNNNNddmNdhhhhhhhhdddhyyyssyysyyyyhyyhhddhddmmNNNNNMN
:::://///+++o++shmmmmMMMNNNmNmNmmdmmhmmdyymmmmmmdmmdddmmdhdhhhyyhdhhyyyyyyyyyyysyyssyyyhhhhhdddmmNMN
:::://////+/+sdmNNNNNMNNNNmmdmmdhdmhddhyyhdmmddddddhdNNmhhhhhhyhdhhyyyyyyyysyyyssyssyyyhhhyhhhddmmNN
::::///+++oohmmNNNNNNNmmmdmdhhhhmdydmhysydmmdhdhhmhdhNmdhhhhhyyhdhsyyyyyyysyyssssssssssyyhyyhhhdddNN
:/:///+++ohmNNmNNNmNNmmmddddhyhmmdhmdyyydmmmdddyddyhdmmmdddhhhyhhhyyhhhhyyyyyyysssssyyssyyyhhhhdddmm
:////+++oymmmNmmmmmmmNdddmmhyhddhdhdysyydmddmddhdhyydNNNmmdhyyhdyhyhyhhyyyysyyyhysosyyyyhhhhhhdhhhdd
//+++oooydmmmmmmmmmmmdhddmdyhddhhdhyyyhddmyhddhhhysydNNNmdhyyyyyyyyhyhhhyyyyyhyyyssyhyssyyyyyhhhhhhd
:/+++osddmdmmddddddhdhhhddyymmhhddhyyhhddmdhddhyyysydmdmdhyyyyyhhyyhhyhhhhhshhyyyyyhhyyysyhyhhyhhhyy
:+/++odddmmmmddhddddyyhdhyshdhhhdyyyhyddmNmmNmhyyyshdmmddhyyyyyyhhhhhhhdhyhyysysyyhdysyysyhhhhhhyyyy
://+shddddmmmddhmmdhysddsyhdhhhhhyyhdhmmmmNNNdhhyyhdmmmdhyyyhhyhhhyhyhhdhhhyyyyyyydhysyyyyyyhhyyyyyy
:/+ohdddmdmddhyhddysyyhhssddhdmdyyhdhydmNdNdhyyhyyyhmmmdyhyyyyyhhyyhhhdhhyyyyyhhhddhyyyyyyyhdhhhhyhh
:/+yddddddddyssyhyssssyosydyddhhsyddhhmmNddhhddyyhyhmmdhyyyysyyyhyhhyyhhysyyyyssshhysyyyyyhhysyyyhmm
/+yhddddddhhysyhysssssooydhyddyyyddyhmNNNddddddhddhdmmmdhyyyhysyyyyhhhhyyyyyyyyshdhssyhhhdhyyyhhdmNd
/shhddddddyyssyhsososoosddsydhysyyyyhdmNmdmmmddhhdddNNmhyyyyyyyyyyhyshhyyyyyyhyyhdssyyydmdhyhhdmNNdy
ohhdddddhysoooyyssoossshhhyhdhsssysydmmmddmNNNdhdhhdmNmyyyyyyyyyhhyyyyyyhyyyyysydhysyydNdhhhddmNmdhh
syyhdddhssooossooosoooyhyyydhyyyhhhhhdmmhmNmNdhddhhdNNdhyssyyyyyysyyyyhyhssssoohddyoyymmhhhhdmNmhyyh
oshdddhsoo++ssso+oooooyhysddyyhhddssdmNmhddhhhhdhhhmNNdhysssysyyyyyyyhhyhysyyyyhmmsoshdyyyhhmNmdyyys
sshhdhysoo+ooo+o++oooyhssyhsyhdhhssshdmmhhhyhhhhyydhmmdyssssyyyssysosyssyssysosdddyssysssyhdmmhhhyyy
+shhhyo++++ooo+++o++oyyssssyyyyssooohddhssyyhhhysshhmdysssyyyyssssssssyysossssshhyssssysyhdddyhhyoss

Name: Anonymous 2011-03-01 10:03


.------------------------------.--.--.--...--.---.-.--...---.---..------..----.-.-..--..-.-.........
-------------------------------------------------------------------------------------.--------..----
---------------------------------------:://++++++ooo++/:----------------------------------------.---
----------------------------------/oydNNNNMMNNNNNNmmdhhhyyso+//:-.------.----.-...----..----------..
-----------------------------/+sdNNNmNMNmNmmhysssyhyso++oooooo+++//----.....--.---....-----...-...--
-------------------------:ohmmNNNmNNmNmmmmdyyhdmmdyo:///////////+///::---.--------.--------.......--
---------------------:+ohddddhhyyyyysysssssyhdmmmdyo++++++oo++////////+/:--.-----------.---.....-...
.------------...-:shhddmmNmhyyso+///++++ososssyyddddddhhdmmmhh////////++//-.........--..............
.----------..-/ohdmmmmmdhys+//+syhdddhdyhyoo++++++///+//+ooooso++/+++++++o+:....-.......-...........
----------:+shmdmNmNhyso///+oyNMMNmhdyysso++//::::::::-----::://+o/:/+oo+++o/-.---..................
--.-------odddmdmmdhyo/://+ymNNNmdhyysso////:::::::::::--------::+s+-://+osoo+----....--............
.-.-----..-:oshhhyo+/::::+dNMNmmhhysysoo++++////:::::-------------os---::-/osy+-......-.............
...--........-:+hs/::::/hNMMNNdddhysso+//+//////::::::------------+y+--:::--+o+:....................
.-----------..+dMNs://sdMMNmdhysyyssooo++o/++++o++sooo+/:-:------:+hy:--::--::::-...................
.-----------:oNMNMmo+dmNNmhhhysoo++/:---........-.--:/sysso/:---:/ohd+--::--:/::--.-.-..............
--.---.--.-/dNMMNmhyNMmmhhhyo/:::------...............-//+syho:::/ydms---:---+/::-..-...............
.-.-----./dNMMNNNNMMNmhhhyo+/::::------------.........--:::/sddy/:+ymh:--:---++:-:-.................
--------omMMMMNMMMMMmhdhso+//:::-----:::-------.......---:::/sdmNh//hh:--/:--/o:-:-.................
--------yNMMNmNMMMMMhhmyo+/::-------::::::::::::----...---::+syhNNmyhh/--//--:o/::/-................
--------:shdmmmmmNMNddNhssssoo+/:---::///oyhdmddhyoo/:----://shydNMMNd/--:+:-:++::/-................
------------:/shdmmNdNNdyyhdNNNms/:::::/oydNmmdmdyoo+//::--:/yhsyNMMMm+--:o+-:/+::::................
.--------------:+sdmMMNhsyhyhhdmmy/:::/+sdNNNmhyyyhhs+//::::/ymdhmNMMm+:-:o+::-:-://................
----------------.-+hNMMdhdyyhhsshy/---/+shmmdhyhdhsssyo+//::/smNNNMMMm+/::+o:-:::///-...............
-------------------/mMMNhs+hNNhooo:---:-:/oss++hmms++++/::/::+dmMMMMMm+//:+y+::+++:/-...............
--------------------+NMMmhsoooooo:-.-:----:/oo++++/::------::/ydNMMMMN+/::/dy/:/++::-.....---.......
--------------------+hMMdhhhhyym+---::------/+oo/::::-------:/osmNMMMNo///+hm+::+/:/:------.........
---------::---------:+mNyo+++sNd/---------------------------:/+smMMMMNo:/:/yNy/:/+++:.--............
----------------------smyo+++hNs:-------------------..----::://+hmMMNNs////yMmo:://+/...............
----------:-----------:ydho+sNd+--------::---------------::://:/+shhshy+//+hMNy+:/+//-..............
-----------------------+mNdydNmo::/++ooo/:-::::--------:::::/:::::++ymdo//+hNMdo://+/-..............
-----------::-:---------hNMNNmNmddddy+++:--::::::::-::::::::::::/oooNMd+//+mddds///++-.-.---........
------------:--------:--+dMNmNmdsyys:--::::-::::::--:::::::::::/:/+odMmo//+dyomdo////:..............
.----------:::-----:-:---oNMmNNho+/::-::::::::-:::----::-:::::/:::::dNms/:+hy+yhs////:..............
----------:-:--::--:-::---yNNNNmhmdy+ooo+/+ohy+::::-----:::::::----:oNNhs+/sdsodho:/+:.....-..-.....
---:::-:::::::::::::::----:hmdyohddyssooso+/::::::----:-::--::---.--+hNmhs//o++hds//+-.--...........
----::::::://:+/::---------:hdddhhyyo+/:-----:-::----------:::-....--+mNmh+:///shy///-.-..........-.
--::::::://////::::::---:----+hdhhhddhyo/::::--::--------://:--..----:hNMNh+::/+hyo/+--...........--
---:::/://////////:::::::----.-+hho/:----------------::://----..---::sdNNMMNs::/sys++-.......-------
---::://////////+//::::::-------/syo:------------:::/+o+:----------/hmNNMNNMNh+/syyo+-.--..---------
---:::::::////////:///:::::-------sys+/::-:::://+ohdyo/-----..---:sdmMNNNNNNNNh+syso+-....-.--------
------:::://://::/::::::::::-------:/+++ssosyymmmd++:-:--------:oydmNNNmmmmmmNNNhyyo+-----------:::-
------:://////////:///::::::::------::-:hmmmNmdy/:--:-------:+symmNmmmhhhdmNNmmNmNmho---------:-::::
-----:://+o+oo+oo+//////::::::-:--::---:sdddyo/:----::--:+oshdmNNNmmdhhhhhdmNmdmmmNNmds+:-:-:-:-::/:
--::://++osooooooo++//////:/:::::::-/+yddddhs+/:::::/+oyyhmmNNNMNmdhdhyyhhddddmddddmNMNNdy+/::-:::::
:/++++osoossooo+oo++++//////:::::+shmNMMNmdmhsooosyhdmmNmNNMNNNNmhhhddhhhhhhydhdhhdmNNNNNNNdy+:::///
:/+++++oooooooo++o++++++//////oydNMNMMMMNNNNmNNmNmmNNNMMMMNNmmNmhhhdhhdhyhhhyhhhhyddNmNmNNNNMNhs+/+/
:///+/+ooooooooo+o+++/++++osdmNMMMMMMMMNMNNNNNMMMNNNNNNNMNmmdmmdhhhdhhhhhhhyyyyyyyhhddmmNNNNNMNNmyo+
:::///++oooooo+++++++/++shmNMMMMMMMMMMNNNNmmMNMMNNMMNNNNMNdhdddyhhhhhhhhyyhyyyyyyyhhhddmNNNNNNNMMNmh
::://++++ooo+ooo+ooosydmNMMMMMMMMMmNMNmNNddmMMNmNNNMNmmmmdhhyhhhdhdhyhyyyyyyyyhyyyyhhhdmmmmmNNMMNNMN
-:://///+++ooooo+oyhmMMNNNNNNNNNNNdmmdNNdydmNMNNNNNNddmNdhhhhhhhhdddhyyyssyysyyyyhyyhhddhddmmNNNNNMN
:::://///+++o++shmmmmMMMNNNmNmNmmdmmhmmdyymmmmmmdmmdddmmdhdhhhyyhdhhyyyyyyyyyyysyyssyyyhhhhhdddmmNMN
:::://////+/+sdmNNNNNMNNNNmmdmmdhdmhddhyyhdmmddddddhdNNmhhhhhhyhdhhyyyyyyyysyyyssyssyyyhhhyhhhddmmNN
::::///+++oohmmNNNNNNNmmmdmdhhhhmdydmhysydmmdhdhhmhdhNmdhhhhhyyhdhsyyyyyyysyyssssssssssyyhyyhhhdddNN
:/:///+++ohmNNmNNNmNNmmmddddhyhmmdhmdyyydmmmdddyddyhdmmmdddhhhyhhhyyhhhhyyyyyyysssssyyssyyyhhhhdddmm
:////+++oymmmNmmmmmmmNdddmmhyhddhdhdysyydmddmddhdhyydNNNmmdhyyhdyhyhyhhyyyysyyyhysosyyyyhhhhhhdhhhdd
//+++oooydmmmmmmmmmmmdhddmdyhddhhdhyyyhddmyhddhhhysydNNNmdhyyyyyyyyhyhhhyyyyyhyyyssyhyssyyyyyhhhhhhd
:/+++osddmdmmddddddhdhhhddyymmhhddhyyhhddmdhddhyyysydmdmdhyyyyyhhyyhhyhhhhhshhyyyyyhhyyysyhyhhyhhhyy
:+/++odddmmmmddhddddyyhdhyshdhhhdyyyhyddmNmmNmhyyyshdmmddhyyyyyyhhhhhhhdhyhyysysyyhdysyysyhhhhhhyyyy
://+shddddmmmddhmmdhysddsyhdhhhhhyyhdhmmmmNNNdhhyyhdmmmdhyyyhhyhhhyhyhhdhhhyyyyyyydhysyyyyyyhhyyyyyy
:/+ohdddmdmddhyhddysyyhhssddhdmdyyhdhydmNdNdhyyhyyyhmmmdyhyyyyyhhyyhhhdhhyyyyyhhhddhyyyyyyyhdhhhhyhh
:/+yddddddddyssyhyssssyosydyddhhsyddhhmmNddhhddyyhyhmmdhyyyysyyyhyhhyyhhysyyyyssshhysyyyyyhhysyyyhmm
/+yhddddddhhysyhysssssooydhyddyyyddyhmNNNddddddhddhdmmmdhyyyhysyyyyhhhhyyyyyyyyshdhssyhhhdhyyyhhdmNd
/shhddddddyyssyhsososoosddsydhysyyyyhdmNmdmmmddhhdddNNmhyyyyyyyyyyhyshhyyyyyyhyyhdssyyydmdhyhhdmNNdy
ohhdddddhysoooyyssoossshhhyhdhsssysydmmmddmNNNdhdhhdmNmyyyyyyyyyhhyyyyyyhyyyyysydhysyydNdhhhddmNmdhh
syyhdddhssooossooosoooyhyyydhyyyhhhhhdmmhmNmNdhddhhdNNdhyssyyyyyysyyyyhyhssssoohddyoyymmhhhhdmNmhyyh
oshdddhsoo++ssso+oooooyhysddyyhhddssdmNmhddhhhhdhhhmNNdhysssysyyyyyyyhhyhysyyyyhmmsoshdyyyhhmNmdyyys
sshhdhysoo+ooo+o++oooyhssyhsyhdhhssshdmmhhhyhhhhyydhmmdyssssyyyssysosyssyssysosdddyssysssyhdmmhhhyyy
+shhhyo++++ooo+++o++oyyssssyyyyssooohddhssyyhhhysshhmdysssyyyyssssssssyysossssshhyssssysyhdddyhhyoss

Name: Anonymous 2011-03-01 10:45

.------------------------------.--.--.--...--.---.-.--...---.---..------..----.-.-..--..-.-.........
-------------------------------------------------------------------------------------.--------..----
---------------------------------------:://++++++ooo++/:----------------------------------------.---
----------------------------------/oydNNNNMMNNNNNNmmdhhhyyso+//:-.------.----.-...----..----------..
-----------------------------/+sdNNNmNMNmNmmhysssyhyso++oooooo+++//----.....--.---....-----...-...--
-------------------------:ohmmNNNmNNmNmmmmdyyhdmmdyo:///////////+///::---.--------.--------.......--
---------------------:+ohddddhhyyyyysysssssyhdmmmdyo++++++oo++////////+/:--.-----------.---.....-...
.------------...-:shhddmmNmhyyso+///++++ososssyyddddddhhdmmmhh////////++//-.........--..............
.----------..-/ohdmmmmmdhys+//+syhdddhdyhyoo++++++///+//+ooooso++/+++++++o+:....-.......-...........
----------:+shmdmNmNhyso///+oyNMMNmhdyysso++//::::::::-----::://+o/:/+oo+++o/-.---..................
--.-------odddmdmmdhyo/://+ymNNNmdhyysso////:::::::::::--------::+s+-://+osoo+----....--............
.-.-----..-:oshhhyo+/::::+dNMNmmhhysysoo++++////:::::-------------os---::-/osy+-......-.............
...--........-:+hs/::::/hNMMNNdddhysso+//+//////::::::------------+y+--:::--+o+:....................
.-----------..+dMNs://sdMMNmdhysyyssooo++o/++++o++sooo+/:-:------:+hy:--::--::::-...................
.-----------:oNMNMmo+dmNNmhhhysoo++/:---........-.--:/sysso/:---:/ohd+--::--:/::--.-.-..............
--.---.--.-/dNMMNmhyNMmmhhhyo/:::------...............-//+syho:::/ydms---:---+/::-..-...............
.-.-----./dNMMNNNNMMNmhhhyo+/::::------------.........--:::/sddy/:+ymh:--:---++:-:-.................
--------omMMMMNMMMMMmhdhso+//:::-----:::-------.......---:::/sdmNh//hh:--/:--/o:-:-.................
--------yNMMNmNMMMMMhhmyo+/::-------::::::::::::----...---::+syhNNmyhh/--//--:o/::/-................
--------:shdmmmmmNMNddNhssssoo+/:---::///oyhdmddhyoo/:----://shydNMMNd/--:+:-:++::/-................
------------:/shdmmNdNNdyyhdNNNms/:::::/oydNmmdmdyoo+//::--:/yhsyNMMMm+--:o+-:/+::::................
.--------------:+sdmMMNhsyhyhhdmmy/:::/+sdNNNmhyyyhhs+//::::/ymdhmNMMm+:-:o+::-:-://................
----------------.-+hNMMdhdyyhhsshy/---/+shmmdhyhdhsssyo+//::/smNNNMMMm+/::+o:-:::///-...............
-------------------/mMMNhs+hNNhooo:---:-:/oss++hmms++++/::/::+dmMMMMMm+//:+y+::+++:/-...............
--------------------+NMMmhsoooooo:-.-:----:/oo++++/::------::/ydNMMMMN+/::/dy/:/++::-.....---.......
--------------------+hMMdhhhhyym+---::------/+oo/::::-------:/osmNMMMNo///+hm+::+/:/:------.........
---------::---------:+mNyo+++sNd/---------------------------:/+smMMMMNo:/:/yNy/:/+++:.--............
----------------------smyo+++hNs:-------------------..----::://+hmMMNNs////yMmo:://+/...............
----------:-----------:ydho+sNd+--------::---------------::://:/+shhshy+//+hMNy+:/+//-..............
-----------------------+mNdydNmo::/++ooo/:-::::--------:::::/:::::++ymdo//+hNMdo://+/-..............
-----------::-:---------hNMNNmNmddddy+++:--::::::::-::::::::::::/oooNMd+//+mddds///++-.-.---........
------------:--------:--+dMNmNmdsyys:--::::-::::::--:::::::::::/:/+odMmo//+dyomdo////:..............
.----------:::-----:-:---oNMmNNho+/::-::::::::-:::----::-:::::/:::::dNms/:+hy+yhs////:..............
----------:-:--::--:-::---yNNNNmhmdy+ooo+/+ohy+::::-----:::::::----:oNNhs+/sdsodho:/+:.....-..-.....
---:::-:::::::::::::::----:hmdyohddyssooso+/::::::----:-::--::---.--+hNmhs//o++hds//+-.--...........
----::::::://:+/::---------:hdddhhyyo+/:-----:-::----------:::-....--+mNmh+:///shy///-.-..........-.
--::::::://////::::::---:----+hdhhhddhyo/::::--::--------://:--..----:hNMNh+::/+hyo/+--...........--
---:::/://////////:::::::----.-+hho/:----------------::://----..---::sdNNMMNs::/sys++-.......-------
---::://////////+//::::::-------/syo:------------:::/+o+:----------/hmNNMNNMNh+/syyo+-.--..---------
---:::::::////////:///:::::-------sys+/::-:::://+ohdyo/-----..---:sdmMNNNNNNNNh+syso+-....-.--------
------:::://://::/::::::::::-------:/+++ssosyymmmd++:-:--------:oydmNNNmmmmmmNNNhyyo+-----------:::-
------:://////////:///::::::::------::-:hmmmNmdy/:--:-------:+symmNmmmhhhdmNNmmNmNmho---------:-::::
-----:://+o+oo+oo+//////::::::-:--::---:sdddyo/:----::--:+oshdmNNNmmdhhhhhdmNmdmmmNNmds+:-:-:-:-::/:
--::://++osooooooo++//////:/:::::::-/+yddddhs+/:::::/+oyyhmmNNNMNmdhdhyyhhddddmddddmNMNNdy+/::-:::::
:/++++osoossooo+oo++++//////:::::+shmNMMNmdmhsooosyhdmmNmNNMNNNNmhhhddhhhhhhydhdhhdmNNNNNNNdy+:::///
:/+++++oooooooo++o++++++//////oydNMNMMMMNNNNmNNmNmmNNNMMMMNNmmNmhhhdhhdhyhhhyhhhhyddNmNmNNNNMNhs+/+/
:///+/+ooooooooo+o+++/++++osdmNMMMMMMMMNMNNNNNMMMNNNNNNNMNmmdmmdhhhdhhhhhhhyyyyyyyhhddmmNNNNNMNNmyo+
:::///++oooooo+++++++/++shmNMMMMMMMMMMNNNNmmMNMMNNMMNNNNMNdhdddyhhhhhhhhyyhyyyyyyyhhhddmNNNNNNNMMNmh
::://++++ooo+ooo+ooosydmNMMMMMMMMMmNMNmNNddmMMNmNNNMNmmmmdhhyhhhdhdhyhyyyyyyyyhyyyyhhhdmmmmmNNMMNNMN
-:://///+++ooooo+oyhmMMNNNNNNNNNNNdmmdNNdydmNMNNNNNNddmNdhhhhhhhhdddhyyyssyysyyyyhyyhhddhddmmNNNNNMN
:::://///+++o++shmmmmMMMNNNmNmNmmdmmhmmdyymmmmmmdmmdddmmdhdhhhyyhdhhyyyyyyyyyyysyyssyyyhhhhhdddmmNMN
:::://////+/+sdmNNNNNMNNNNmmdmmdhdmhddhyyhdmmddddddhdNNmhhhhhhyhdhhyyyyyyyysyyyssyssyyyhhhyhhhddmmNN
::::///+++oohmmNNNNNNNmmmdmdhhhhmdydmhysydmmdhdhhmhdhNmdhhhhhyyhdhsyyyyyyysyyssssssssssyyhyyhhhdddNN
:/:///+++ohmNNmNNNmNNmmmddddhyhmmdhmdyyydmmmdddyddyhdmmmdddhhhyhhhyyhhhhyyyyyyysssssyyssyyyhhhhdddmm
:////+++oymmmNmmmmmmmNdddmmhyhddhdhdysyydmddmddhdhyydNNNmmdhyyhdyhyhyhhyyyysyyyhysosyyyyhhhhhhdhhhdd
//+++oooydmmmmmmmmmmmdhddmdyhddhhdhyyyhddmyhddhhhysydNNNmdhyyyyyyyyhyhhhyyyyyhyyyssyhyssyyyyyhhhhhhd
:/+++osddmdmmddddddhdhhhddyymmhhddhyyhhddmdhddhyyysydmdmdhyyyyyhhyyhhyhhhhhshhyyyyyhhyyysyhyhhyhhhyy
:+/++odddmmmmddhddddyyhdhyshdhhhdyyyhyddmNmmNmhyyyshdmmddhyyyyyyhhhhhhhdhyhyysysyyhdysyysyhhhhhhyyyy
://+shddddmmmddhmmdhysddsyhdhhhhhyyhdhmmmmNNNdhhyyhdmmmdhyyyhhyhhhyhyhhdhhhyyyyyyydhysyyyyyyhhyyyyyy
:/+ohdddmdmddhyhddysyyhhssddhdmdyyhdhydmNdNdhyyhyyyhmmmdyhyyyyyhhyyhhhdhhyyyyyhhhddhyyyyyyyhdhhhhyhh
:/+yddddddddyssyhyssssyosydyddhhsyddhhmmNddhhddyyhyhmmdhyyyysyyyhyhhyyhhysyyyyssshhysyyyyyhhysyyyhmm
/+yhddddddhhysyhysssssooydhyddyyyddyhmNNNddddddhddhdmmmdhyyyhysyyyyhhhhyyyyyyyyshdhssyhhhdhyyyhhdmNd
/shhddddddyyssyhsososoosddsydhysyyyyhdmNmdmmmddhhdddNNmhyyyyyyyyyyhyshhyyyyyyhyyhdssyyydmdhyhhdmNNdy
ohhdddddhysoooyyssoossshhhyhdhsssysydmmmddmNNNdhdhhdmNmyyyyyyyyyhhyyyyyyhyyyyysydhysyydNdhhhddmNmdhh
syyhdddhssooossooosoooyhyyydhyyyhhhhhdmmhmNmNdhddhhdNNdhyssyyyyyysyyyyhyhssssoohddyoyymmhhhhdmNmhyyh
oshdddhsoo++ssso+oooooyhysddyyhhddssdmNmhddhhhhdhhhmNNdhysssysyyyyyyyhhyhysyyyyhmmsoshdyyyhhmNmdyyys
sshhdhysoo+ooo+o++oooyhssyhsyhdhhssshdmmhhhyhhhhyydhmmdyssssyyyssysosyssyssysosdddyssysssyhdmmhhhyyy
+shhhyo++++ooo+++o++oyyssssyyyyssooohddhssyyhhhysshhmdysssyyyyssssssssyysossssshhyssssysyhdddyhhyoss

Name: Anonymous 2011-03-01 10:45

:GJS1M 67dcbdbce4a0b67c4b48e86a6ae29205a95e4b83024a9d947213d1231800e8d9
:85 9a37db998b965a1a7522884b78d83232
:1250478524 1298994325

>>196
<-- that's cool and all, but check my doubles over there

Name: Anonymous 2011-03-01 13:57

>>274
I think my version is the coolest. It's the only curved fibonacci on /prog/ today!

Name: Anonymous 2011-03-01 15:28

.------------------------------.--.--.--...--.---.-.--...---.---..------..----.-.-..--..-.-......... -------------------------------------------------------------------------------------.--------..---- ---------------------------------------:://++++++ooo++/:----------------------------------------.--- ----------------------------------/oydNNNNMMNNNNNNmmdhhhyyso+//:-.------.----.-...----..----------.. -----------------------------/+sdNNNmNMNmNmmhysssyhyso++oooooo+++//----.....--.---....-----...-...-- -------------------------:ohmmNNNmNNmNmmmmdyyhdmmdyo:///////////+///::---.--------.--------.......-- ---------------------:+ohddddhhyyyyysysssssyhdmmmdyo++++++oo++////////+/:--.-----------.---.....-... .------------...-:shhddmmNmhyyso+///++++ososssyyddddddhhdmmmhh////////++//-.........--.............. .----------..-/ohdmmmmmdhys+//+syhdddhdyhyoo++++++///+//+ooooso++/+++++++o+:....-.......-........... ----------:+shmdmNmNhyso///+oyNMMNmhdyysso++//::::::::-----::://+o/:/+oo+++o/-.---.................. --.-------odddmdmmdhyo/://+ymNNNmdhyysso////:::::::::::--------::+s+-://+osoo+----....--............ .-.-----..-:oshhhyo+/::::+dNMNmmhhysysoo++++////:::::-------------os---::-/osy+-......-............. ...--........-:+hs/::::/hNMMNNdddhysso+//+//////::::::------------+y+--:::--+o+:.................... .-----------..+dMNs://sdMMNmdhysyyssooo++o/++++o++sooo+/:-:------:+hy:--::--::::-................... .-----------:oNMNMmo+dmNNmhhhysoo++/:---........-.--:/sysso/:---:/ohd+--::--:/::--.-.-.............. --.---.--.-/dNMMNmhyNMmmhhhyo/:::------...............-//+syho:::/ydms---:---+/::-..-............... .-.-----./dNMMNNNNMMNmhhhyo+/::::------------.........--:::/sddy/:+ymh:--:---++:-:-................. --------omMMMMNMMMMMmhdhso+//:::-----:::-------.......---:::/sdmNh//hh:--/:--/o:-:-................. --------yNMMNmNMMMMMhhmyo+/::-------::::::::::::----...---::+syhNNmyhh/--//--:o/::/-................ --------:shdmmmmmNMNddNhssssoo+/:---::///oyhdmddhyoo/:----://shydNMMNd/--:+:-:++::/-................ ------------:/shdmmNdNNdyyhdNNNms/:::::/oydNmmdmdyoo+//::--:/yhsyNMMMm+--:o+-:/+::::................ .--------------:+sdmMMNhsyhyhhdmmy/:::/+sdNNNmhyyyhhs+//::::/ymdhmNMMm+:-:o+::-:-://................ ----------------.-+hNMMdhdyyhhsshy/---/+shmmdhyhdhsssyo+//::/smNNNMMMm+/::+o:-:::///-............... -------------------/mMMNhs+hNNhooo:---:-:/oss++hmms++++/::/::+dmMMMMMm+//:+y+::+++:/-............... --------------------+NMMmhsoooooo:-.-:----:/oo++++/::------::/ydNMMMMN+/::/dy/:/++::-.....---....... --------------------+hMMdhhhhyym+---::------/+oo/::::-------:/osmNMMMNo///+hm+::+/:/:------......... ---------::---------:+mNyo+++sNd/---------------------------:/+smMMMMNo:/:/yNy/:/+++:.--............ ----------------------smyo+++hNs:-------------------..----::://+hmMMNNs////yMmo:://+/............... ----------:-----------:ydho+sNd+--------::---------------::://:/+shhshy+//+hMNy+:/+//-.............. -----------------------+mNdydNmo::/++ooo/:-::::--------:::::/:::::++ymdo//+hNMdo://+/-.............. -----------::-:---------hNMNNmNmddddy+++:--::::::::-::::::::::::/oooNMd+//+mddds///++-.-.---........ ------------:--------:--+dMNmNmdsyys:--::::-::::::--:::::::::::/:/+odMmo//+dyomdo////:.............. .----------:::-----:-:---oNMmNNho+/::-::::::::-:::----::-:::::/:::::dNms/:+hy+yhs////:.............. ----------:-:--::--:-::---yNNNNmhmdy+ooo+/+ohy+::::-----:::::::----:oNNhs+/sdsodho:/+:.....-..-..... ---:::-:::::::::::::::----:hmdyohddyssooso+/::::::----:-::--::---.--+hNmhs//o++hds//+-.--........... ----::::::://:+/::---------:hdddhhyyo+/:-----:-::----------:::-....--+mNmh+:///shy///-.-..........-. --::::::://////::::::---:----+hdhhhddhyo/::::--::--------://:--..----:hNMNh+::/+hyo/+--...........-- ---:::/://////////:::::::----.-+hho/:----------------::://----..---::sdNNMMNs::/sys++-.......------- ---::://////////+//::::::-------/syo:------------:::/+o+:----------/hmNNMNNMNh+/syyo+-.--..--------- ---:::::::////////:///:::::-------sys+/::-:::://+ohdyo/-----..---:sdmMNNNNNNNNh+syso+-....-.-------- ------:::://://::/::::::::::-------:/+++ssosyymmmd++:-:--------:oydmNNNmmmmmmNNNhyyo+-----------:::- ------:://////////:///::::::::------::-:hmmmNmdy/:--:-------:+symmNmmmhhhdmNNmmNmNmho---------:-:::: -----:://+o+oo+oo+//////::::::-:--::---:sdddyo/:----::--:+oshdmNNNmmdhhhhhdmNmdmmmNNmds+:-:-:-:-::/: --::://++osooooooo++//////:/:::::::-/+yddddhs+/:::::/+oyyhmmNNNMNmdhdhyyhhddddmddddmNMNNdy+/::-::::: :/++++osoossooo+oo++++//////:::::+shmNMMNmdmhsooosyhdmmNmNNMNNNNmhhhddhhhhhhydhdhhdmNNNNNNNdy+:::/// :/+++++oooooooo++o++++++//////oydNMNMMMMNNNNmNNmNmmNNNMMMMNNmmNmhhhdhhdhyhhhyhhhhyddNmNmNNNNMNhs+/+/ :///+/+ooooooooo+o+++/++++osdmNMMMMMMMMNMNNNNNMMMNNNNNNNMNmmdmmdhhhdhhhhhhhyyyyyyyhhddmmNNNNNMNNmyo+ :::///++oooooo+++++++/++shmNMMMMMMMMMMNNNNmmMNMMNNMMNNNNMNdhdddyhhhhhhhhyyhyyyyyyyhhhddmNNNNNNNMMNmh ::://++++ooo+ooo+ooosydmNMMMMMMMMMmNMNmNNddmMMNmNNNMNmmmmdhhyhhhdhdhyhyyyyyyyyhyyyyhhhdmmmmmNNMMNNMN -:://///+++ooooo+oyhmMMNNNNNNNNNNNdmmdNNdydmNMNNNNNNddmNdhhhhhhhhdddhyyyssyysyyyyhyyhhddhddmmNNNNNMN :::://///+++o++shmmmmMMMNNNmNmNmmdmmhmmdyymmmmmmdmmdddmmdhdhhhyyhdhhyyyyyyyyyyysyyssyyyhhhhhdddmmNMN :::://////+/+sdmNNNNNMNNNNmmdmmdhdmhddhyyhdmmddddddhdNNmhhhhhhyhdhhyyyyyyyysyyyssyssyyyhhhyhhhddmmNN ::::///+++oohmmNNNNNNNmmmdmdhhhhmdydmhysydmmdhdhhmhdhNmdhhhhhyyhdhsyyyyyyysyyssssssssssyyhyyhhhdddNN :/:///+++ohmNNmNNNmNNmmmddddhyhmmdhmdyyydmmmdddyddyhdmmmdddhhhyhhhyyhhhhyyyyyyysssssyyssyyyhhhhdddmm :////+++oymmmNmmmmmmmNdddmmhyhddhdhdysyydmddmddhdhyydNNNmmdhyyhdyhyhyhhyyyysyyyhysosyyyyhhhhhhdhhhdd //+++oooydmmmmmmmmmmmdhddmdyhddhhdhyyyhddmyhddhhhysydNNNmdhyyyyyyyyhyhhhyyyyyhyyyssyhyssyyyyyhhhhhhd :/+++osddmdmmddddddhdhhhddyymmhhddhyyhhddmdhddhyyysydmdmdhyyyyyhhyyhhyhhhhhshhyyyyyhhyyysyhyhhyhhhyy :+/++odddmmmmddhddddyyhdhyshdhhhdyyyhyddmNmmNmhyyyshdmmddhyyyyyyhhhhhhhdhyhyysysyyhdysyysyhhhhhhyyyy ://+shddddmmmddhmmdhysddsyhdhhhhhyyhdhmmmmNNNdhhyyhdmmmdhyyyhhyhhhyhyhhdhhhyyyyyyydhysyyyyyyhhyyyyyy :/+ohdddmdmddhyhddysyyhhssddhdmdyyhdhydmNdNdhyyhyyyhmmmdyhyyyyyhhyyhhhdhhyyyyyhhhddhyyyyyyyhdhhhhyhh :/+yddddddddyssyhyssssyosydyddhhsyddhhmmNddhhddyyhyhmmdhyyyysyyyhyhhyyhhysyyyyssshhysyyyyyhhysyyyhmm /+yhddddddhhysyhysssssooydhyddyyyddyhmNNNddddddhddhdmmmdhyyyhysyyyyhhhhyyyyyyyyshdhssyhhhdhyyyhhdmNd /shhddddddyyssyhsososoosddsydhysyyyyhdmNmdmmmddhhdddNNmhyyyyyyyyyyhyshhyyyyyyhyyhdssyyydmdhyhhdmNNdy ohhdddddhysoooyyssoossshhhyhdhsssysydmmmddmNNNdhdhhdmNmyyyyyyyyyhhyyyyyyhyyyyysydhysyydNdhhhddmNmdhh syyhdddhssooossooosoooyhyyydhyyyhhhhhdmmhmNmNdhddhhdNNdhyssyyyyyysyyyyhyhssssoohddyoyymmhhhhdmNmhyyh oshdddhsoo++ssso+oooooyhysddyyhhddssdmNmhddhhhhdhhhmNNdhysssysyyyyyyyhhyhysyyyyhmmsoshdyyyhhmNmdyyys sshhdhysoo+ooo+o++oooyhssyhsyhdhhssshdmmhhhyhhhhyydhmmdyssssyyyssysosyssyssysosdddyssysssyhdmmhhhyyy +shhhyo++++ooo+++o++oyyssssyyyyssooohddhssyyhhhysshhmdysssyyyyssssssssyysossssshhyssssysyhdddyhhyoss

Name: Anonymous 2011-03-02 2:47

>>279
Don't buttsort fibonacci

Name: Anonymous 2011-03-02 2:49

>>280
I tried to buttsort him, but it was 55000 characters long.

Name: Anonymous 2011-03-02 3:12

>>281
Yeah looks like >>279 was a modified buttsort.

Name: Anonymous 2011-03-02 3:29

Go away.

Name: Anonymous 2011-03-02 3:34

>>283
ehhh

Name: Anonymous 2011-03-02 3:35

>>284
Should I read that as え----! or へ~~?

Name: Anonymous 2011-03-24 14:39

archioin

Name: Anonymous 2011-03-26 23:38

    FIBONACCI BUTT SORT

Name: Anonymous 2011-03-26 23:54

I got your Fibonacci Butt Sort right here.

Name: Anonymous 2011-03-27 0:06

FIBONACCI BUTTSORT
FIBONACCI BUTTSORT
FIBONACCI BUTTSORT
FIBONACCI BUTTSORT

Name: Anonymous 2011-03-27 23:58

Dear Mr Vacbob,

Please update BBCode to include buttsort tags.

Sincerely Yours,
All of /prog/

Name: Anonymous 2011-03-28 0:02

>>290
U MENA properly functioning everything tag

Name: Anonymous 2011-03-28 3:09

>>290
I third this notion.

Name: Anonymous 2011-04-06 18:07

Name: Anonymous 2011-04-06 18:12

Name: Anonymous 2011-04-06 21:15

SO BEAUTIFUL

Name: Anonymous 2011-04-07 3:55

0> 2011-04-07 09:50:23 +02:00 :: ed@neetbook :: 16KB in 2 files :: ~/Projects/buttsort/buttsort/bin/Debug
 :: mono buttsort.exe
cissha version 1.0

cissha version 1.0


using System;

namespace buttsort
{
    class MainClass
    {
        public static void Main (string[] args)
        {
            bool b = false;
            string msg = Console.ReadLine();
            foreach (char c in msg)
            {
                b = !b;
                Console.Write( (b? "[o]": "[u]")
                         + c + (b?"[/o]":"[/u]"));
            }
        }
    }
}


More general-purpose version coming soon to a /prog/ near you!

Name: Anonymous 2011-04-07 4:44

0> 2011-04-07 10:41:16 +02:00 :: ed@neetbook :: 16KB in 2 files :: ~/Projects/buttsort/buttsort/bin/Debug
 :: mono buttsort.exe
FIBONACCI BUTTSORT


FBIUBTOTNSAOCRCTI .


using System;

namespace buttsort
{
    class MainClass
    {
        const bool flipit = true;
       
        public static void Main (string[] args)
        {
            int i = 0;
            string msg = Console.ReadLine();
            string[,] arg = new string[,] {
                //{ "[o]", "[/o]" },
                //{ "[u]", "[/u]" }
                { "[sub][u][b]", "[/b][/u][/sub]" },
                { "[sup][o]",        "[/o][/sup]" }
            };
           
            if (flipit)
            {
                bool f = false;
                string spline = "";
                int o = msg.Length / 2;
                for (int a = 0; a < o; a++)
                {
                    f = !f; spline += msg[f?a:a+o];
                    f = !f; spline += msg[f?a:a+o];
                }
                msg = spline;
            }
           
            foreach (char c in msg)
            {
                i = Math.Abs(i-1);
                Console.Write( arg[i,0]
                         + c + arg[i,1] );
            }
        }
    }
}


my work here is done.

Name: Anonymous 2011-04-07 5:20

fucking autists

Name: Anonymous 2011-04-07 5:36

>>297
Elegant Coctothorpe code? No way.

Name: Anonymous 2011-04-07 6:17

>>297
neetbook
heh heh

Name: Anonymous 2011-04-07 8:10

[b][i][o]T[/0]e[o]s[/0]t [o]o[/0]f [o]p[/0]y[o]t[/0]h[o]o[/0]n [o]b[/0]u[o]t[/0]t[o]s[/0]o[o]r[/0]t[o]e[/0]r[/i][/b]

Name: Anonymous 2011-04-07 8:12

Test of python buttsorter

Name: Anonymous 2011-04-07 8:18

TEST OF MY ANUS

Name: Anonymous 2011-04-07 16:07

Well, ladies and gentlemen, let me introduce sinesort

Name: Anonymous 2011-04-07 16:15

My name is Chris, and I would just like to let you know that I am a total noob with Linux.

Name: Anonymous 2011-04-07 16:17

Consider this: A pack of wild Niggers.
Savage, slavering Niggers nearing your white home. Trampling your white lawn. Raping your white daughter.
And you can't do shit since they're savages. The Nigger leader grabs your wife and fucks her with his shaman stick.
The primal Niggers finally dominate your household. They watch barbaric shows on TV and you are forced to be their slave.
Such is the downfall of White Man.


REQUESTING BUTTSORT ON THIS.

Name: Anonymous 2011-04-07 16:18

>>304

I justlooked at the sourcecode, bloated as fuck.

Name: Anonymous 2011-04-07 16:19

>>307
*
I justlooked at the sourcecode, bloated as fuck.

Name: Anonymous 2011-04-07 16:29

>>306
Consider this: A pack of wild /prog/riders.
Savage, anushaxxing /prog/riders nearing your anus.
Consing in your cudders. Saging your threads.
And you can't do shit since they're savages.
The Sussman *grabs your dick* and HAXes YOUR ANUS.
The EXPERT /prog/RAMMERS finally dominate your anus. You experiment the pleasure of being cummed inside and you are forced to indent your code.
Such is the downfall of your anus.

Name: Anonymous 2011-04-07 17:29

>>307
>>308
at least it is reliable

Name: Anonymous 2011-04-28 11:24

test

Name: Anonymous 2011-04-28 11:26

[B]', 'butt sort', '[/B]'

Name: Anonymous 2011-04-28 11:28

[b]butt sort[/b]

Name: Anonymous 2011-04-28 11:28

[i]butt sort[/i]

Name: Anonymous 2011-04-28 11:30

    [b][i][o]T[/0]e[o]s[/0]t [o]o[/0]f [o]p[/0]y[o]t[/0]h[o]o[/0]n [o]b[/0]u[o]t[/0]t[o]s[/0]o[o]r[/0]t[o]e[/0]r[/i][/b]

Name: Anonymous 2011-04-28 11:34

sort my anus

Name: Anonymous 2011-04-28 11:34

sort my anus

Name: Anonymous 2011-04-28 11:38

sort my anus

Name: Anonymous 2011-04-28 11:38

sort my anus

Name: Anonymous 2011-05-10 15:44

>>300
is this the first occurrence of neetbook?

Name: Anonymous 2011-05-10 16:41

How is this thread still around and with less than 400 posts?

Name: Anonymous 2011-05-10 18:14

Lets sort

Name: Anonymous 2011-05-10 18:29

λλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλλ

Name: Anonymous 2011-05-10 18:42

>>323
nice

Name: Anonymous 2011-05-10 18:51

>>323
THE CHURCH-TOURING LAMBDA SINESORT

Name: Anonymous 2011-05-10 19:38

TOUR MY ANUS

Name: Anonymous 2011-05-11 0:33

MORE LIKE
GOD DAMN THIS THREAD IS SO FUCKING RETARDED EVEN MITCH HEDBERG COULDN'T MAKE A JOKE OUT OF IT
AMIRITE LOLLLLLLLLLLLLLLLLLLLLLLLZzz!!11oNE!!1ONE1!

Name: Anonymous 2011-05-11 2:11

>>327
This thread is amazing and if something is incredibly retarded it is also by definition incredibly easy to joke about.

Name: Anonymous 2011-05-24 16:53

Name: Anonymous 2011-05-24 17:08

>>327
hes dead

Name: Anonymous 2011-05-24 19:24

>>270
SPAGHETTI NIGGER

Name: Anonymous 2011-05-24 21:06

Name: Anonymous 2011-05-25 10:20

<-- check my trips

Name: Anonymous 2011-05-25 12:02

This thread is my favorite

Name: Anonymous 2011-05-26 16:17

>>331
?

Name: Anonymous 2011-05-26 16:29

This needs to be archived

Name: Anonymous 2011-05-26 17:01

[b]ARCHIVE MY ANUS[/b]

Also, polecat kebabs, dear >>336-kun, here we don't need archives at all.

Name: Fuck off, !Ep8pui8Vw2 2011-05-26 17:12

>>337
polecat kebabs
Fuck off, ``faggot''.

Name: Anonymous 2011-05-26 18:52

>>337
implying posts and threads don't disappear when dis.4chan.org, Shiit, or MrVacBob screw up

Name: Anonymous 2011-05-26 19:27

implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying
implying

Name: Anonymous 2011-05-26 19:29

>>340

IMPLY MY ANUS

Name: Anonymous 2011-05-27 0:59

autism[o]
autism
autism
autism
autism
autism
autism
autism
autism
autism
autism
autism

autism

autism

autism

autism

autism

autism

autism

autism

autism

Name: Anonymous 2011-05-27 0:59

autism
autism
autism
autism
autism
autism
autism
autism
autism
autism
autism
autism

autism

autism

autism

autism

autism

autism

autism

autism

autism

Name: Anonymous 2012-01-02 5:32

Name: Anonymous 2012-01-02 22:44

FUCKING BUTT SORT

Name: Anonymous 2012-01-03 19:35

It just werks.

Name: Anonymous 2012-02-09 4:38

[i]fibonacci butt sort[/i]

Name: Anonymous 2012-02-09 4:39

fibonacci butt sort

Name: Anonymous 2012-02-09 4:42


(defun fibp (n)
  (let* ((phi (/ (1+ (sqrt 5)) 2))
         (idx (floor (+ 1/2 (log (* n (sqrt 5)) phi))))
         (u   (floor (+ 1/2 (/ (expt phi idx) (sqrt 5))))))
    (= u n)))

(defun bs (str &key (test #'oddp))
  (format t "[b]")
  (loop for c across str for i from 1 do
    (let ((tag (if (funcall test i) #\o #\u)))
      (format t "[~c]~c[/~c]" tag c tag)))
  (format t "[/b]"))

(bs "fibonacci butt sort" :test #'fibp)

Name: Anonymous 2012-02-09 11:59

>>349
))))))

Name: Anonymous 2012-08-29 11:59



    FUCKING BUTT SORT

Name: Anonymous 2012-08-29 12:30

ShiiPost FibonacciButtSort(ShiiPost *p) {
    ShiiPost rv = *p;
    int x, f = 0, n = sizeof(rv.message), l = strlen(p->message);
    size_t i;
    memcpy(rv.message, "[b][i]", sizeof("[b][i]"));
    char *s = rv.message + 6;
    for (i = 0; i < l; i++) {
        if (!isspace(p->message[i])) {
            f = !f; /* i%2 */
            x = snprintf(s, n, "[%c]%c[/%c]", f?'u':'o', toupper(p->message[i]), f?'u':'o');
        } else x = snprintf(s, n, "%c", p->message[i]);
        n -= x;
        s += x;
    }
    snprintf(s, n, "[/i][/b]");
    return rv;
}

Name: Anonymous 2012-08-29 12:55

say'BUTT'until(0);

Name: Anonymous 2012-08-29 15:45

SORT MY ANUS

Name: gueprofesof1971 2012-10-06 0:08

is certainly endorsed by a recent precautionary features to make sure every last drive you take may be a ecstatic adventure. Essentially, now this more expensive tasteful sporty car is certainly proficient and robust by means of awesome extended distance compared to the all the other sports vehicle will be your best option. VI) This year Subaru Musical legacy A couple of.5i CVT : http://www.redwingshoesboots.com/redwing-boots-red-wing-8162-brown-red-p19.html This year's Subaru Legacy it isn't just among the list of top vehicles of its sector in the marketplace, it is one http://www.redwingshoesboots.com/red-wings-shoes-red-wing-d1608-chestnut-p35.html of the vital exciting drive an automobile. This Legacy of music is often a cool mid-sized car / truck having obtained track record its certainly dependability and in addition defense. http://www.redwingshoesboots.com/red-wings-shoes-red-wing-d1606-black-p30.html The actual well-tuned continuous-duty.

Name: Anonymous 2012-10-06 5:21

BUM-SORT
FIWANAGGI-BUM-SORT
FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-BUM-SORT
FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-FIWANAGGI-BUM-SORT

Name: ff 2012-10-06 13:59

VORSICHT VOR ERIKA TRILLER IN REMSCHEID!

Name: Anonymous 2012-10-06 14:17

Sure, it's buttsorted, but is it Abelson buttsorted?

Name: Anonymous 2012-10-06 14:47

>>357
Autismus viel?

Name: Anonymous 2012-10-07 18:19

FIBONACCI BUTTSORT

Name: Anonymous 2012-10-07 18:28

0 1 1 2 3 5 8 13 21 35 56

Name: Anonymous 2012-10-07 19:13

[color=orange]H[/color][color=yellow]O[/color][color=green]M[/color][color=blue]O[/color][color=indigo]S[/color][color=violet]E[/color][color=indigo]X[/color][color=blue]U[/color][color=green]A[/color][color=yellow]L[/color] [color=orange]B[/color][color=red]U[/color][color=orange]T[/color][color=yellow]T[/color][color=green]S[/color][color=blue]O[/color][color=indigo]R[/color][color=violet]T[/color]

Name: Anonymous 2012-10-07 20:24

>>362
Timet tot gott backt.

Name: raycrumticvue1975 2012-10-24 5:42

released to anti-lock tires in 325i repair, around last thing 1980. Further any braking systems wound up supplied with digital remainder regulation & anti-skid architectural. Around 2100 to help The new year, 325i repair made a large amount for autos. But the most wide range of motors (Single, 276, 793) ended up made from the year 2007, this number is not going to consist of MINI, Rolls-Royce & Bikes. BMW http://www.cheaphollistersaless.com/abercrombie-mens-shirts-c-1_47.html is usually deemed a expert involving suspensions http://www.cheaphollistersaless.com/abercrombie-hollister-mens-long-tees-c-17_23.html model. Doing it introduced telescopic suspensions, in past times compared with what a large number of some other cycle brewers. Until now, 320i http://www.cheaphollistersaless.com/abercrombie-hollister-mens-long-tees-c-17_23.html repair employed to develop bikes.

Name: Anonymous 2012-10-24 21:51

%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%

Name: Anonymous 2012-10-24 21:52

%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%

Name: Anonymous 2012-10-25 15:31

Let's give mine a try on a Lorem Ipsum! I wrote it up real quick, I won't be surprised if it doesn't work.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt, leo eu congue sollicitudin, magna sem hendrerit libero, id dignissim odio sapien et quam. Maecenas ut aliquet est. Nam elementum consequat felis. Cras nec nisi augue, ultrices consectetur sem. Nullam id ante eget dui volutpat faucibus. Duis id leo non erat venenatis consequat eget a purus. Donec gravida aliquam mi nec laoreet.

Name: browfiaprobtorh1976 2012-10-26 0:14

followed http://www.storeredwingshoes.com/redwing-boots-style-no-9016-beckman-boot-cigar-p24.html below to be able to buy the right taxicab or much more information approximately our personal perfect Call up +44787834780 or possibly email message for extra info along with clear a. Esher Autos let http://www.storeredwingshoes.com/red-wings-boots-style-no-1907-6inch-moc-boot-copper-color-p2.html your packages simple esher cars takes one to or maybe a from wherever you wish to proceed to, whenever you want to visit pleasure or business, to http://www.storeredwingshoes.com/buy-red-wing-shoe-c24.html stop you free from danger and then well informed we can can advise you just by articles which your Esher trucks airport taxi driver has arrived in the.

Name: thiacamertpor1983 2012-10-28 23:36

in with regard to vehicle public auctions, it's good http://www.newuniformsus.com/2010-super-bowl-c-20_63.html to phone most of the important people today for additional facts particularly http://www.newuniformsus.com/nike-houston-texans-c-66_79.html wedding bouquets most typically associated with discovering make and then gps watch evaluation. By that action, you can easily complete the one you select contacting are part of one public auction; and when you will need to take part, you are able to possess the best method of your very own choice. Plus, in cases where you aren't getting vehicle within your earliest stop by at sports car fine art auctions money markets, you can check out the item more http://www.newuniformsus.com/nike-carolina-panthers-c-66_71.html reguarily before you buy your future vehicle. Make certain.

Name: Anonymous 2012-10-29 0:23

'[b][i]','[/i][/b]',~;('[u]',,&'[/u]')`('[o]',,&'[/o]')/.'abc'
Unoptimized buttsort in J. There's probably a trick to optimizing the alternation into 'uo'(something).

Name: Anonymous 2012-10-29 1:35

>>370
Perl 6-quality

Name: Anonymous 2012-10-29 6:53

FIBONACCIBUTTSORT

Name: Anonymous 2012-10-29 11:04

FALSE:

"[b][i]"1_s:[^$~][s;$6*'u+$"[","]"\~s:\,"[/","]"]#"[/i][/b]"

Name: okpurrechen1975 2012-11-07 4:05

solution stroll off. Nearly any illustration whenever a insurer needs pay back through options range transport really is a characteristic red light to a real dealanother scam. Rarely rely on vendor ridiculous rumors, http://www.storeredwingshoes.com/redwing-boots-style-no-8114-iron-ranger-boot-black-p16.html they may well look like convincing even so are most often improper. Regularly require VIN (Car or suv Id Percentage) to use pickup truck profile by means of Carfax. By means of http://www.storeredwingshoes.com/red-wings-shoes-style-no-875-6inch-boot-brown-p1.html non-public http://www.storeredwingshoes.com/red-wings-boots-style-no-1907-6inch-moc-boot-copper-color-p2.html health concerns and common wisdom, Craig's list motor bikes could possibly be a superior shop to decide to purchase.

Name: distrecourdie1987 2012-11-09 20:48

will probably located http://www.mensonitsukatiger.com/buy-asics-top-seven-c19.html on the whole set of cars or trucks you are looking at. Give essential things once the buses already have security features which include airbags, and even cease freeze brake http://www.mensonitsukatiger.com/buy-asics-top-seven-c19.html pedal and Tummy. http://www.mensonitsukatiger.com/buy-asics-saromaresa-st-c17.html Insurance agencies typically present specials generally if the vehicles gives you these features. The disadvantage in buying a used car would be the absence or unavailability of service. Individual suppliers sometimes try not to can include any type of service for the car.

Name: contnontioli1975 2012-11-15 2:04

dents treated within a initial many months. All http://www.newnikenfluniforms2012.com/iphone-case-c-139.html of the benefit of trucks at the 1950s was first not only Elvis presley. Finally it was high regard coupled http://www.newnikenfluniforms2012.com/nike-nfl-jerseys-denver-broncos-c-40_91.html with glamour pertaining to the having a job guy or girl. An effect having to do with magnificent seeped on individual sensations as well as a feeling, as well as wine and dine bloomed with respect whilst driving these types sophisticated rv's. Most of the Chrysler Your area & Destination Newport vehicle which specifically became available inside 1950 didn own bout (which they launched sneaking right into http://www.newnikenfluniforms2012.com/nhl-jerseys-mark-buehrle-new-team-c-7_126.html the pattern around 1952)..

Name: ryoheitumi1983 2012-11-18 21:24

government vehicles airfare for sale has a wide array of auto's that you might properly make a decision your favorite constantly http://www.newuniformsus.com/houston-oilers-c-20_65.html targeted suv. In state impounded cars deals, you can actually looks many different new or used vehicles different brands. Family http://www.newuniformsus.com/nike-san-francisco-49ers-c-66_88.html old made autobus which are integrated to find elderly suv creditors, also, there are original nevertheless through top condition auto's. Car and truck auction sales finance industry is very much like gambling http://www.newuniformsus.com/ car marketplaces. Still, we simply cannot inexpensive the advantage that during car online auctions marketplace, almost everything quite frankly appear and disappear; therefore , new or used vehicles on this site might be automatically obtainable. If you are motivated having a minimum of you get one.

Name: Anonymous 2012-11-19 12:20

nobody has actually done a real fibonacci buttsort. only numbers in the fibonacci sequence should be underlined

Name: inmereling1987 2012-11-21 1:33

conveniences look good. In a single employ completely, in order to are liable no omission. Buying a bonuses and contact a small business that offer this auto repair. Moolah Regarding Motorcycles http://www.cheaphollistersaless.com/abercrombie-mens-shirts-c-1_47.html Vehicle Greatest things about Using them If you have had an already-established truck which usually will no longer succeeds it really is merely using breathing space on your property, it's wise to http://www.cheaphollistersaless.com/abercrombie-hollister-mens-polos-c-17_25.html adopt an organization gives cash money meant for http://www.cheaphollistersaless.com/abercrombie-mens-polos-c-1_46.html motors. Those businesses are absolutely not somewhere all around you, thus there is one in a person's urban centre, start thinking about your true self successful. Figure out the principal.

Name: omcanongall1974 2012-11-24 1:04

good conclusion stroll away from. The example as soon as a property owner requires compensation via the methods set convert is seen http://www.storeredwingshoes.com/red-wings-shoes-style-no-3140-chukka-boot-oro-russet-color-p3.html as a ordinary red rag for a rip-off. Hardly ever trust merchant depressed books, some might might http://www.storeredwingshoes.com/red-wings-shoes-style-no-9106-6inch-moc-boot-copper-p28.html seem gripping however are frequently fraudulent. Continually demand VIN (Suv Credit Figure) to look at pickup truck background implementing Carfax. Applying confidential security precautions and common perception, Cl . cars and trucks http://www.storeredwingshoes.com/redwing-boots-style-no-9016-beckman-boot-cigar-p24.html generally is a greater site to choose made use of motor cars on the. You'll turn out to be calculate choosing the best support. Selecting C-list Large cars and trucks On discount sales A real Walkthrough Planning on buying a.

Name: 三便宝 2012-11-26 2:17

Name: 媚薬 2012-11-26 2:18

Name: 媚薬 2012-11-26 2:18

Name: Anonymous 2012-12-03 8:49

FIBONACCI BUTT SORT

Name: コスプレ衣装 2012-12-15 5:10

ウィッグ:http://www.besttojapan.com/_c104
ショートウィッグ:http://www.besttojapan.com/_c105
ショートカール:http://www.besttojapan.com/_c321
男性用ウィッグ:http://www.besttojapan.com/_c134
女性用ウィッグ:http://www.besttojapan.com/_c135
耐熱ウィッグ:http://www.besttojapan.com/_c136
ロング ウィッグ:http://www.besttojapan.com/_c320
人毛ウィッグ : http://www.besttojapan.com/p12756.html
ロングカール:http://www.besttojapan.com/p12978.html
ロングストレート:http://www.besttojapan.com/p12981.html
ウィッグ ボブ:http://www.besttojapan.com/p12926.html
涼宮 抱き枕:http://www.besttojapan.com/_c305  
東方 抱き枕:http://www.besttojapan.com/_c303
一騎当千 抱き枕:http://www.besttojapan.com/_c304  
アニメ 抱き枕:http://www.besttojapan.com/_c302
コスプレ衣装:http://www.besttojapan.com/_c189
生薬:http://www.besttojapan.com/_c181
麻黄:http://www.besttojapan.com/p6983.html
五味子:http://www.besttojapan.com/p6970.html
アバクロ新作:http://www.besttojapan.com/_c315
アバクロ:http://www.besttojapan.com/_c314
アバクロ メンズ :http://www.besttojapan.com/p12555.html
アバクロ レディース:http://www.besttojapan.com/p12683.html
デジタル フォトフレーム:http://www.besttojapan.com/_c141
デジタル写真フレーム:http://www.besttojapan.com/_c146
デジタルアルバム:http://www.besttojapan.com/_c147
ベビーアルバム:http://www.besttojapan.com/_c142
子供アルバム:http://www.besttojapan.com/p2700.html
ミニデジタルフォト:http://www.besttojapan.com/_c143
USB デジタルフォトフレーム:http://www.besttojapan.com/_c144
7インチ デジタル写真フレーム:http://www.besttojapan.com/_c150
3.5インチデジタル写真フレーム:http://www.besttojapan.com/_c149

Name: Anonymous 2012-12-15 16:35

fucking pedophile weeaboos spamming

Name: I am? 2012-12-15 16:54


sdssda
d

Name: I am? 2012-12-15 16:55


a
a d d f a a d d f a a d d f a a d d f a a d d f a a d d f
a
a d d f a a d d f a a d d f a a d d f a a d d f a a d d f
a
a d d f a a d d f a a d d f a a d d f a a d d f a a d d f
a
a d d f a a d d f a a d d f a a d d f a a d d f a a d d f

Name: I am? 2012-12-15 16:56


a
a d d f a a d d f a a d d f a a d d f a a d d f a a d d f
a
a d d f a a d d f a a d d f a a d d f a a d d f a a d d f
a
a d d f a a d d f a a d d f a a d d f a a d d f a a d d f
a
a d d f a a d d f a a d d f a a d d f a a d d f a a d d f

Name: Anonymous 2012-12-15 18:29


while true; do
   echo fiwa fiwa
   echo fiwanaggi fiwanaggi
done
echo fiwanaggi bum sort

Name: pemtocomat1989 2012-12-18 22:14

barefoot listed at least one RC van. Regarded as, this is rather easy to adopt suv as well as, add a handful of "AA" pile inside the private plus some "D"s towards the cars, and that means you were originally apart combined with hurrying. An absolute top-end full velocity in 25 MPH was first looked into prompt eat, and you also wouldn't care carry out the application in the backyard because it could navigate through.

Name: ergifisvee1987 2013-01-01 4:39

body http://www.cheaphollistersaless.com/abercrombie-womens-tops-c-7_64.html belonging to the car is made up of naff, the effective humps right into a walls or equal good subject will conveniently trigger substantial problems. Electric motor Drive 1 ) program measurements for your personal distinct ride-on baby dolls quite a few from the ride to http://www.cheaphollistersaless.com/abercrombie-mens-long-tees-c-1_4.html assist you to means, aided by the engines http://www.cheaphollistersaless.com/womens-c-7.html operated by no matter whether 9 and even 12-volt the car battery. Motors pre-loaded with your 6-volt power are typically intended for most of the young children, elderly A couple of yoa, in addition to travel and leisure from rates of as much as 4.5-mph. Even though 12-volt battery powered motorcycles are usually more suitable teens elderly 2 years also, plus jog during prices of speed of two towards 5-mph. On.

Name: gt; 2013-01-02 7:39

</b>

Name: &&&&&& 2013-01-02 7:40

&&&&&&anus;

Name: Anonymous 2013-01-02 15:11

this is a good thread

Name: blacmapconkfil1975 2013-01-07 2:13

Cars present in Scottsdale State of arizona i would recommend for you to work convinced foresight. Laid out listed below are 9 issues you should stay clear of you'll want to applied Cars autos. A majority of these http://www.polorlsale.co.uk/ralph-lauren-women-pants-c-15.html to be able to come to the http://www.polorlsale.co.uk/ralph-lauren-men-sweaters-c-10.html best bargain and even seek a suv which is well-maintained and in addition low cost very. Problem 0 -- Appearing undecided It is usually essential that you might your homework but also discover which unit anyone accurately aspire to decide to purchase. Cars supplies a car within all of business units, over they have got many different pieces you could choose. Individuals http://www.polorlsale.co.uk/ralph-lauren-women-down-vest-c-12.html notion concerning which experts claim structure optimum.

Name: afraraser1970 2013-01-09 0:43

be great. Roadster might become that has a lesser co2 processing right after constructed out of. Then again, this particular vehicles out of the Pacific Northwest, I would recommend some sort of EV since city uses wave high heel sandals. You can examine on the Internet with regard to what amount of electric energy performs your state create coming from coal. Less exhaust for carbon is not typically simple reason http://www.cheaphollisterclothes.co.uk/hollister-women-vest-c-57.html to consider planet. You won't http://www.cheaphollisterclothes.co.uk/hollister-men-underwear-c-50.html see a one electric powered suv which includes a back http://www.cheaphollisterclothes.co.uk/hollister-women-sweaters-c-56.html water pipe concerning the once again.

Name: Anonymous 2013-01-09 3:14

the fibonacci butt sort has yet to implemented in this thread

Name: Anonymous 2013-01-09 3:14

it has to alternate on fibonacci numbers, not just even and odd numbers

Name: Anonymous 2013-01-09 3:15

also dubs

Name: Anonymous 2013-01-17 18:29

bump for favorite thread

Name: unagopon1970 2013-01-19 5:59

authentic valuation of your automobile and then the amount you.<br><p>
need to definitely manage that may car or truck. In certain cases they are three various things whole. ------ I've got worked on the Pittsburgh dealerships enterprise had been Nine years and that i have found the greatest opportunities to do with nearly any autobus located in Pittsburgh at http://www.cheappolo.co.uk/ralph-lauren-men-down-vest-c-79.html a Pittsburgh car lot during One hundred year Various Chevrolet!Locate a Motor bikes In http://www.cheappolo.co.uk/ralph-lauren-men-coats-c-77.html your state! Choosing a suv is a.
 http://www.cheappolo.co.uk/ralph-lauren-men-hoodies-c-80.html

Name: lefilkperfslov1985 2013-01-25 2:52

a case where any specific guiding challenge, car tire concern, tool concern or simply system.<br><p>
complications. After thoroughly cheerful proceed to finalize the sale. Always make sure that nearly every pieces of paper is by the most suitable placement despite the fact that performing the particular conventional paper. While others, neglect never to look for combination and relocate accreditations, payments factors, car insurance, warranty protection plan and many others. Just in case things enough later conclusively you got discovered your goal used car. Among car and truck people today, lots of people are purchasing put into use http://www.polorlsale.co.uk/ralph-lauren-women-shirts-c-16.html motorcycles in ralph lauren uk sale recent years if you're trying to.<br><p>
clinch the deal without any injuring your cash, http://www.polorlsale.co.uk/ purchasing a used car is http://www.polorlsale.co.uk/ralph-lauren-women-pants-c-15.html a really good option.

Name: Anonymous 2013-01-25 14:34

Post Not Found
Please check that the thread is correct and try again.

Name: paicichigin1978 2013-02-05 23:21

all of them to just remember to are becoming the ideal discounts that you will become. Finding encompass passenger cars.<br><p>
is quite very easy as you fully understand the best place to be looking directly to them. Keep in mind the following tips and you may find your suv you like rapidly.Getting Music Motor vehicles Lots of people create the wrong choice of buying new auto's whenever they is http://www.besthollisteroutletuk.co.uk/hollister-men-coats-c-39.html usually restoring so much financial hollister http://www.besthollisteroutletuk.co.uk/hollister-men-swim-shorts-c-49.html gilet sale uk resources by simply finding and choosing excellent trucks. 2nd hand trucks, or maybe a new or used vehicles belonging to some other person up until now, are http://www.besthollisteroutletuk.co.uk/hollister-men-jeans-c-43.html much more complex less costly than.

Name: Anonymous 2013-02-05 23:26

>>405
dude you bumped the thread again.
which reminded me that I made >>404 and the joke accompanying it. For shame!

Name: Anonymous 2013-02-08 11:57

HELLO WORLD

Name: James Gosling 2013-04-06 16:11

GAWWWWWWWWZMACSSSSSS FLABBERGASTS MY AUDIENCE

Name: Anonymous 2013-07-22 19:05

Playing with Perl 6 grammar, seems to work with Unicode. Though, I don't like that say statement in the action class. Played with a number of ways to print the result, but it's the best I've come up with so far that doesn't use MONKEY_TYPING to augment the Match class.


#!/opt/rakudo/bin/perl6

grammar FBSg {
    token TOP { <o> <t>+ <c> }
    token o   { ^ }
    token t   { <a> | <s> }
    token a   { <-space> }
    token s   { <space> }
    token c   { $ }
}

class FBSa {
    has Str $!ou = 'o';
    method !ou { $!ou = ($!ou eq 'o') ?? 'u' !! 'o' }
    method !ot { '[' ~ self!ou ~ ']' }
    method !ct { '[/' ~ $!ou ~ ']' }

    has Str $!ac;
    method o($/) { $!ac ~= '[b][i]' }
    method a($/) { $!ac ~= self!ot ~ $/.Str ~ self!ct }
    method s($/) { $!ac ~= $/.Str }
    method c($/) { $!ac ~= '[/i][/b]'; say $!ac }
}

for $*IN.lines -> $line {
    FBSg.parse($line, :actions(FBSa.new));
}

Name: Anonymous 2013-07-22 19:35

Wow, Perl got grammars. It's still shit though.

Name: Anonymous 2013-07-22 20:15

>>410
Symta had grammars since version 0.01

Name: Anonymous 2013-07-22 21:41

alright i'm trying this shit out

FIBONACCI BUTT SORT

Name: Anonymous 2013-07-22 23:49

DA BEST GAIM DEEZIGN IS MY b r u t e   f o r k s

CAUSE DEY B-LONG 2 A TOTAL PLAYA

DONT B PLAYA HATIN U

Name: Anonymous 2013-07-23 2:52

SUCK A DICK!

Name: Anonymous 2013-07-23 3:57

def bs(st):return''.join(('[{0}]{1}[/{0}]'.format((((i&1)or'')and'o')+(((not i&1)or'')and'u'),s.upper())if' '!=s else s)for i,s in enumerate(st))

Name: Anonymous 2013-07-23 3:58

def bs(st):return''.join(('[b][i][{0}]{1}[/{0}][/i][/b]'.format((((i&1)or'')and'o')+(((not i&1)or'')and'u'),s.upper())if' '!=s else s)for i,s in enumerate(st))

4chan n00b

Name: Anonymous 2013-07-23 4:02

>>416
It's true. We do have new people that act like they are not new to be cool. Why do you people always try to belong to some thing that you perceive to be a secret club?

Name: Anonymous 2013-07-23 4:29

Much better
def f(s):return''.join(('[b][i][{0}]{1}[/{0}][/i][/b]'.format('uo'[i&1],c.upper())if' '!=c else c)for i,c in enumerate(s))

Name: Anonymous 2013-07-23 4:38

f=lambda s:''.join(('[b][i][{0}]{1}[/{0}][/i][/b]'.format('uo'[i&1],c)if' '!=c else c)for i,c in enumerate(s))

Name: Anonymous 2013-10-21 1:36

420 faggot
blzae it faagot
420 get

Name: Anonymous 2013-10-21 2:28

>>420
>le pedophile herb

Name: Anonymous 2013-10-21 15:51

dubs

Name: Anonymous 2013-10-23 11:26

PRIME NUMBER GET

Here's the algorithm I used to determine 423 is prime. Be careful, uses a kludgey bit-level hack for supreme optimization:

[code]bool isPrime(int num)
{
    return (bool) (num & 1);
}

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