General Discussion

General DiscussionAyy lmao

Ayy lmao in General Discussion
the realm's delight

    mine

    mentally handicapped

      how many comments until a new page is formed?

      robert

        50

        robert

          RIP. Allison first page since 1969

          not arin

            You will never know if the people in your life actually love you, or if they are just doing what they must in order to themselves feel loved

            mentally handicapped

              ty

              robert

                The concept of lateness being evil is wrong in the first place... The police don't mobilize until after an accident happens, and it's standard for heroes to show up late. But would anyone condemn them for being late? So, speaking paradoxically, lateness is justice.

                TripleSteal-

                  even this is displayed now
                  wow

                  robert

                    Shit now everyone going to see i random every game. Feelsbadman private profil activate

                    Edit: nvm only on ranked games. So unranked random is still gucci

                    这回复被编辑过
                    mentally handicapped

                      next they are gonna add the pauses

                      not arin

                        sigh

                        everyone says that discrete maths is easy but i'm insanely struggling with this shit
                        things like "yeah that's one of the easier subjects, you might be able to figure things out even in high school" etc make me feel even worse

                        这回复被编辑过
                        disgusting weebs

                          ^^^^
                          what does the anchor icon mean? "useless feeding shit"?

                          mentally handicapped
                            此评论已被版主移除
                            < blank >

                              Only thing that we can post now is K.

                              disgusting weebs

                                relax arin, a lot of ppl say something isn't hard once they've done it even if it was hard
                                often they disguise it as modesty

                                it's like typing "ez mid"

                                i personally do this a lot though it's a bad/hypocrite thing to do and i should get rid of it

                                *i mean using false modesty a lot not typing ez mid if u type ez mid u should kill urself ty

                                这回复被编辑过
                                < blank >

                                  Did I mention, we sent XBOCT to stoneage
                                  http://www.dotabuff.com/matches/2719222537

                                  robert

                                    XBOCT
                                    4444444444444444444444
                                    #best_carry

                                    TripleSteal-

                                      anchor is the captain in cm

                                      Ame

                                        http://www.dotabuff.com/matches/2757293024

                                        Laned with luna against ck and spec. We was killing the ck. He was 2 right click to death. I was waiting for luna to hit then i get the kill but this shitstsin wants the kill for himself. Then ck runed away and ended up lucent beam him. I get triggerd pretty hard. 1Guy obandend . Mid fed 4 times. I was just messing around. Then 1 min after that ck kill. Luna was getting ganked at side shop and i body blocked him to death and laugh to his raging on mic. Felt good!!!

                                        这回复被编辑过
                                        Ame
                                          此评论已被版主移除
                                          woof

                                            waddup

                                            TripleSteal-

                                              arent u dead

                                              TripleSteal-

                                                also
                                                u cant play on sundays, right?

                                                woof

                                                  y havent played for like 2months lul

                                                  disgusting weebs

                                                    lab 1

                                                    something-something hello world

                                                    lab 5

                                                    program l5;
                                                    const n=3; m=5;
                                                    type t_col=array [1..n] of integer;
                                                    type t_arr=array [1..m] of t_col;
                                                    type t_mark=array[1..m] of boolean;
                                                    var arr1, arr2:t_arr; mark:t_mark; yy:byte;

                                                    procedure col_read(var col:t_col);
                                                    var i:byte;
                                                    begin
                                                    for i:=1 to n do read(col[i]);
                                                    end;

                                                    procedure col_get(var col1, col2:t_col);
                                                    var i:byte;
                                                    begin
                                                    for i:=1 to n do col2[i]:=col1[i];
                                                    end;

                                                    procedure arr_read(var arr:t_arr);
                                                    var i:byte;
                                                    begin
                                                    for i:=1 to m do col_read(arr[i]);
                                                    end;

                                                    procedure swap(var a,b: integer);
                                                    var t:integer;
                                                    begin
                                                    t:=a;
                                                    a:=b;
                                                    b:=t;
                                                    end;

                                                    procedure col_sort(var col:t_col);
                                                    var i,j:byte;
                                                    begin
                                                    for i:=n downto 2 do
                                                    for j:=2 to i do if col[j-1]>col[j] then swap(col[j-1], col[j]);
                                                    end;

                                                    procedure col_write(var col1, col2: t_col);
                                                    var i:byte;
                                                    begin
                                                    for i:=1 to n do col2[i]:=col1[i];
                                                    end;

                                                    procedure arr_build(var arr1, arr2:t_arr);
                                                    var col_temp:t_col; k:byte;
                                                    begin
                                                    for k:=1 to m do
                                                    begin
                                                    col_get(arr1[k], col_temp);
                                                    col_sort(col_temp);
                                                    col_write(col_temp, arr2[k]);
                                                    end;
                                                    end;

                                                    function col_equal(var col1, col2:t_col): boolean;
                                                    var i:byte;
                                                    begin
                                                    col_equal:=true;
                                                    for i:=1 to n do if col1[i]<>col2[i] then col_equal:=false;
                                                    end;

                                                    procedure mark_init(var mark:t_mark);
                                                    var i:byte;
                                                    begin
                                                    for i:=1 to m do mark[i]:=false;
                                                    end;

                                                    procedure arr_check(var arr:t_arr; var mark:t_mark);
                                                    var i, j:byte;
                                                    begin
                                                    for i:=1 to m-1 do if mark[i]=false then
                                                    for j:=i+1 to m do if col_equal(arr[i], arr[j])=true then mark[j]:=true;
                                                    end;

                                                    function mark_count(var mark:t_mark): byte;
                                                    var i, c:byte;
                                                    begin
                                                    c:=0;
                                                    for i:=1 to m do if mark[i]=false then inc(c);
                                                    mark_count:=c;
                                                    end;

                                                    begin
                                                    mark_init(mark);
                                                    arr_read(arr1);
                                                    arr_build(arr1, arr2);
                                                    arr_check(arr2, mark);
                                                    writeln(mark_count(mark));
                                                    readln(yy);
                                                    end.

                                                    that escalated quickly

                                                    < blank >

                                                      This comment was removed by a moderator an hour ago

                                                      D the Superior
                                                        此评论已被版主移除
                                                        D the Superior
                                                          此评论已被版主移除
                                                          D the Superior
                                                            此评论已被版主移除
                                                            Mokujin

                                                              recommend watching Doctor Strange (new film) to everyone, awesome movie all around 🔥

                                                              D the Superior
                                                                此评论已被版主移除
                                                                < blank >

                                                                  Well fuck, I expected something else

                                                                  D
                                                                  D

                                                                    D
                                                                    D

                                                                      < blank >

                                                                        He had the need to tell me something after my ES rekt him

                                                                        Fuyumi Ai Best Waifu

                                                                          The hero we dont need just saved this thread from the depths of hell

                                                                          I am 322 ! I am NOT DDZ !

                                                                            delete this thread

                                                                            D the Superior
                                                                              此评论已被版主移除
                                                                              Mekarazium
                                                                                此评论已被版主移除
                                                                                D
                                                                                D

                                                                                  Oooooooooooooooooooooooooooooooooooooooooooohhhhh

                                                                                  TripleSteal-

                                                                                    10/10 pillow

                                                                                    D the Superior
                                                                                      此评论已被版主移除
                                                                                      Mekarazium
                                                                                        此评论已被版主移除
                                                                                        Mekarazium
                                                                                          此评论已被版主移除
                                                                                          not arin

                                                                                            hey how the fuck does pike work with od's arcane orb or some other hero with toogleable UAM like drow's frost arrows

                                                                                            no matter what i do it doesnt work, i just use it on someone and then just walk back the distance instead of attacking from any distance

                                                                                            这回复被编辑过
                                                                                            the realm's delight

                                                                                              scored

                                                                                              me, government hooker

                                                                                                ye son

                                                                                                the realm's delight

                                                                                                  ye son

                                                                                                  the realm's delight

                                                                                                    ye son

                                                                                                    me, government hooker

                                                                                                      ye son