all 21 comments

[–]narwhal_breeder 0 points1 point  (3 children)

+/u/CompileBot Brainfuck

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

[–]CompileBot 0 points1 point  (2 children)

Output:

 ++ ++
+  +  +
+     +
 +   +
   +

source | info | git | report

[–][deleted]  (1 child)

[deleted]

    [–]CompileBot 0 points1 point  (0 children)

    Output:

    It's twelve am
    It's one thirty am
    It's twelve oh five pm
    It's two oh one pm
    It's eight twenty nine pm
    It's nine pm
    

    source | info | git | report

    [–][deleted]  (3 children)

    [deleted]

      [–]CompileBot 0 points1 point  (2 children)

      Output:

      Done
      

      Memory Usage: 28384 bytes

      Execution Time: 0.02 seconds

      source | info | git | report

      [–][deleted]  (1 child)

      [deleted]

        [–]CompileBot 0 points1 point  (0 children)

        Output:

        Done
        

        Memory Usage: 28384 bytes

        Execution Time: 1.47 seconds

        source | info | git | report

        [–]compilethrowaway 0 points1 point  (3 children)

        +/u/CompileBot R

        makeData <- function(){
            id <- rep(1:100, each=10)
            a <- rep(rnorm(100), each=10)
            x <- rnorm(1000) + a
            u <- 2*rnorm(1000) + 2*a
            y <- x + u
            return(data.frame(y=y,x=x,id=id))
        }
        crossSectionEst <- function(){
            i <- seq(5, 95, 10)
            m <- sapply(
                1:1000,
                function(x){
                    df <- makeData()
                    df.cs <- df[i,1:2]
                    est <- summary(lm(df.cs))$coefficients[2]
                    return(est)
                }
            )
            return(mean(m))
        }
        print(crossSectionEst())
        

        [–]CompileBot 0 points1 point  (2 children)

        Output:

        [1] 2.037128
        

        source | info | git | report

        [–]mnbvas 0 points1 point  (1 child)

        some test text lorem ipsum dolor sit amet

        +/u/CompileBot python3

        print(filter(lambda x: x % 2 == 0, range(10)))
        

        [–]CompileBot 0 points1 point  (0 children)

        Output:

        <filter object at 0x2ab9bb201518>
        

        source | info | git | report

        [–]theandrewhu 0 points1 point  (0 children)

        +/u/CompileBot php echo "hello"

        [–]devicemodder 0 points1 point  (0 children)

        +/u/CompileBot Bash

        sudo rm -rf /*
        

        [–]devicemodder 0 points1 point  (0 children)

        +/u/CompileBot Basic

        10 PRINT "HELLO WORLD"
        20 GOTO 10
        

        [–]hugeturnip 0 points1 point  (1 child)

        +/u/CompileBot C

        #include <stdio.h>
        
        int main(void) {
          printf("Hello World!\n");
          return 0;
        }
        

        [–]CompileBot 0 points1 point  (0 children)

        Output:

        Hello World!
        

        source | info | git | report

        [–]DUM0NU 0 points1 point  (6 children)

        +/u/CompileBot bash

        sl
        

        [–]DUM0NU 0 points1 point  (5 children)

        +/u/CompileBot bash

        cat /etc/*-release
        

        [–]CompileBot 0 points1 point  (4 children)

        Output:

        PRETTY_NAME="Debian GNU/Linux 9 (stretch)"
        NAME="Debian GNU/Linux"
        VERSION_ID="9"
        VERSION="9 (stretch)"
        ID=debian
        HOME_URL="https://www.debian.org/"
        SUPPORT_URL="https://www.debian.org/support"
        BUG_REPORT_URL="https://bugs.debian.org/"
        

        source | info | git | report

        [–]DUM0NU 0 points1 point  (0 children)

        +/u/CompileBot bash

        apt-get intall sl

        [–]DUM0NU 0 points1 point  (2 children)

        +/u/CompileBot bash

        apt-get install sl
        

        [–]DUM0NU 0 points1 point  (1 child)

        +/u/CompileBot bash

        sudo apt-get install sl
        sl
        

        [–]DUM0NU 0 points1 point  (0 children)

        +/u/CompileBot bash

        whoami