Skip to content

Instantly share code, notes, and snippets.

View elkozmon's full-sized avatar
🧀

Luboš Kozmon elkozmon

🧀
View GitHub Profile
@elkozmon
elkozmon / metaballs.glsl
Last active October 20, 2017 07:47 — forked from julien/metaballs.glsl
simple metaball shader
precision highp float;
uniform float time;
uniform vec2 mouse;
uniform vec2 resolution;
float ball(vec2 p, float fx, float fy, float ax, float ay) {
vec2 r = vec2(p.x + sin(time * fx) * ax, p.y + cos(time * fy) * ay);
return 0.05 / length(r);
}
@elkozmon
elkozmon / zoonavigator.docker-compose.yml
Last active July 18, 2022 01:18
Docker compose file for ZooNavigator with Zookeeper
version: '2.1'
services:
web:
image: elkozmon/zoonavigator-web:latest
container_name: zoonavigator-web
ports:
- "8000:8000"
environment:
API_HOST: "api"