This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:jessie | |
ENV USER=boatswain USER_ID=1000 USER_GID=1000 | |
# now creating user | |
RUN groupadd --gid "${USER_GID}" "${USER}" && \ | |
useradd \ | |
--uid ${USER_ID} \ | |
--gid ${USER_GID} \ | |
--create-home \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#-*- coding:utf-8 -*- | |
__author__ = 'bluele' | |
__version__ = '0.10' | |
__license__ = 'MIT' | |
__doc__ = """ | |
# simple running | |
$ hserve |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On Jun 11, 2:01 pm, Robert Kern <robert.k... at gmail.com> wrote: | |
> On 2009-06-11 14:56, Captain___nemo wrote: | |
> > Please advice me very simple implementation of voronoi diagram (given | |
> > coordinates). Please advice me simple python code preferably without- | |
> > hash, multi-threading, Delaunay Traingulation, | |
> | |
> You can't really do the Voronoi diagram without Delaunay Triangulation. They are | |
> two ways of looking at the same thing. | |