Skip to content

Instantly share code, notes, and snippets.

View andersy005's full-sized avatar
:octocat:

Anderson Banihirwe andersy005

:octocat:
View GitHub Profile
@andersy005
andersy005 / test-1-case-b.e11.B20TRC5CNBDRD.ipynb
Created November 29, 2018 01:21
CESM-LENS to Zarr for AWS S3
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@andersy005
andersy005 / dynamic-catalog.ipynb
Last active January 11, 2019 21:26
Intake Plugins
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
"""Aggregattion functions for building xarray datasets from search results.
"""
from functools import reduce
import xarray as xr
import pandas as pd
import dask
from tqdm.autonotebook import tqdm, trange
from datetime import datetime
name: xdev
channels:
- conda-forge
dependencies:
- python=3.7
- pandas
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Keybase proof

I hereby claim:

  • I am andersy005 on github.
  • I am andersy005 (https://keybase.io/andersy005) on keybase.
  • I have a public key whose fingerprint is E5C6 F7CD 2CEA 54F5 4FC5 AD33 4828 EAD0 1AC1 0C71

To claim this, I am signing this object:

@andersy005
andersy005 / Dockerfile
Created March 9, 2019 02:24 — forked from jessfraz/Dockerfile
Scrape best papers site
FROM python:2-alpine
RUN pip install \
beautifulsoup4 \
requests
COPY papers.py /usr/local/bin/
RUN chmod +x /usr/local/bin/papers.py
WORKDIR /root