Skip to content

Instantly share code, notes, and snippets.

View emattiza's full-sized avatar

Evan Mattiza emattiza

View GitHub Profile
@emattiza
emattiza / gulpfile.js
Created January 18, 2017 13:33 — forked from soin08/gulpfile.js
Gulpfile.js to use with Django projects. Based on gulpfile.js from Google Web Starter Kit.
//Based on gulpfile.js from Google Web Starter Kit.
//https://github.com/google/web-starter-kit
'use strict';
// Include Gulp & Tools We'll Use
var gulp = require('gulp');
var $ = require('gulp-load-plugins')();
var del = require('del');
var runSequence = require('run-sequence');
var browserSync = require('browser-sync');

Keybase proof

I hereby claim:

  • I am emattiza on github.
  • I am emattiza (https://keybase.io/emattiza) on keybase.
  • I have a public key ASB8UiOjLOEnAkrhIy5Yiu-_J9_IOUeyCWRVndMK4QQtlwo

To claim this, I am signing this object:

@emattiza
emattiza / .envrc
Last active November 23, 2022 14:46
use flake
@emattiza
emattiza / Dockerfile
Last active June 6, 2023 21:08
simple gdal docker python build
FROM python:3.10.10-slim as base
ENV PYTHONFAULTHANDLER=1 \
PYTHONHASHSEED=random \
PYTHONUNBUFFERED=1
COPY ./install-packages /usr/local/bin/install-packages
RUN install-packages build-essential libproj-dev gdal-bin libgdal-dev