Skip to content
View iagogv3's full-sized avatar

Block or report iagogv3

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. athlosproject/athlos-project.github.io athlosproject/athlos-project.github.io Public

    HTML 9 3

  2. R-in-LaTeX R-in-LaTeX Public

    Template for printing R code in LaTeX

    TeX

  3. Curso-R Curso-R Public

    HTML

  4. Dockerfile builds image from tensorf... Dockerfile builds image from tensorflow official image to use with Jupyter notebook, adding packages to use in #MIT6.S191 and in #AI4EM_MOOC
    1
    FROM tensorflow/tensorflow:latest-jupyter
    2
    RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
    3
    RUN apt-get -y update
    4
    RUN apt-get install dialog apt-utils -y && apt-get install libgl1-mesa-glx -y && apt-get install libproj-dev -y && apt-get install libgdal-dev -y && apt-get install abcmidi timidity -y && apt-get install graphviz -y && apt-get install python3-gdal -y
    5
    RUN useradd -m -u 1000 diago
  5. Shell script to install LaTeX sty fi... Shell script to install LaTeX sty files from LaTeX packages on CTAN to Debian/Ubuntu
    1
    #!/bin/bash
    2
    
                  
    3
    # Process https://tex.stackexchange.com/a/1138
    4
    
                  
    5
    # set -x
  6. netCDF test with R for a job intervi... netCDF test with R for a job interview (1st part)
    1
    library(curl)
    2
    url = "ftp://.../tas_201711.nc"
    3
    curl_download(url = url, destfile = "/tmp/tas_201711.nc")
    4
    
                  
    5