Skip to content

Instantly share code, notes, and snippets.

View beyoung's full-sized avatar
🥋
Focusing

beyoung beyoung

🥋
Focusing
View GitHub Profile
@beyoung
beyoung / index.html
Created February 9, 2020 05:36 — forked from twelch/index.html
Mapbox GL JS compare window circle magnifying glass
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.css' rel='stylesheet' />
<script src='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-compare/v0.1.0/mapbox-gl-compare.js'></script>
</head>
<body>
@beyoung
beyoung / index.html
Created February 9, 2020 05:36 — forked from twelch/index.html
Mapbox GL JS compare window circle magnifying glass
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.css' rel='stylesheet' />
<script src='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-compare/v0.1.0/mapbox-gl-compare.js'></script>
</head>
<body>
@beyoung
beyoung / factories.py
Created October 31, 2019 13:54 — forked from xuru/factories.py
Factory boy example
# -*- coding: utf-8 -*-
"""Factories to help in tests."""
import random
from datetime import date
import factory
# noinspection PyPackageRequirements
from faker import Faker
from .database import db
from xxx.controllers import User
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@beyoung
beyoung / gist:650e70d4542fd85325124895846216a1
Created July 30, 2019 07:33 — forked from dlau/gist:6774515
load planet.osm admin boundaries into postgres
note: set accordingly
export PATH=$PATH:/users/daryl/dev/gis/osmosis/package/bin
note: is space delimited
export JAVACMD_OPTIONS="-Xmx5G -Djava.io.tmpdir=/Volumes/1TBHD0/tmp"
osmosis \
--read-pbf planet-latest.osm.pbf \
--tf accept-nodes "boundary=administrative" \
--tf reject-relations \
import os
import aiohttp
import json
import base64
import asyncio
import uvloop
START_ID = 1000
END_ID = 1020
FROM python:3.6-alpine
ENV CFLAGS="$CFLAGS -L/lib"
ENV PYTHONUNBUFFERED 0
RUN apk update \
&& apk upgrade \
&& apk add --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
--virtual build-deps g++ gcc python3-dev musl-dev binutils \
postgresql-dev libpq mariadb-dev \
https://www.cnblogs.com/jiukun/p/7481287.html
from snappy import snappy_formats
method = snappy_formats.get_compress_function(snappy_formats.DEFAULT_FORMAT)
out_file = 'out_file.snappy'
with open('in_file.csv', 'r') as fr, open(out_file, 'w') as fw:
method(fr, fw)
@beyoung
beyoung / Dockerfile.geodjango
Created May 17, 2019 07:07
alpine geodjango enviroment
FROM python:3.6-alpine
ENV CFLAGS="$CFLAGS -L/lib"
ENV PYTHONUNBUFFERED 0
RUN apk update && \
apk upgrade && \
apk add --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
binutils \
gcc \
gdal \
geos \