Testing Code Embed

2015-07-29 12:00:00

Testing embedding code

Python


def myfunction(name)
    print "Hello %s" %(name)

Matlab


fprintf('%s\n','Eww')

CSS


    .list-group-item {
        border: none;
        border-radius: 0px;
        background-color:black;
        color: white;
    }
    .list-group-item:hover{
        background-color: #666;
    }
    .nav-item:hover {
        background-color: #666;
    }

Harrr Docker!


FROM python:2.7
ENV PYTHONUNBUFFERED 1
RUN apt-get update && apt-get install -y \
    libopenblas-dev \
    gfortran \
    libhdf5-dev \
      default-jre

RUN pip install numpy \
    cython
RUN pip install -v scipy
RUN pip install scikit-learn pandas h5py matplotlib

R

cat("one","two","three","four",sep="|")